├── CMakeLists.txt ├── D-KHT.pro ├── LICENSE ├── README.md ├── accum_ball_cell_t.h ├── accum_cell_t.h ├── accumulatorball_t.cpp ├── accumulatorball_t.h ├── bin_t.h ├── configuration └── workspace_location.h.in ├── hough.cpp ├── hough.h ├── input ├── copy_room_4161.png └── cube.png ├── kernel_t.h ├── libs ├── dlib │ ├── dlib │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── algs.h │ │ ├── all │ │ │ └── source.cpp │ │ ├── all_console.cpp │ │ ├── all_gui.cpp │ │ ├── any.h │ │ ├── any │ │ │ ├── any.h │ │ │ ├── any_abstract.h │ │ │ ├── any_decision_function.h │ │ │ ├── any_decision_function_abstract.h │ │ │ ├── any_function.h │ │ │ ├── any_function_abstract.h │ │ │ ├── any_function_impl.h │ │ │ ├── any_function_impl2.h │ │ │ ├── any_trainer.h │ │ │ └── any_trainer_abstract.h │ │ ├── array.h │ │ ├── array │ │ │ ├── array_kernel.h │ │ │ ├── array_kernel_abstract.h │ │ │ ├── array_tools.h │ │ │ └── array_tools_abstract.h │ │ ├── array2d.h │ │ ├── array2d │ │ │ ├── array2d_generic_image.h │ │ │ ├── array2d_kernel.h │ │ │ ├── array2d_kernel_abstract.h │ │ │ └── serialize_pixel_overloads.h │ │ ├── assert.h │ │ ├── base64.h │ │ ├── base64 │ │ │ ├── base64_kernel_1.cpp │ │ │ ├── base64_kernel_1.h │ │ │ └── base64_kernel_abstract.h │ │ ├── bayes_utils.h │ │ ├── bayes_utils │ │ │ ├── bayes_utils.h │ │ │ └── bayes_utils_abstract.h │ │ ├── bigint.h │ │ ├── bigint │ │ │ ├── bigint_kernel_1.cpp │ │ │ ├── bigint_kernel_1.h │ │ │ ├── bigint_kernel_2.cpp │ │ │ ├── bigint_kernel_2.h │ │ │ ├── bigint_kernel_abstract.h │ │ │ └── bigint_kernel_c.h │ │ ├── binary_search_tree.h │ │ ├── binary_search_tree │ │ │ ├── binary_search_tree_kernel_1.h │ │ │ ├── binary_search_tree_kernel_2.h │ │ │ ├── binary_search_tree_kernel_abstract.h │ │ │ └── binary_search_tree_kernel_c.h │ │ ├── bit_stream.h │ │ ├── bit_stream │ │ │ ├── bit_stream_kernel_1.cpp │ │ │ ├── bit_stream_kernel_1.h │ │ │ ├── bit_stream_kernel_abstract.h │ │ │ ├── bit_stream_kernel_c.h │ │ │ ├── bit_stream_multi_1.h │ │ │ ├── bit_stream_multi_abstract.h │ │ │ └── bit_stream_multi_c.h │ │ ├── bits │ │ │ └── c++config.h │ │ ├── bound_function_pointer.h │ │ ├── bound_function_pointer │ │ │ ├── bound_function_pointer_kernel_1.h │ │ │ └── bound_function_pointer_kernel_abstract.h │ │ ├── bridge.h │ │ ├── bridge │ │ │ ├── bridge.h │ │ │ └── bridge_abstract.h │ │ ├── bsp.h │ │ ├── bsp │ │ │ ├── bsp.cpp │ │ │ ├── bsp.h │ │ │ └── bsp_abstract.h │ │ ├── byte_orderer.h │ │ ├── byte_orderer │ │ │ ├── byte_orderer_kernel_1.h │ │ │ └── byte_orderer_kernel_abstract.h │ │ ├── cassert │ │ ├── clustering.h │ │ ├── clustering │ │ │ ├── bottom_up_cluster.h │ │ │ ├── bottom_up_cluster_abstract.h │ │ │ ├── chinese_whispers.h │ │ │ ├── chinese_whispers_abstract.h │ │ │ ├── modularity_clustering.h │ │ │ ├── modularity_clustering_abstract.h │ │ │ ├── spectral_cluster.h │ │ │ └── spectral_cluster_abstract.h │ │ ├── cmake │ │ ├── cmake_utils │ │ │ ├── add_global_compiler_switch.cmake │ │ │ ├── add_python_module │ │ │ ├── check_if_neon_available.cmake │ │ │ ├── cmake_find_blas.txt │ │ │ ├── dlib.pc.in │ │ │ ├── dlibConfig.cmake.in │ │ │ ├── release_build_by_default │ │ │ ├── tell_visual_studio_to_use_static_runtime.cmake │ │ │ ├── test_for_cpp11 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cpp11_test.cpp │ │ │ ├── test_for_cuda │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cuda_test.cu │ │ │ ├── test_for_cudnn │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── find_cudnn.txt │ │ │ ├── test_for_neon │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── neon_test.cpp │ │ │ └── use_cpp_11.cmake │ │ ├── cmd_line_parser.h │ │ ├── cmd_line_parser │ │ │ ├── cmd_line_parser_check_1.h │ │ │ ├── cmd_line_parser_check_c.h │ │ │ ├── cmd_line_parser_kernel_1.h │ │ │ ├── cmd_line_parser_kernel_abstract.h │ │ │ ├── cmd_line_parser_kernel_c.h │ │ │ ├── cmd_line_parser_print_1.h │ │ │ ├── get_option.h │ │ │ └── get_option_abstract.h │ │ ├── compress_stream.h │ │ ├── compress_stream │ │ │ ├── compress_stream_kernel_1.h │ │ │ ├── compress_stream_kernel_2.h │ │ │ ├── compress_stream_kernel_3.h │ │ │ └── compress_stream_kernel_abstract.h │ │ ├── conditioning_class.h │ │ ├── conditioning_class │ │ │ ├── conditioning_class_kernel_1.h │ │ │ ├── conditioning_class_kernel_2.h │ │ │ ├── conditioning_class_kernel_3.h │ │ │ ├── conditioning_class_kernel_4.h │ │ │ ├── conditioning_class_kernel_abstract.h │ │ │ └── conditioning_class_kernel_c.h │ │ ├── config.h │ │ ├── config.h.in │ │ ├── config_reader.h │ │ ├── config_reader │ │ │ ├── config_reader_kernel_1.h │ │ │ ├── config_reader_kernel_abstract.h │ │ │ ├── config_reader_thread_safe_1.h │ │ │ └── config_reader_thread_safe_abstract.h │ │ ├── console_progress_indicator.h │ │ ├── control.h │ │ ├── control │ │ │ ├── approximate_linear_models.h │ │ │ ├── approximate_linear_models_abstract.h │ │ │ ├── lspi.h │ │ │ ├── lspi_abstract.h │ │ │ ├── mpc.h │ │ │ └── mpc_abstract.h │ │ ├── cpp_pretty_printer.h │ │ ├── cpp_pretty_printer │ │ │ ├── cpp_pretty_printer_kernel_1.h │ │ │ ├── cpp_pretty_printer_kernel_2.h │ │ │ └── cpp_pretty_printer_kernel_abstract.h │ │ ├── cpp_tokenizer.h │ │ ├── cpp_tokenizer │ │ │ ├── cpp_tokenizer_kernel_1.h │ │ │ ├── cpp_tokenizer_kernel_abstract.h │ │ │ └── cpp_tokenizer_kernel_c.h │ │ ├── crc32.h │ │ ├── crc32 │ │ │ ├── crc32_kernel_1.h │ │ │ └── crc32_kernel_abstract.h │ │ ├── cstring │ │ ├── data_io.h │ │ ├── data_io │ │ │ ├── image_dataset_metadata.cpp │ │ │ ├── image_dataset_metadata.h │ │ │ ├── libsvm_io.h │ │ │ ├── libsvm_io_abstract.h │ │ │ ├── load_image_dataset.h │ │ │ ├── load_image_dataset_abstract.h │ │ │ ├── mnist.cpp │ │ │ ├── mnist.h │ │ │ └── mnist_abstract.h │ │ ├── dir_nav.h │ │ ├── dir_nav │ │ │ ├── dir_nav_extensions.cpp │ │ │ ├── dir_nav_extensions.h │ │ │ ├── dir_nav_extensions_abstract.h │ │ │ ├── dir_nav_kernel_1.cpp │ │ │ ├── dir_nav_kernel_1.h │ │ │ ├── dir_nav_kernel_2.cpp │ │ │ ├── dir_nav_kernel_2.h │ │ │ ├── dir_nav_kernel_abstract.h │ │ │ ├── posix.h │ │ │ └── windows.h │ │ ├── directed_graph.h │ │ ├── directed_graph │ │ │ ├── directed_graph_kernel_1.h │ │ │ └── directed_graph_kernel_abstract.h │ │ ├── disjoint_subsets.h │ │ ├── disjoint_subsets │ │ │ ├── disjoint_subsets.h │ │ │ └── disjoint_subsets_abstract.h │ │ ├── dlib_basic_cpp_build_tutorial.txt │ │ ├── dlib_include_path_tutorial.txt │ │ ├── dnn.h │ │ ├── dnn │ │ │ ├── core.h │ │ │ ├── core_abstract.h │ │ │ ├── cpu_dlib.cpp │ │ │ ├── cpu_dlib.h │ │ │ ├── cublas_dlibapi.cpp │ │ │ ├── cublas_dlibapi.h │ │ │ ├── cuda_data_ptr.cpp │ │ │ ├── cuda_data_ptr.h │ │ │ ├── cuda_dlib.cu │ │ │ ├── cuda_dlib.h │ │ │ ├── cuda_errors.h │ │ │ ├── cuda_utils.h │ │ │ ├── cudnn_dlibapi.cpp │ │ │ ├── cudnn_dlibapi.h │ │ │ ├── curand_dlibapi.cpp │ │ │ ├── curand_dlibapi.h │ │ │ ├── cusolver_dlibapi.cu │ │ │ ├── cusolver_dlibapi.h │ │ │ ├── gpu_data.cpp │ │ │ ├── gpu_data.h │ │ │ ├── gpu_data_abstract.h │ │ │ ├── input.h │ │ │ ├── input_abstract.h │ │ │ ├── layers.h │ │ │ ├── layers_abstract.h │ │ │ ├── loss.h │ │ │ ├── loss_abstract.h │ │ │ ├── solvers.h │ │ │ ├── solvers_abstract.h │ │ │ ├── tensor.h │ │ │ ├── tensor_abstract.h │ │ │ ├── tensor_tools.cpp │ │ │ ├── tensor_tools.h │ │ │ ├── trainer.h │ │ │ ├── trainer_abstract.h │ │ │ ├── utilities.h │ │ │ ├── utilities_abstract.h │ │ │ └── validation.h │ │ ├── enable_if.h │ │ ├── entropy_decoder.h │ │ ├── entropy_decoder │ │ │ ├── entropy_decoder_kernel_1.cpp │ │ │ ├── entropy_decoder_kernel_1.h │ │ │ ├── entropy_decoder_kernel_2.cpp │ │ │ ├── entropy_decoder_kernel_2.h │ │ │ ├── entropy_decoder_kernel_abstract.h │ │ │ └── entropy_decoder_kernel_c.h │ │ ├── entropy_decoder_model.h │ │ ├── entropy_decoder_model │ │ │ ├── entropy_decoder_model_kernel_1.h │ │ │ ├── entropy_decoder_model_kernel_2.h │ │ │ ├── entropy_decoder_model_kernel_3.h │ │ │ ├── entropy_decoder_model_kernel_4.h │ │ │ ├── entropy_decoder_model_kernel_5.h │ │ │ ├── entropy_decoder_model_kernel_6.h │ │ │ └── entropy_decoder_model_kernel_abstract.h │ │ ├── entropy_encoder.h │ │ ├── entropy_encoder │ │ │ ├── entropy_encoder_kernel_1.cpp │ │ │ ├── entropy_encoder_kernel_1.h │ │ │ ├── entropy_encoder_kernel_2.cpp │ │ │ ├── entropy_encoder_kernel_2.h │ │ │ ├── entropy_encoder_kernel_abstract.h │ │ │ └── entropy_encoder_kernel_c.h │ │ ├── entropy_encoder_model.h │ │ ├── entropy_encoder_model │ │ │ ├── entropy_encoder_model_kernel_1.h │ │ │ ├── entropy_encoder_model_kernel_2.h │ │ │ ├── entropy_encoder_model_kernel_3.h │ │ │ ├── entropy_encoder_model_kernel_4.h │ │ │ ├── entropy_encoder_model_kernel_5.h │ │ │ ├── entropy_encoder_model_kernel_6.h │ │ │ ├── entropy_encoder_model_kernel_abstract.h │ │ │ └── entropy_encoder_model_kernel_c.h │ │ ├── error.h │ │ ├── external │ │ │ ├── cblas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README │ │ │ │ ├── cblas.h │ │ │ │ ├── cblas_caxpy.c │ │ │ │ ├── cblas_ccopy.c │ │ │ │ ├── cblas_cdotc_sub.c │ │ │ │ ├── cblas_cdotu_sub.c │ │ │ │ ├── cblas_cgbmv.c │ │ │ │ ├── cblas_cgemm.c │ │ │ │ ├── cblas_cgemv.c │ │ │ │ ├── cblas_cgerc.c │ │ │ │ ├── cblas_cgeru.c │ │ │ │ ├── cblas_chbmv.c │ │ │ │ ├── cblas_chemm.c │ │ │ │ ├── cblas_chemv.c │ │ │ │ ├── cblas_cher.c │ │ │ │ ├── cblas_cher2.c │ │ │ │ ├── cblas_cher2k.c │ │ │ │ ├── cblas_cherk.c │ │ │ │ ├── cblas_chpmv.c │ │ │ │ ├── cblas_chpr.c │ │ │ │ ├── cblas_chpr2.c │ │ │ │ ├── cblas_cscal.c │ │ │ │ ├── cblas_csscal.c │ │ │ │ ├── cblas_cswap.c │ │ │ │ ├── cblas_csymm.c │ │ │ │ ├── cblas_csyr2k.c │ │ │ │ ├── cblas_csyrk.c │ │ │ │ ├── cblas_ctbmv.c │ │ │ │ ├── cblas_ctbsv.c │ │ │ │ ├── cblas_ctpmv.c │ │ │ │ ├── cblas_ctpsv.c │ │ │ │ ├── cblas_ctrmm.c │ │ │ │ ├── cblas_ctrmv.c │ │ │ │ ├── cblas_ctrsm.c │ │ │ │ ├── cblas_ctrsv.c │ │ │ │ ├── cblas_dasum.c │ │ │ │ ├── cblas_daxpy.c │ │ │ │ ├── cblas_dcopy.c │ │ │ │ ├── cblas_ddot.c │ │ │ │ ├── cblas_dgbmv.c │ │ │ │ ├── cblas_dgemm.c │ │ │ │ ├── cblas_dgemv.c │ │ │ │ ├── cblas_dger.c │ │ │ │ ├── cblas_dnrm2.c │ │ │ │ ├── cblas_drot.c │ │ │ │ ├── cblas_drotg.c │ │ │ │ ├── cblas_drotm.c │ │ │ │ ├── cblas_drotmg.c │ │ │ │ ├── cblas_dsbmv.c │ │ │ │ ├── cblas_dscal.c │ │ │ │ ├── cblas_dsdot.c │ │ │ │ ├── cblas_dspmv.c │ │ │ │ ├── cblas_dspr.c │ │ │ │ ├── cblas_dspr2.c │ │ │ │ ├── cblas_dswap.c │ │ │ │ ├── cblas_dsymm.c │ │ │ │ ├── cblas_dsymv.c │ │ │ │ ├── cblas_dsyr.c │ │ │ │ ├── cblas_dsyr2.c │ │ │ │ ├── cblas_dsyr2k.c │ │ │ │ ├── cblas_dsyrk.c │ │ │ │ ├── cblas_dtbmv.c │ │ │ │ ├── cblas_dtbsv.c │ │ │ │ ├── cblas_dtpmv.c │ │ │ │ ├── cblas_dtpsv.c │ │ │ │ ├── cblas_dtrmm.c │ │ │ │ ├── cblas_dtrmv.c │ │ │ │ ├── cblas_dtrsm.c │ │ │ │ ├── cblas_dtrsv.c │ │ │ │ ├── cblas_dzasum.c │ │ │ │ ├── cblas_dznrm2.c │ │ │ │ ├── cblas_f77.h │ │ │ │ ├── cblas_icamax.c │ │ │ │ ├── cblas_idamax.c │ │ │ │ ├── cblas_isamax.c │ │ │ │ ├── cblas_izamax.c │ │ │ │ ├── cblas_sasum.c │ │ │ │ ├── cblas_saxpy.c │ │ │ │ ├── cblas_scasum.c │ │ │ │ ├── cblas_scnrm2.c │ │ │ │ ├── cblas_scopy.c │ │ │ │ ├── cblas_sdot.c │ │ │ │ ├── cblas_sdsdot.c │ │ │ │ ├── cblas_sgbmv.c │ │ │ │ ├── cblas_sgemm.c │ │ │ │ ├── cblas_sgemv.c │ │ │ │ ├── cblas_sger.c │ │ │ │ ├── cblas_snrm2.c │ │ │ │ ├── cblas_srot.c │ │ │ │ ├── cblas_srotg.c │ │ │ │ ├── cblas_srotm.c │ │ │ │ ├── cblas_srotmg.c │ │ │ │ ├── cblas_ssbmv.c │ │ │ │ ├── cblas_sscal.c │ │ │ │ ├── cblas_sspmv.c │ │ │ │ ├── cblas_sspr.c │ │ │ │ ├── cblas_sspr2.c │ │ │ │ ├── cblas_sswap.c │ │ │ │ ├── cblas_ssymm.c │ │ │ │ ├── cblas_ssymv.c │ │ │ │ ├── cblas_ssyr.c │ │ │ │ ├── cblas_ssyr2.c │ │ │ │ ├── cblas_ssyr2k.c │ │ │ │ ├── cblas_ssyrk.c │ │ │ │ ├── cblas_stbmv.c │ │ │ │ ├── cblas_stbsv.c │ │ │ │ ├── cblas_stpmv.c │ │ │ │ ├── cblas_stpsv.c │ │ │ │ ├── cblas_strmm.c │ │ │ │ ├── cblas_strmv.c │ │ │ │ ├── cblas_strsm.c │ │ │ │ ├── cblas_strsv.c │ │ │ │ ├── cblas_xerbla.c │ │ │ │ ├── cblas_zaxpy.c │ │ │ │ ├── cblas_zcopy.c │ │ │ │ ├── cblas_zdotc_sub.c │ │ │ │ ├── cblas_zdotu_sub.c │ │ │ │ ├── cblas_zdscal.c │ │ │ │ ├── cblas_zgbmv.c │ │ │ │ ├── cblas_zgemm.c │ │ │ │ ├── cblas_zgemv.c │ │ │ │ ├── cblas_zgerc.c │ │ │ │ ├── cblas_zgeru.c │ │ │ │ ├── cblas_zhbmv.c │ │ │ │ ├── cblas_zhemm.c │ │ │ │ ├── cblas_zhemv.c │ │ │ │ ├── cblas_zher.c │ │ │ │ ├── cblas_zher2.c │ │ │ │ ├── cblas_zher2k.c │ │ │ │ ├── cblas_zherk.c │ │ │ │ ├── cblas_zhpmv.c │ │ │ │ ├── cblas_zhpr.c │ │ │ │ ├── cblas_zhpr2.c │ │ │ │ ├── cblas_zscal.c │ │ │ │ ├── cblas_zswap.c │ │ │ │ ├── cblas_zsymm.c │ │ │ │ ├── cblas_zsyr2k.c │ │ │ │ ├── cblas_zsyrk.c │ │ │ │ ├── cblas_ztbmv.c │ │ │ │ ├── cblas_ztbsv.c │ │ │ │ ├── cblas_ztpmv.c │ │ │ │ ├── cblas_ztpsv.c │ │ │ │ ├── cblas_ztrmm.c │ │ │ │ ├── cblas_ztrmv.c │ │ │ │ ├── cblas_ztrsm.c │ │ │ │ ├── cblas_ztrsv.c │ │ │ │ ├── cdotcsub.f │ │ │ │ ├── cdotusub.f │ │ │ │ ├── dasumsub.f │ │ │ │ ├── ddotsub.f │ │ │ │ ├── dnrm2sub.f │ │ │ │ ├── dsdotsub.f │ │ │ │ ├── dzasumsub.f │ │ │ │ ├── dznrm2sub.f │ │ │ │ ├── icamaxsub.f │ │ │ │ ├── idamaxsub.f │ │ │ │ ├── isamaxsub.f │ │ │ │ ├── izamaxsub.f │ │ │ │ ├── sasumsub.f │ │ │ │ ├── scasumsub.f │ │ │ │ ├── scnrm2sub.f │ │ │ │ ├── sdotsub.f │ │ │ │ ├── sdsdotsub.f │ │ │ │ ├── snrm2sub.f │ │ │ │ ├── zdotcsub.f │ │ │ │ └── zdotusub.f │ │ │ ├── libjpeg │ │ │ │ ├── README │ │ │ │ ├── jcapimin.cpp │ │ │ │ ├── jcapistd.cpp │ │ │ │ ├── jccoefct.cpp │ │ │ │ ├── jccolor.cpp │ │ │ │ ├── jcdctmgr.cpp │ │ │ │ ├── jchuff.cpp │ │ │ │ ├── jchuff.h │ │ │ │ ├── jcinit.cpp │ │ │ │ ├── jcmainct.cpp │ │ │ │ ├── jcmarker.cpp │ │ │ │ ├── jcmaster.cpp │ │ │ │ ├── jcomapi.cpp │ │ │ │ ├── jconfig.h │ │ │ │ ├── jcparam.cpp │ │ │ │ ├── jcphuff.cpp │ │ │ │ ├── jcprepct.cpp │ │ │ │ ├── jcsample.cpp │ │ │ │ ├── jdapimin.cpp │ │ │ │ ├── jdapistd.cpp │ │ │ │ ├── jdatadst.cpp │ │ │ │ ├── jdatasrc.cpp │ │ │ │ ├── jdcoefct.cpp │ │ │ │ ├── jdcolor.cpp │ │ │ │ ├── jdct.h │ │ │ │ ├── jddctmgr.cpp │ │ │ │ ├── jdhuff.cpp │ │ │ │ ├── jdhuff.h │ │ │ │ ├── jdinput.cpp │ │ │ │ ├── jdmainct.cpp │ │ │ │ ├── jdmarker.cpp │ │ │ │ ├── jdmaster.cpp │ │ │ │ ├── jdmerge.cpp │ │ │ │ ├── jdphuff.cpp │ │ │ │ ├── jdpostct.cpp │ │ │ │ ├── jdsample.cpp │ │ │ │ ├── jerror.cpp │ │ │ │ ├── jerror.h │ │ │ │ ├── jfdctflt.cpp │ │ │ │ ├── jfdctfst.cpp │ │ │ │ ├── jfdctint.cpp │ │ │ │ ├── jidctflt.cpp │ │ │ │ ├── jidctfst.cpp │ │ │ │ ├── jidctint.cpp │ │ │ │ ├── jidctred.cpp │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmemmgr.cpp │ │ │ │ ├── jmemnobs.cpp │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpeglib.h │ │ │ │ ├── jquant1.cpp │ │ │ │ ├── jquant2.cpp │ │ │ │ ├── jutils.cpp │ │ │ │ └── jversion.h │ │ │ ├── libpng │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── arm │ │ │ │ │ ├── arm_init.c │ │ │ │ │ ├── filter_neon.S │ │ │ │ │ └── filter_neon_intrinsics.c │ │ │ │ ├── png.c │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.h │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngpriv.h │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngstruct.h │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ └── pngwutil.c │ │ │ └── zlib │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ ├── filtering.h │ │ ├── filtering │ │ │ ├── kalman_filter.h │ │ │ ├── kalman_filter_abstract.h │ │ │ ├── rls_filter.h │ │ │ └── rls_filter_abstract.h │ │ ├── float_details.h │ │ ├── fstream │ │ ├── general_hash │ │ │ ├── count_bits.h │ │ │ ├── count_bits_abstract.h │ │ │ ├── general_hash.h │ │ │ ├── hash.h │ │ │ ├── hash_abstract.h │ │ │ ├── murmur_hash3.h │ │ │ ├── murmur_hash3_abstract.h │ │ │ ├── random_hashing.h │ │ │ └── random_hashing_abstract.h │ │ ├── geometry.h │ │ ├── geometry │ │ │ ├── border_enumerator.h │ │ │ ├── border_enumerator_abstract.h │ │ │ ├── drectangle.h │ │ │ ├── drectangle_abstract.h │ │ │ ├── point_transforms.h │ │ │ ├── point_transforms_abstract.h │ │ │ ├── rectangle.h │ │ │ ├── rectangle_abstract.h │ │ │ ├── vector.h │ │ │ └── vector_abstract.h │ │ ├── graph.h │ │ ├── graph │ │ │ ├── graph_kernel_1.h │ │ │ └── graph_kernel_abstract.h │ │ ├── graph_cuts.h │ │ ├── graph_cuts │ │ │ ├── find_max_factor_graph_potts.h │ │ │ ├── find_max_factor_graph_potts_abstract.h │ │ │ ├── general_flow_graph.h │ │ │ ├── general_potts_problem.h │ │ │ ├── graph_labeler.h │ │ │ ├── graph_labeler_abstract.h │ │ │ ├── min_cut.h │ │ │ └── min_cut_abstract.h │ │ ├── graph_utils.h │ │ ├── graph_utils │ │ │ ├── edge_list_graphs.h │ │ │ ├── edge_list_graphs_abstract.h │ │ │ ├── find_k_nearest_neighbors_lsh.h │ │ │ ├── find_k_nearest_neighbors_lsh_abstract.h │ │ │ ├── function_objects.h │ │ │ ├── function_objects_abstract.h │ │ │ ├── graph_utils.h │ │ │ ├── graph_utils_abstract.h │ │ │ ├── ordered_sample_pair.h │ │ │ ├── ordered_sample_pair_abstract.h │ │ │ ├── sample_pair.h │ │ │ └── sample_pair_abstract.h │ │ ├── graph_utils_threaded.h │ │ ├── gui_core.h │ │ ├── gui_core │ │ │ ├── gui_core_kernel_1.cpp │ │ │ ├── gui_core_kernel_1.h │ │ │ ├── gui_core_kernel_2.cpp │ │ │ ├── gui_core_kernel_2.h │ │ │ ├── gui_core_kernel_abstract.h │ │ │ ├── windows.h │ │ │ └── xlib.h │ │ ├── gui_widgets.h │ │ ├── gui_widgets │ │ │ ├── base_widgets.cpp │ │ │ ├── base_widgets.h │ │ │ ├── base_widgets_abstract.h │ │ │ ├── canvas_drawing.cpp │ │ │ ├── canvas_drawing.h │ │ │ ├── canvas_drawing_abstract.h │ │ │ ├── drawable.cpp │ │ │ ├── drawable.h │ │ │ ├── drawable_abstract.h │ │ │ ├── fonts.cpp │ │ │ ├── fonts.h │ │ │ ├── fonts_abstract.h │ │ │ ├── nativefont.h │ │ │ ├── style.cpp │ │ │ ├── style.h │ │ │ ├── style_abstract.h │ │ │ ├── widgets.cpp │ │ │ ├── widgets.h │ │ │ └── widgets_abstract.h │ │ ├── hash.h │ │ ├── hash_map.h │ │ ├── hash_map │ │ │ ├── hash_map_kernel_1.h │ │ │ ├── hash_map_kernel_abstract.h │ │ │ └── hash_map_kernel_c.h │ │ ├── hash_set.h │ │ ├── hash_set │ │ │ ├── hash_set_kernel_1.h │ │ │ ├── hash_set_kernel_abstract.h │ │ │ └── hash_set_kernel_c.h │ │ ├── hash_table.h │ │ ├── hash_table │ │ │ ├── hash_table_kernel_1.h │ │ │ ├── hash_table_kernel_2.h │ │ │ ├── hash_table_kernel_abstract.h │ │ │ └── hash_table_kernel_c.h │ │ ├── http_client │ │ │ ├── http_client.cpp │ │ │ ├── http_client.h │ │ │ └── http_client_abstract.h │ │ ├── image_io.h │ │ ├── image_keypoint.h │ │ ├── image_keypoint │ │ │ ├── binned_vector_feature_image.h │ │ │ ├── binned_vector_feature_image_abstract.h │ │ │ ├── build_separable_poly_filters.h │ │ │ ├── draw_surf_points.h │ │ │ ├── draw_surf_points_abstract.h │ │ │ ├── fine_hog_image.h │ │ │ ├── fine_hog_image_abstract.h │ │ │ ├── hashed_feature_image.h │ │ │ ├── hashed_feature_image_abstract.h │ │ │ ├── hessian_pyramid.h │ │ │ ├── hessian_pyramid_abstract.h │ │ │ ├── hog.h │ │ │ ├── hog_abstract.h │ │ │ ├── nearest_neighbor_feature_image.h │ │ │ ├── nearest_neighbor_feature_image_abstract.h │ │ │ ├── poly_image.h │ │ │ ├── poly_image_abstract.h │ │ │ ├── surf.h │ │ │ └── surf_abstract.h │ │ ├── image_loader │ │ │ ├── image_loader.h │ │ │ ├── image_loader_abstract.h │ │ │ ├── jpeg_loader.cpp │ │ │ ├── jpeg_loader.h │ │ │ ├── jpeg_loader_abstract.h │ │ │ ├── load_image.h │ │ │ ├── load_image_abstract.h │ │ │ ├── png_loader.cpp │ │ │ ├── png_loader.h │ │ │ └── png_loader_abstract.h │ │ ├── image_processing.h │ │ ├── image_processing │ │ │ ├── box_overlap_testing.h │ │ │ ├── box_overlap_testing_abstract.h │ │ │ ├── correlation_tracker.h │ │ │ ├── correlation_tracker_abstract.h │ │ │ ├── detection_template_tools.h │ │ │ ├── detection_template_tools_abstract.h │ │ │ ├── frontal_face_detector.h │ │ │ ├── frontal_face_detector_abstract.h │ │ │ ├── full_object_detection.h │ │ │ ├── full_object_detection_abstract.h │ │ │ ├── generic_image.h │ │ │ ├── object_detector.h │ │ │ ├── object_detector_abstract.h │ │ │ ├── remove_unobtainable_rectangles.h │ │ │ ├── remove_unobtainable_rectangles_abstract.h │ │ │ ├── render_face_detections.h │ │ │ ├── render_face_detections_abstract.h │ │ │ ├── scan_fhog_pyramid.h │ │ │ ├── scan_fhog_pyramid_abstract.h │ │ │ ├── scan_image.h │ │ │ ├── scan_image_abstract.h │ │ │ ├── scan_image_boxes.h │ │ │ ├── scan_image_boxes_abstract.h │ │ │ ├── scan_image_custom.h │ │ │ ├── scan_image_custom_abstract.h │ │ │ ├── scan_image_pyramid.h │ │ │ ├── scan_image_pyramid_abstract.h │ │ │ ├── scan_image_pyramid_tools.h │ │ │ ├── scan_image_pyramid_tools_abstract.h │ │ │ ├── setup_hashed_features.h │ │ │ ├── setup_hashed_features_abstract.h │ │ │ ├── shape_predictor.h │ │ │ ├── shape_predictor_abstract.h │ │ │ ├── shape_predictor_trainer.h │ │ │ └── shape_predictor_trainer_abstract.h │ │ ├── image_saver │ │ │ ├── dng_shared.h │ │ │ ├── image_saver.h │ │ │ ├── image_saver_abstract.h │ │ │ ├── save_jpeg.cpp │ │ │ ├── save_jpeg.h │ │ │ ├── save_jpeg_abstract.h │ │ │ ├── save_png.cpp │ │ │ ├── save_png.h │ │ │ └── save_png_abstract.h │ │ ├── image_transforms.h │ │ ├── image_transforms │ │ │ ├── assign_image.h │ │ │ ├── assign_image_abstract.h │ │ │ ├── colormaps.h │ │ │ ├── colormaps_abstract.h │ │ │ ├── draw.h │ │ │ ├── draw_abstract.h │ │ │ ├── edge_detector.h │ │ │ ├── edge_detector_abstract.h │ │ │ ├── equalize_histogram.h │ │ │ ├── equalize_histogram_abstract.h │ │ │ ├── fhog.h │ │ │ ├── fhog_abstract.h │ │ │ ├── hough_transform.h │ │ │ ├── hough_transform_abstract.h │ │ │ ├── image_pyramid.h │ │ │ ├── image_pyramid_abstract.h │ │ │ ├── integral_image.h │ │ │ ├── integral_image_abstract.h │ │ │ ├── interpolation.h │ │ │ ├── interpolation_abstract.h │ │ │ ├── label_connected_blobs.h │ │ │ ├── label_connected_blobs_abstract.h │ │ │ ├── lbp.h │ │ │ ├── lbp_abstract.h │ │ │ ├── morphological_operations.h │ │ │ ├── morphological_operations_abstract.h │ │ │ ├── random_color_transform.h │ │ │ ├── random_color_transform_abstract.h │ │ │ ├── random_cropper.h │ │ │ ├── random_cropper_abstract.h │ │ │ ├── segment_image.h │ │ │ ├── segment_image_abstract.h │ │ │ ├── spatial_filtering.h │ │ │ ├── spatial_filtering_abstract.h │ │ │ ├── thresholding.h │ │ │ └── thresholding_abstract.h │ │ ├── interfaces │ │ │ ├── cmd_line_parser_option.h │ │ │ ├── enumerable.h │ │ │ ├── map_pair.h │ │ │ └── remover.h │ │ ├── iomanip │ │ ├── iosfwd │ │ ├── iosockstream.h │ │ ├── iosockstream │ │ │ ├── iosockstream.h │ │ │ └── iosockstream_abstract.h │ │ ├── iostream │ │ ├── is_kind.h │ │ ├── istream │ │ ├── java │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake_swig_jni │ │ │ ├── java_array.h │ │ │ ├── run_test.sh │ │ │ ├── swig_api.h │ │ │ └── swig_test.java │ │ ├── linker.h │ │ ├── linker │ │ │ ├── linker_kernel_1.cpp │ │ │ ├── linker_kernel_1.h │ │ │ └── linker_kernel_abstract.h │ │ ├── locale │ │ ├── logger.h │ │ ├── logger │ │ │ ├── extra_logger_headers.cpp │ │ │ ├── extra_logger_headers.h │ │ │ ├── logger_config_file.cpp │ │ │ ├── logger_config_file.h │ │ │ ├── logger_kernel_1.cpp │ │ │ ├── logger_kernel_1.h │ │ │ └── logger_kernel_abstract.h │ │ ├── lsh.h │ │ ├── lsh │ │ │ ├── create_random_projection_hash.h │ │ │ ├── create_random_projection_hash_abstract.h │ │ │ ├── hashes.h │ │ │ ├── hashes_abstract.h │ │ │ ├── projection_hash.h │ │ │ └── projection_hash_abstract.h │ │ ├── lz77_buffer.h │ │ ├── lz77_buffer │ │ │ ├── lz77_buffer_kernel_1.h │ │ │ ├── lz77_buffer_kernel_2.h │ │ │ ├── lz77_buffer_kernel_abstract.h │ │ │ └── lz77_buffer_kernel_c.h │ │ ├── lzp_buffer.h │ │ ├── lzp_buffer │ │ │ ├── lzp_buffer_kernel_1.h │ │ │ ├── lzp_buffer_kernel_2.h │ │ │ ├── lzp_buffer_kernel_abstract.h │ │ │ └── lzp_buffer_kernel_c.h │ │ ├── manifold_regularization.h │ │ ├── manifold_regularization │ │ │ ├── linear_manifold_regularizer.h │ │ │ └── linear_manifold_regularizer_abstract.h │ │ ├── map.h │ │ ├── map │ │ │ ├── map_kernel_1.h │ │ │ ├── map_kernel_abstract.h │ │ │ └── map_kernel_c.h │ │ ├── matlab │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── call_matlab.h │ │ │ ├── cmake_mex_wrapper │ │ │ ├── example.m │ │ │ ├── example_mex_callback.cpp │ │ │ ├── example_mex_class.cpp │ │ │ ├── example_mex_function.cpp │ │ │ ├── example_mex_struct.cpp │ │ │ ├── mex_wrapper.cpp │ │ │ ├── subprocess_stream.cpp │ │ │ └── subprocess_stream.h │ │ ├── matrix.h │ │ ├── matrix │ │ │ ├── cblas_constants.h │ │ │ ├── lapack │ │ │ │ ├── fortran_id.h │ │ │ │ ├── gees.h │ │ │ │ ├── geev.h │ │ │ │ ├── geqrf.h │ │ │ │ ├── gesdd.h │ │ │ │ ├── gesvd.h │ │ │ │ ├── getrf.h │ │ │ │ ├── ormqr.h │ │ │ │ ├── potrf.h │ │ │ │ ├── syev.h │ │ │ │ └── syevr.h │ │ │ ├── matrix.h │ │ │ ├── matrix_abstract.h │ │ │ ├── matrix_assign.h │ │ │ ├── matrix_assign_fwd.h │ │ │ ├── matrix_blas_bindings.h │ │ │ ├── matrix_cholesky.h │ │ │ ├── matrix_conj_trans.h │ │ │ ├── matrix_conv.h │ │ │ ├── matrix_conv_abstract.h │ │ │ ├── matrix_data_layout.h │ │ │ ├── matrix_data_layout_abstract.h │ │ │ ├── matrix_default_mul.h │ │ │ ├── matrix_eigenvalue.h │ │ │ ├── matrix_exp.h │ │ │ ├── matrix_exp_abstract.h │ │ │ ├── matrix_expressions.h │ │ │ ├── matrix_fft.h │ │ │ ├── matrix_fft_abstract.h │ │ │ ├── matrix_fwd.h │ │ │ ├── matrix_generic_image.h │ │ │ ├── matrix_la.h │ │ │ ├── matrix_la_abstract.h │ │ │ ├── matrix_lu.h │ │ │ ├── matrix_mat.h │ │ │ ├── matrix_mat_abstract.h │ │ │ ├── matrix_math_functions.h │ │ │ ├── matrix_math_functions_abstract.h │ │ │ ├── matrix_op.h │ │ │ ├── matrix_qr.h │ │ │ ├── matrix_read_from_istream.h │ │ │ ├── matrix_subexp.h │ │ │ ├── matrix_subexp_abstract.h │ │ │ ├── matrix_trsm.h │ │ │ ├── matrix_utilities.h │ │ │ ├── matrix_utilities_abstract.h │ │ │ ├── symmetric_matrix_cache.h │ │ │ └── symmetric_matrix_cache_abstract.h │ │ ├── md5.h │ │ ├── md5 │ │ │ ├── md5_kernel_1.cpp │ │ │ ├── md5_kernel_1.h │ │ │ └── md5_kernel_abstract.h │ │ ├── member_function_pointer.h │ │ ├── member_function_pointer │ │ │ ├── make_mfp.h │ │ │ ├── make_mfp_abstract.h │ │ │ ├── member_function_pointer_kernel_1.h │ │ │ └── member_function_pointer_kernel_abstract.h │ │ ├── memory_manager.h │ │ ├── memory_manager │ │ │ ├── memory_manager_kernel_1.h │ │ │ ├── memory_manager_kernel_2.h │ │ │ ├── memory_manager_kernel_3.h │ │ │ └── memory_manager_kernel_abstract.h │ │ ├── memory_manager_global.h │ │ ├── memory_manager_global │ │ │ ├── memory_manager_global_kernel_1.h │ │ │ └── memory_manager_global_kernel_abstract.h │ │ ├── memory_manager_stateless.h │ │ ├── memory_manager_stateless │ │ │ ├── memory_manager_stateless_kernel_1.h │ │ │ ├── memory_manager_stateless_kernel_2.h │ │ │ └── memory_manager_stateless_kernel_abstract.h │ │ ├── misc_api.h │ │ ├── misc_api │ │ │ ├── misc_api_kernel_1.cpp │ │ │ ├── misc_api_kernel_1.h │ │ │ ├── misc_api_kernel_2.cpp │ │ │ ├── misc_api_kernel_2.h │ │ │ ├── misc_api_kernel_abstract.h │ │ │ ├── misc_api_shared.h │ │ │ ├── posix.h │ │ │ └── windows.h │ │ ├── mlp.h │ │ ├── mlp │ │ │ ├── mlp_kernel_1.h │ │ │ ├── mlp_kernel_abstract.h │ │ │ └── mlp_kernel_c.h │ │ ├── noncopyable.h │ │ ├── numeric_constants.h │ │ ├── numerical_integration.h │ │ ├── numerical_integration │ │ │ ├── integrate_function_adapt_simpson.h │ │ │ └── integrate_function_adapt_simpson_abstract.h │ │ ├── opencv.h │ │ ├── opencv │ │ │ ├── cv_image.h │ │ │ ├── cv_image_abstract.h │ │ │ ├── to_open_cv.h │ │ │ └── to_open_cv_abstract.h │ │ ├── optimization.h │ │ ├── optimization │ │ │ ├── elastic_net.h │ │ │ ├── elastic_net_abstract.h │ │ │ ├── find_max_factor_graph_nmplp.h │ │ │ ├── find_max_factor_graph_nmplp_abstract.h │ │ │ ├── find_max_factor_graph_viterbi.h │ │ │ ├── find_max_factor_graph_viterbi_abstract.h │ │ │ ├── find_max_parse_cky.h │ │ │ ├── find_max_parse_cky_abstract.h │ │ │ ├── find_optimal_parameters.h │ │ │ ├── find_optimal_parameters_abstract.h │ │ │ ├── max_cost_assignment.h │ │ │ ├── max_cost_assignment_abstract.h │ │ │ ├── max_sum_submatrix.h │ │ │ ├── max_sum_submatrix_abstract.h │ │ │ ├── optimization.h │ │ │ ├── optimization_abstract.h │ │ │ ├── optimization_bobyqa.h │ │ │ ├── optimization_bobyqa_abstract.h │ │ │ ├── optimization_least_squares.h │ │ │ ├── optimization_least_squares_abstract.h │ │ │ ├── optimization_line_search.h │ │ │ ├── optimization_line_search_abstract.h │ │ │ ├── optimization_oca.h │ │ │ ├── optimization_oca_abstract.h │ │ │ ├── optimization_search_strategies.h │ │ │ ├── optimization_search_strategies_abstract.h │ │ │ ├── optimization_solve_qp2_using_smo.h │ │ │ ├── optimization_solve_qp2_using_smo_abstract.h │ │ │ ├── optimization_solve_qp3_using_smo.h │ │ │ ├── optimization_solve_qp3_using_smo_abstract.h │ │ │ ├── optimization_solve_qp_using_smo.h │ │ │ ├── optimization_solve_qp_using_smo_abstract.h │ │ │ ├── optimization_stop_strategies.h │ │ │ ├── optimization_stop_strategies_abstract.h │ │ │ ├── optimization_trust_region.h │ │ │ └── optimization_trust_region_abstract.h │ │ ├── ostream │ │ ├── pipe.h │ │ ├── pipe │ │ │ ├── pipe_kernel_1.h │ │ │ └── pipe_kernel_abstract.h │ │ ├── pixel.h │ │ ├── platform.h │ │ ├── python.h │ │ ├── python │ │ │ ├── boost_python_utils.h │ │ │ ├── numpy.h │ │ │ ├── numpy_image.h │ │ │ ├── pyassert.h │ │ │ └── serialize_pickle.h │ │ ├── quantum_computing.h │ │ ├── quantum_computing │ │ │ ├── quantum_computing.h │ │ │ └── quantum_computing_abstract.h │ │ ├── queue.h │ │ ├── queue │ │ │ ├── queue_kernel_1.h │ │ │ ├── queue_kernel_2.h │ │ │ ├── queue_kernel_abstract.h │ │ │ ├── queue_kernel_c.h │ │ │ ├── queue_sort_1.h │ │ │ └── queue_sort_abstract.h │ │ ├── rand.h │ │ ├── rand │ │ │ ├── mersenne_twister.h │ │ │ ├── rand_kernel_1.h │ │ │ └── rand_kernel_abstract.h │ │ ├── ref.h │ │ ├── reference_counter.h │ │ ├── reference_counter │ │ │ ├── reference_counter_kernel_1.h │ │ │ └── reference_counter_kernel_abstract.h │ │ ├── revision.h │ │ ├── revision.h.in │ │ ├── sequence.h │ │ ├── sequence │ │ │ ├── sequence_compare_1.h │ │ │ ├── sequence_compare_abstract.h │ │ │ ├── sequence_kernel_1.h │ │ │ ├── sequence_kernel_2.h │ │ │ ├── sequence_kernel_abstract.h │ │ │ ├── sequence_kernel_c.h │ │ │ ├── sequence_sort_1.h │ │ │ ├── sequence_sort_2.h │ │ │ └── sequence_sort_abstract.h │ │ ├── serialize.h │ │ ├── server.h │ │ ├── server │ │ │ ├── server_http.cpp │ │ │ ├── server_http.h │ │ │ ├── server_http_abstract.h │ │ │ ├── server_iostream.cpp │ │ │ ├── server_iostream.h │ │ │ ├── server_iostream_abstract.h │ │ │ ├── server_kernel.cpp │ │ │ ├── server_kernel.h │ │ │ └── server_kernel_abstract.h │ │ ├── set.h │ │ ├── set │ │ │ ├── set_compare_1.h │ │ │ ├── set_compare_abstract.h │ │ │ ├── set_kernel_1.h │ │ │ ├── set_kernel_abstract.h │ │ │ └── set_kernel_c.h │ │ ├── set_utils.h │ │ ├── set_utils │ │ │ ├── set_utils.h │ │ │ └── set_utils_abstract.h │ │ ├── simd.h │ │ ├── simd │ │ │ ├── simd4f.h │ │ │ ├── simd4i.h │ │ │ ├── simd8f.h │ │ │ ├── simd8i.h │ │ │ └── simd_check.h │ │ ├── sliding_buffer.h │ │ ├── sliding_buffer │ │ │ ├── circular_buffer.h │ │ │ ├── circular_buffer_abstract.h │ │ │ ├── sliding_buffer_kernel_1.h │ │ │ ├── sliding_buffer_kernel_abstract.h │ │ │ └── sliding_buffer_kernel_c.h │ │ ├── smart_pointers.h │ │ ├── smart_pointers │ │ │ ├── scoped_ptr.h │ │ │ ├── shared_ptr.h │ │ │ ├── shared_ptr_abstract.h │ │ │ ├── shared_ptr_thread_safe.h │ │ │ ├── shared_ptr_thread_safe_abstract.h │ │ │ ├── weak_ptr.h │ │ │ └── weak_ptr_abstract.h │ │ ├── smart_pointers_thread_safe.h │ │ ├── sockets.h │ │ ├── sockets │ │ │ ├── posix.h │ │ │ ├── sockets_extensions.cpp │ │ │ ├── sockets_extensions.h │ │ │ ├── sockets_extensions_abstract.h │ │ │ ├── sockets_kernel_1.cpp │ │ │ ├── sockets_kernel_1.h │ │ │ ├── sockets_kernel_2.cpp │ │ │ ├── sockets_kernel_2.h │ │ │ ├── sockets_kernel_abstract.h │ │ │ └── windows.h │ │ ├── sockstreambuf.h │ │ ├── sockstreambuf │ │ │ ├── sockstreambuf.cpp │ │ │ ├── sockstreambuf.h │ │ │ ├── sockstreambuf_abstract.h │ │ │ ├── sockstreambuf_unbuffered.cpp │ │ │ └── sockstreambuf_unbuffered.h │ │ ├── sort.h │ │ ├── sparse_vector.h │ │ ├── sqlite.h │ │ ├── sqlite │ │ │ ├── sqlite.h │ │ │ ├── sqlite_abstract.h │ │ │ ├── sqlite_tools.h │ │ │ └── sqlite_tools_abstract.h │ │ ├── sstream │ │ ├── stack.h │ │ ├── stack │ │ │ ├── stack_kernel_1.h │ │ │ ├── stack_kernel_abstract.h │ │ │ └── stack_kernel_c.h │ │ ├── stack_trace.cpp │ │ ├── stack_trace.h │ │ ├── static_map.h │ │ ├── static_map │ │ │ ├── static_map_kernel_1.h │ │ │ ├── static_map_kernel_abstract.h │ │ │ └── static_map_kernel_c.h │ │ ├── static_set.h │ │ ├── static_set │ │ │ ├── static_set_compare_1.h │ │ │ ├── static_set_compare_abstract.h │ │ │ ├── static_set_kernel_1.h │ │ │ ├── static_set_kernel_abstract.h │ │ │ └── static_set_kernel_c.h │ │ ├── statistics.h │ │ ├── statistics │ │ │ ├── average_precision.h │ │ │ ├── average_precision_abstract.h │ │ │ ├── cca.h │ │ │ ├── cca_abstract.h │ │ │ ├── dpca.h │ │ │ ├── dpca_abstract.h │ │ │ ├── image_feature_sampling.h │ │ │ ├── image_feature_sampling_abstract.h │ │ │ ├── lda.h │ │ │ ├── lda_abstract.h │ │ │ ├── random_subset_selector.h │ │ │ ├── random_subset_selector_abstract.h │ │ │ ├── running_gradient.h │ │ │ ├── running_gradient_abstract.h │ │ │ ├── sammon.h │ │ │ ├── sammon_abstract.h │ │ │ ├── statistics.h │ │ │ ├── statistics_abstract.h │ │ │ ├── vector_normalizer_frobmetric.h │ │ │ └── vector_normalizer_frobmetric_abstract.h │ │ ├── std_allocator.h │ │ ├── stl_checked.h │ │ ├── stl_checked │ │ │ ├── std_vector_c.h │ │ │ └── std_vector_c_abstract.h │ │ ├── string.h │ │ ├── string │ │ │ ├── cassert │ │ │ ├── iomanip │ │ │ ├── iosfwd │ │ │ ├── iostream │ │ │ ├── locale │ │ │ ├── string.h │ │ │ └── string_abstract.h │ │ ├── svm.h │ │ ├── svm │ │ │ ├── active_learning.h │ │ │ ├── active_learning_abstract.h │ │ │ ├── assignment_function.h │ │ │ ├── assignment_function_abstract.h │ │ │ ├── cross_validate_assignment_trainer.h │ │ │ ├── cross_validate_assignment_trainer_abstract.h │ │ │ ├── cross_validate_graph_labeling_trainer.h │ │ │ ├── cross_validate_graph_labeling_trainer_abstract.h │ │ │ ├── cross_validate_multiclass_trainer.h │ │ │ ├── cross_validate_multiclass_trainer_abstract.h │ │ │ ├── cross_validate_object_detection_trainer.h │ │ │ ├── cross_validate_object_detection_trainer_abstract.h │ │ │ ├── cross_validate_regression_trainer.h │ │ │ ├── cross_validate_regression_trainer_abstract.h │ │ │ ├── cross_validate_sequence_labeler.h │ │ │ ├── cross_validate_sequence_labeler_abstract.h │ │ │ ├── cross_validate_sequence_segmenter.h │ │ │ ├── cross_validate_sequence_segmenter_abstract.h │ │ │ ├── cross_validate_track_association_trainer.h │ │ │ ├── cross_validate_track_association_trainer_abstract.h │ │ │ ├── empirical_kernel_map.h │ │ │ ├── empirical_kernel_map_abstract.h │ │ │ ├── feature_ranking.h │ │ │ ├── feature_ranking_abstract.h │ │ │ ├── function.h │ │ │ ├── function_abstract.h │ │ │ ├── kcentroid.h │ │ │ ├── kcentroid_abstract.h │ │ │ ├── kcentroid_overloads.h │ │ │ ├── kernel.h │ │ │ ├── kernel_abstract.h │ │ │ ├── kernel_matrix.h │ │ │ ├── kernel_matrix_abstract.h │ │ │ ├── kkmeans.h │ │ │ ├── kkmeans_abstract.h │ │ │ ├── krls.h │ │ │ ├── krls_abstract.h │ │ │ ├── krr_trainer.h │ │ │ ├── krr_trainer_abstract.h │ │ │ ├── linearly_independent_subset_finder.h │ │ │ ├── linearly_independent_subset_finder_abstract.h │ │ │ ├── multiclass_tools.h │ │ │ ├── multiclass_tools_abstract.h │ │ │ ├── null_df.h │ │ │ ├── null_trainer.h │ │ │ ├── null_trainer_abstract.h │ │ │ ├── num_nonnegative_weights.h │ │ │ ├── one_vs_all_decision_function.h │ │ │ ├── one_vs_all_decision_function_abstract.h │ │ │ ├── one_vs_all_trainer.h │ │ │ ├── one_vs_all_trainer_abstract.h │ │ │ ├── one_vs_one_decision_function.h │ │ │ ├── one_vs_one_decision_function_abstract.h │ │ │ ├── one_vs_one_trainer.h │ │ │ ├── one_vs_one_trainer_abstract.h │ │ │ ├── pegasos.h │ │ │ ├── pegasos_abstract.h │ │ │ ├── ranking_tools.h │ │ │ ├── ranking_tools_abstract.h │ │ │ ├── rbf_network.h │ │ │ ├── rbf_network_abstract.h │ │ │ ├── reduced.h │ │ │ ├── reduced_abstract.h │ │ │ ├── rls.h │ │ │ ├── rls_abstract.h │ │ │ ├── roc_trainer.h │ │ │ ├── roc_trainer_abstract.h │ │ │ ├── rr_trainer.h │ │ │ ├── rr_trainer_abstract.h │ │ │ ├── rvm.h │ │ │ ├── rvm_abstract.h │ │ │ ├── sequence_labeler.h │ │ │ ├── sequence_labeler_abstract.h │ │ │ ├── sequence_segmenter.h │ │ │ ├── sequence_segmenter_abstract.h │ │ │ ├── simplify_linear_decision_function.h │ │ │ ├── simplify_linear_decision_function_abstract.h │ │ │ ├── sort_basis_vectors.h │ │ │ ├── sort_basis_vectors_abstract.h │ │ │ ├── sparse_kernel.h │ │ │ ├── sparse_kernel_abstract.h │ │ │ ├── sparse_vector.h │ │ │ ├── sparse_vector_abstract.h │ │ │ ├── structural_assignment_trainer.h │ │ │ ├── structural_assignment_trainer_abstract.h │ │ │ ├── structural_graph_labeling_trainer.h │ │ │ ├── structural_graph_labeling_trainer_abstract.h │ │ │ ├── structural_object_detection_trainer.h │ │ │ ├── structural_object_detection_trainer_abstract.h │ │ │ ├── structural_sequence_labeling_trainer.h │ │ │ ├── structural_sequence_labeling_trainer_abstract.h │ │ │ ├── structural_sequence_segmentation_trainer.h │ │ │ ├── structural_sequence_segmentation_trainer_abstract.h │ │ │ ├── structural_svm_assignment_problem.h │ │ │ ├── structural_svm_assignment_problem_abstract.h │ │ │ ├── structural_svm_distributed.h │ │ │ ├── structural_svm_distributed_abstract.h │ │ │ ├── structural_svm_graph_labeling_problem.h │ │ │ ├── structural_svm_graph_labeling_problem_abstract.h │ │ │ ├── structural_svm_object_detection_problem.h │ │ │ ├── structural_svm_object_detection_problem_abstract.h │ │ │ ├── structural_svm_problem.h │ │ │ ├── structural_svm_problem_abstract.h │ │ │ ├── structural_svm_problem_threaded.h │ │ │ ├── structural_svm_problem_threaded_abstract.h │ │ │ ├── structural_svm_sequence_labeling_problem.h │ │ │ ├── structural_svm_sequence_labeling_problem_abstract.h │ │ │ ├── structural_track_association_trainer.h │ │ │ ├── structural_track_association_trainer_abstract.h │ │ │ ├── svm.h │ │ │ ├── svm_abstract.h │ │ │ ├── svm_c_ekm_trainer.h │ │ │ ├── svm_c_ekm_trainer_abstract.h │ │ │ ├── svm_c_linear_dcd_trainer.h │ │ │ ├── svm_c_linear_dcd_trainer_abstract.h │ │ │ ├── svm_c_linear_trainer.h │ │ │ ├── svm_c_linear_trainer_abstract.h │ │ │ ├── svm_c_trainer.h │ │ │ ├── svm_c_trainer_abstract.h │ │ │ ├── svm_multiclass_linear_trainer.h │ │ │ ├── svm_multiclass_linear_trainer_abstract.h │ │ │ ├── svm_nu_trainer.h │ │ │ ├── svm_nu_trainer_abstract.h │ │ │ ├── svm_one_class_trainer.h │ │ │ ├── svm_one_class_trainer_abstract.h │ │ │ ├── svm_rank_trainer.h │ │ │ ├── svm_rank_trainer_abstract.h │ │ │ ├── svm_threaded.h │ │ │ ├── svm_threaded_abstract.h │ │ │ ├── svr_linear_trainer.h │ │ │ ├── svr_linear_trainer_abstract.h │ │ │ ├── svr_trainer.h │ │ │ ├── svr_trainer_abstract.h │ │ │ ├── track_association_function.h │ │ │ └── track_association_function_abstract.h │ │ ├── svm_threaded.h │ │ ├── sync_extension.h │ │ ├── sync_extension │ │ │ ├── sync_extension_kernel_1.h │ │ │ └── sync_extension_kernel_abstract.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── WINDOWS_build_and_run_all_unit_tests.bat │ │ │ ├── active_learning.cpp │ │ │ ├── any.cpp │ │ │ ├── any_function.cpp │ │ │ ├── array.cpp │ │ │ ├── array2d.cpp │ │ │ ├── assignment_learning.cpp │ │ │ ├── base64.cpp │ │ │ ├── bayes_nets.cpp │ │ │ ├── bigint.cpp │ │ │ ├── binary_search_tree.h │ │ │ ├── binary_search_tree_kernel_1a.cpp │ │ │ ├── binary_search_tree_kernel_2a.cpp │ │ │ ├── binary_search_tree_mm1.cpp │ │ │ ├── binary_search_tree_mm2.cpp │ │ │ ├── blas_bindings │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas_bindings_dot.cpp │ │ │ │ ├── blas_bindings_gemm.cpp │ │ │ │ ├── blas_bindings_gemv.cpp │ │ │ │ ├── blas_bindings_ger.cpp │ │ │ │ ├── blas_bindings_scal_axpy.cpp │ │ │ │ └── vector.cpp │ │ │ ├── bridge.cpp │ │ │ ├── bsp.cpp │ │ │ ├── byte_orderer.cpp │ │ │ ├── cca.cpp │ │ │ ├── checkerboard.h │ │ │ ├── clustering.cpp │ │ │ ├── cmd_line_parser.cpp │ │ │ ├── cmd_line_parser.h │ │ │ ├── cmd_line_parser_wchar_t.cpp │ │ │ ├── compress_stream.cpp │ │ │ ├── conditioning_class.cpp │ │ │ ├── conditioning_class.h │ │ │ ├── conditioning_class_c.cpp │ │ │ ├── config_reader.cpp │ │ │ ├── correlation_tracker.cpp │ │ │ ├── crc32.cpp │ │ │ ├── create_iris_datafile.cpp │ │ │ ├── create_iris_datafile.h │ │ │ ├── cublas.cpp │ │ │ ├── data_io.cpp │ │ │ ├── directed_graph.cpp │ │ │ ├── discriminant_pca.cpp │ │ │ ├── disjoint_subsets.cpp │ │ │ ├── dnn.cpp │ │ │ ├── ekm_and_lisf.cpp │ │ │ ├── elastic_net.cpp │ │ │ ├── empirical_kernel_map.cpp │ │ │ ├── entropy_coder.cpp │ │ │ ├── entropy_encoder_model.cpp │ │ │ ├── example.cpp │ │ │ ├── example_args.cpp │ │ │ ├── examples │ │ │ │ └── CMakeLists.txt │ │ │ ├── face.cpp │ │ │ ├── fft.cpp │ │ │ ├── fhog.cpp │ │ │ ├── filtering.cpp │ │ │ ├── find_max_factor_graph_nmplp.cpp │ │ │ ├── find_max_factor_graph_viterbi.cpp │ │ │ ├── find_optimal_parameters.cpp │ │ │ ├── geometry.cpp │ │ │ ├── graph.cpp │ │ │ ├── graph_cuts.cpp │ │ │ ├── graph_labeler.cpp │ │ │ ├── gui │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── hash.cpp │ │ │ ├── hash_map.cpp │ │ │ ├── hash_set.cpp │ │ │ ├── hash_table.cpp │ │ │ ├── hog_image.cpp │ │ │ ├── image.cpp │ │ │ ├── iosockstream.cpp │ │ │ ├── is_same_object.cpp │ │ │ ├── kcentroid.cpp │ │ │ ├── kernel_matrix.cpp │ │ │ ├── kmeans.cpp │ │ │ ├── learning_to_track.cpp │ │ │ ├── least_squares.cpp │ │ │ ├── linear_manifold_regularizer.cpp │ │ │ ├── lspi.cpp │ │ │ ├── lz77_buffer.cpp │ │ │ ├── main.cpp │ │ │ ├── map.cpp │ │ │ ├── matrix.cpp │ │ │ ├── matrix2.cpp │ │ │ ├── matrix3.cpp │ │ │ ├── matrix4.cpp │ │ │ ├── matrix_chol.cpp │ │ │ ├── matrix_eig.cpp │ │ │ ├── matrix_lu.cpp │ │ │ ├── matrix_qr.cpp │ │ │ ├── max_cost_assignment.cpp │ │ │ ├── max_sum_submatrix.cpp │ │ │ ├── md5.cpp │ │ │ ├── member_function_pointer.cpp │ │ │ ├── metaprogramming.cpp │ │ │ ├── mpc.cpp │ │ │ ├── multithreaded_object.cpp │ │ │ ├── numerical_integration.cpp │ │ │ ├── object_detector.cpp │ │ │ ├── oca.cpp │ │ │ ├── one_vs_all_trainer.cpp │ │ │ ├── one_vs_one_trainer.cpp │ │ │ ├── opt_qp_solver.cpp │ │ │ ├── optimization.cpp │ │ │ ├── optimization_test_functions.cpp │ │ │ ├── optimization_test_functions.h │ │ │ ├── parallel_for.cpp │ │ │ ├── parse.cpp │ │ │ ├── pipe.cpp │ │ │ ├── pixel.cpp │ │ │ ├── probabilistic.cpp │ │ │ ├── pyramid_down.cpp │ │ │ ├── queue.cpp │ │ │ ├── rand.cpp │ │ │ ├── ranking.cpp │ │ │ ├── read_write_mutex.cpp │ │ │ ├── reference_counter.cpp │ │ │ ├── rls.cpp │ │ │ ├── sammon.cpp │ │ │ ├── scan_image.cpp │ │ │ ├── sequence.cpp │ │ │ ├── sequence_labeler.cpp │ │ │ ├── sequence_segmenter.cpp │ │ │ ├── serialize.cpp │ │ │ ├── set.cpp │ │ │ ├── sldf.cpp │ │ │ ├── sliding_buffer.cpp │ │ │ ├── smart_pointers.cpp │ │ │ ├── sockets.cpp │ │ │ ├── sockets2.cpp │ │ │ ├── sockstreambuf.cpp │ │ │ ├── sparse_vector.cpp │ │ │ ├── stack.cpp │ │ │ ├── static_map.cpp │ │ │ ├── static_set.cpp │ │ │ ├── statistics.cpp │ │ │ ├── std_vector_c.cpp │ │ │ ├── string.cpp │ │ │ ├── svm.cpp │ │ │ ├── svm_c_linear.cpp │ │ │ ├── svm_c_linear_dcd.cpp │ │ │ ├── svm_multiclass_linear.cpp │ │ │ ├── svm_struct.cpp │ │ │ ├── svr_linear_trainer.cpp │ │ │ ├── symmetric_matrix_cache.cpp │ │ │ ├── tester.cpp │ │ │ ├── tester.h │ │ │ ├── thread_pool.cpp │ │ │ ├── threads.cpp │ │ │ ├── timer.cpp │ │ │ ├── tokenizer.cpp │ │ │ ├── tools │ │ │ │ └── CMakeLists.txt │ │ │ ├── trust_region.cpp │ │ │ ├── tuple.cpp │ │ │ ├── type_safe_union.cpp │ │ │ └── vectorstream.cpp │ │ ├── threads.h │ │ ├── threads │ │ │ ├── async.cpp │ │ │ ├── async.h │ │ │ ├── async_abstract.h │ │ │ ├── auto_mutex_extension.h │ │ │ ├── auto_mutex_extension_abstract.h │ │ │ ├── auto_unlock_extension.h │ │ │ ├── auto_unlock_extension_abstract.h │ │ │ ├── create_new_thread_extension.h │ │ │ ├── create_new_thread_extension_abstract.h │ │ │ ├── multithreaded_object_extension.cpp │ │ │ ├── multithreaded_object_extension.h │ │ │ ├── multithreaded_object_extension_abstract.h │ │ │ ├── parallel_for_extension.h │ │ │ ├── parallel_for_extension_abstract.h │ │ │ ├── posix.h │ │ │ ├── read_write_mutex_extension.h │ │ │ ├── read_write_mutex_extension_abstract.h │ │ │ ├── rmutex_extension.h │ │ │ ├── rmutex_extension_abstract.h │ │ │ ├── rsignaler_extension.h │ │ │ ├── rsignaler_extension_abstract.h │ │ │ ├── thread_function_extension.h │ │ │ ├── thread_function_extension_abstract.h │ │ │ ├── thread_pool_extension.cpp │ │ │ ├── thread_pool_extension.h │ │ │ ├── thread_pool_extension_abstract.h │ │ │ ├── thread_specific_data_extension.h │ │ │ ├── thread_specific_data_extension_abstract.h │ │ │ ├── threaded_object_extension.cpp │ │ │ ├── threaded_object_extension.h │ │ │ ├── threaded_object_extension_abstract.h │ │ │ ├── threads_kernel.h │ │ │ ├── threads_kernel_1.cpp │ │ │ ├── threads_kernel_1.h │ │ │ ├── threads_kernel_2.cpp │ │ │ ├── threads_kernel_2.h │ │ │ ├── threads_kernel_abstract.h │ │ │ ├── threads_kernel_shared.cpp │ │ │ ├── threads_kernel_shared.h │ │ │ └── windows.h │ │ ├── time_this.h │ │ ├── timeout.h │ │ ├── timeout │ │ │ ├── timeout.h │ │ │ └── timeout_abstract.h │ │ ├── timer.h │ │ ├── timer │ │ │ ├── timer.cpp │ │ │ ├── timer.h │ │ │ ├── timer_abstract.h │ │ │ └── timer_heavy.h │ │ ├── timing.h │ │ ├── tokenizer.h │ │ ├── tokenizer │ │ │ ├── tokenizer_kernel_1.cpp │ │ │ ├── tokenizer_kernel_1.h │ │ │ ├── tokenizer_kernel_abstract.h │ │ │ └── tokenizer_kernel_c.h │ │ ├── travis │ │ │ ├── before-install.sh │ │ │ └── build-and-test.sh │ │ ├── tuple.h │ │ ├── tuple │ │ │ ├── tuple.h │ │ │ └── tuple_abstract.h │ │ ├── type_safe_union.h │ │ ├── type_safe_union │ │ │ ├── type_safe_union_kernel.h │ │ │ └── type_safe_union_kernel_abstract.h │ │ ├── uintn.h │ │ ├── unicode.h │ │ ├── unicode │ │ │ ├── unicode.cpp │ │ │ ├── unicode.h │ │ │ └── unicode_abstract.h │ │ ├── unordered_pair.h │ │ ├── vectorstream.h │ │ ├── vectorstream │ │ │ ├── unserialize.h │ │ │ ├── unserialize_abstract.h │ │ │ ├── vectorstream.h │ │ │ └── vectorstream_abstract.h │ │ ├── windows_magic.h │ │ ├── xml_parser.h │ │ └── xml_parser │ │ │ ├── xml_parser_kernel_1.h │ │ │ ├── xml_parser_kernel_abstract.h │ │ │ └── xml_parser_kernel_interfaces.h │ └── lib │ │ ├── dlib.lib │ │ └── dlibd.lib └── libpng │ └── lib │ ├── libpng16.exp │ ├── libpng16.lib │ └── libpng16_static.lib ├── logger.cpp ├── logger.h ├── main.cpp ├── peak_detection.h ├── plane_t.h ├── quadtree_t.cpp ├── quadtree_t.h ├── reader_file.h ├── sat.h ├── settings.h ├── voting.cpp └── voting.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /D-KHT.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/D-KHT.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/README.md -------------------------------------------------------------------------------- /accum_ball_cell_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/accum_ball_cell_t.h -------------------------------------------------------------------------------- /accum_cell_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/accum_cell_t.h -------------------------------------------------------------------------------- /accumulatorball_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/accumulatorball_t.cpp -------------------------------------------------------------------------------- /accumulatorball_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/accumulatorball_t.h -------------------------------------------------------------------------------- /bin_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/bin_t.h -------------------------------------------------------------------------------- /configuration/workspace_location.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/configuration/workspace_location.h.in -------------------------------------------------------------------------------- /hough.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/hough.cpp -------------------------------------------------------------------------------- /hough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/hough.h -------------------------------------------------------------------------------- /input/copy_room_4161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/input/copy_room_4161.png -------------------------------------------------------------------------------- /input/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/input/cube.png -------------------------------------------------------------------------------- /kernel_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/kernel_t.h -------------------------------------------------------------------------------- /libs/dlib/dlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/LICENSE.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/algs.h -------------------------------------------------------------------------------- /libs/dlib/dlib/all/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/all/source.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/all_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/all_console.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/all_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/all_gui.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_decision_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_decision_function.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_function.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_function_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_function_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_function_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_function_impl.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_function_impl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_function_impl2.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/any/any_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/any/any_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/array.h -------------------------------------------------------------------------------- /libs/dlib/dlib/array/array_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/array/array_kernel.h -------------------------------------------------------------------------------- /libs/dlib/dlib/array/array_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/array/array_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/array/array_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/array/array_tools.h -------------------------------------------------------------------------------- /libs/dlib/dlib/array/array_tools_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/array/array_tools_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/array2d.h -------------------------------------------------------------------------------- /libs/dlib/dlib/array2d/array2d_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/array2d/array2d_kernel.h -------------------------------------------------------------------------------- /libs/dlib/dlib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/assert.h -------------------------------------------------------------------------------- /libs/dlib/dlib/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/base64.h -------------------------------------------------------------------------------- /libs/dlib/dlib/base64/base64_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/base64/base64_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/base64/base64_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/base64/base64_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bayes_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bayes_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bayes_utils/bayes_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bayes_utils/bayes_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bigint.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bigint/bigint_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bigint/bigint_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/bigint/bigint_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bigint/bigint_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bigint/bigint_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bigint/bigint_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/bigint/bigint_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bigint/bigint_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bigint/bigint_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bigint/bigint_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/dlib/binary_search_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/binary_search_tree.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bit_stream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bits/c++config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bits/c++config.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bound_function_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bound_function_pointer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bridge.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bridge/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bridge/bridge.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bridge/bridge_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bridge/bridge_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bsp.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bsp/bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bsp/bsp.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bsp/bsp.h -------------------------------------------------------------------------------- /libs/dlib/dlib/bsp/bsp_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/bsp/bsp_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/byte_orderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/byte_orderer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cassert -------------------------------------------------------------------------------- /libs/dlib/dlib/clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/clustering.h -------------------------------------------------------------------------------- /libs/dlib/dlib/clustering/bottom_up_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/clustering/bottom_up_cluster.h -------------------------------------------------------------------------------- /libs/dlib/dlib/clustering/chinese_whispers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/clustering/chinese_whispers.h -------------------------------------------------------------------------------- /libs/dlib/dlib/clustering/spectral_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/clustering/spectral_cluster.h -------------------------------------------------------------------------------- /libs/dlib/dlib/cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cmake -------------------------------------------------------------------------------- /libs/dlib/dlib/cmake_utils/add_python_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cmake_utils/add_python_module -------------------------------------------------------------------------------- /libs/dlib/dlib/cmake_utils/dlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cmake_utils/dlib.pc.in -------------------------------------------------------------------------------- /libs/dlib/dlib/cmake_utils/use_cpp_11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cmake_utils/use_cpp_11.cmake -------------------------------------------------------------------------------- /libs/dlib/dlib/cmd_line_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cmd_line_parser.h -------------------------------------------------------------------------------- /libs/dlib/dlib/cmd_line_parser/get_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cmd_line_parser/get_option.h -------------------------------------------------------------------------------- /libs/dlib/dlib/compress_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/compress_stream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/conditioning_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/conditioning_class.h -------------------------------------------------------------------------------- /libs/dlib/dlib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/config.h -------------------------------------------------------------------------------- /libs/dlib/dlib/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/config.h.in -------------------------------------------------------------------------------- /libs/dlib/dlib/config_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/config_reader.h -------------------------------------------------------------------------------- /libs/dlib/dlib/console_progress_indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/console_progress_indicator.h -------------------------------------------------------------------------------- /libs/dlib/dlib/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/control.h -------------------------------------------------------------------------------- /libs/dlib/dlib/control/lspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/control/lspi.h -------------------------------------------------------------------------------- /libs/dlib/dlib/control/lspi_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/control/lspi_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/control/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/control/mpc.h -------------------------------------------------------------------------------- /libs/dlib/dlib/control/mpc_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/control/mpc_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/cpp_pretty_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cpp_pretty_printer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/cpp_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cpp_tokenizer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/crc32.h -------------------------------------------------------------------------------- /libs/dlib/dlib/crc32/crc32_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/crc32/crc32_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/crc32/crc32_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/crc32/crc32_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/cstring -------------------------------------------------------------------------------- /libs/dlib/dlib/data_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/data_io.h -------------------------------------------------------------------------------- /libs/dlib/dlib/data_io/libsvm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/data_io/libsvm_io.h -------------------------------------------------------------------------------- /libs/dlib/dlib/data_io/libsvm_io_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/data_io/libsvm_io_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/data_io/load_image_dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/data_io/load_image_dataset.h -------------------------------------------------------------------------------- /libs/dlib/dlib/data_io/mnist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/data_io/mnist.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/data_io/mnist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/data_io/mnist.h -------------------------------------------------------------------------------- /libs/dlib/dlib/data_io/mnist_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/data_io/mnist_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/dir_nav_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/dir_nav_extensions.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/dir_nav_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/dir_nav_extensions.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/dir_nav_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/dir_nav_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/dir_nav_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/dir_nav_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/dir_nav_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/dir_nav_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/dir_nav_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/dir_nav_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/posix.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dir_nav/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dir_nav/windows.h -------------------------------------------------------------------------------- /libs/dlib/dlib/directed_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/directed_graph.h -------------------------------------------------------------------------------- /libs/dlib/dlib/disjoint_subsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/disjoint_subsets.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dlib_include_path_tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dlib_include_path_tutorial.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/core.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/core_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/core_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cpu_dlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cpu_dlib.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cpu_dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cpu_dlib.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cublas_dlibapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cublas_dlibapi.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cublas_dlibapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cublas_dlibapi.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cuda_data_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cuda_data_ptr.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cuda_data_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cuda_data_ptr.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cuda_dlib.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cuda_dlib.cu -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cuda_dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cuda_dlib.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cuda_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cuda_errors.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cuda_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cuda_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cudnn_dlibapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cudnn_dlibapi.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cudnn_dlibapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cudnn_dlibapi.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/curand_dlibapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/curand_dlibapi.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/curand_dlibapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/curand_dlibapi.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cusolver_dlibapi.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cusolver_dlibapi.cu -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/cusolver_dlibapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/cusolver_dlibapi.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/gpu_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/gpu_data.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/gpu_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/gpu_data.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/gpu_data_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/gpu_data_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/input.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/input_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/input_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/layers.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/layers_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/layers_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/loss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/loss.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/loss_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/loss_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/solvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/solvers.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/solvers_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/solvers_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/tensor.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/tensor_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/tensor_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/tensor_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/tensor_tools.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/tensor_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/tensor_tools.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/utilities.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/utilities_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/utilities_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/dnn/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/dnn/validation.h -------------------------------------------------------------------------------- /libs/dlib/dlib/enable_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/enable_if.h -------------------------------------------------------------------------------- /libs/dlib/dlib/entropy_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/entropy_decoder.h -------------------------------------------------------------------------------- /libs/dlib/dlib/entropy_decoder_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/entropy_decoder_model.h -------------------------------------------------------------------------------- /libs/dlib/dlib/entropy_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/entropy_encoder.h -------------------------------------------------------------------------------- /libs/dlib/dlib/entropy_encoder_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/entropy_encoder_model.h -------------------------------------------------------------------------------- /libs/dlib/dlib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/error.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/README -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_caxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_caxpy.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ccopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ccopy.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cgbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cgbmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cgemm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cgemv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cgerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cgerc.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cgeru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cgeru.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_chbmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_chemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_chemm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_chemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_chemv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cher.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cher2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cher2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cher2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cher2k.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cherk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cherk.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_chpmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_chpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_chpr.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_chpr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_chpr2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cscal.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_csscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_csscal.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_cswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_cswap.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_csymm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_csymm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_csyr2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_csyr2k.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_csyrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_csyrk.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctbmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctbsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctbsv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctpmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctpsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctpsv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctrmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctrmm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctrmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctrmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctrsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctrsm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ctrsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ctrsv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dasum.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_daxpy.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dcopy.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ddot.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dgbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dgbmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dgemm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dgemv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dger.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dnrm2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_drot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_drot.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_drotg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_drotg.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_drotm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_drotmg.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsbmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dscal.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsdot.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dspmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dspr.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dspr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dspr2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dswap.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsymm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsymm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsymv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsymv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsyr.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsyr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsyr2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsyr2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsyr2k.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dsyrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dsyrk.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtbmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtbsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtbsv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtpmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtpsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtpsv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtrmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtrmm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtrmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtrmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtrsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtrsm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dtrsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dtrsv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dzasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dzasum.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_dznrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_dznrm2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_f77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_f77.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_icamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_icamax.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_idamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_idamax.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_isamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_isamax.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_izamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_izamax.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sasum.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_saxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_saxpy.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_scasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_scasum.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_scnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_scnrm2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_scopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_scopy.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sdot.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sdsdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sdsdot.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sgbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sgbmv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sgemm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sgemv.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sger.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_snrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_snrm2.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_srot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_srot.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_srotg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_srotg.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_srotm.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_sspr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_sspr.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_ssyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_ssyr.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_zher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_zher.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cblas_zhpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cblas_zhpr.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cdotcsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cdotcsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/cdotusub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/cdotusub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/dasumsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/dasumsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/ddotsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/ddotsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/dnrm2sub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/dnrm2sub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/dsdotsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/dsdotsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/dzasumsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/dzasumsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/dznrm2sub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/dznrm2sub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/icamaxsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/icamaxsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/idamaxsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/idamaxsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/isamaxsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/isamaxsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/izamaxsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/izamaxsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/sasumsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/sasumsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/scasumsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/scasumsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/scnrm2sub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/scnrm2sub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/sdotsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/sdotsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/sdsdotsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/sdsdotsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/snrm2sub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/snrm2sub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/zdotcsub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/zdotcsub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/cblas/zdotusub.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/cblas/zdotusub.f -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/README -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jchuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jchuff.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jchuff.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jcinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jcinit.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jconfig.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jdct.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jdhuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jdhuff.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jdhuff.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jerror.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jerror.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jinclude.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jpegint.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jutils.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libjpeg/jversion.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/LICENSE -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/README -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/png.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/png.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngconf.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngdebug.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngerror.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngget.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pnginfo.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngmem.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngpread.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngpriv.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngread.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngrio.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngrtran.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngrutil.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngset.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngstruct.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngtrans.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngwio.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngwrite.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngwtran.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/libpng/pngwutil.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/README -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/adler32.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/compress.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/crc32.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/crc32.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/deflate.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/deflate.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/gzclose.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/gzguts.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/gzlib.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/gzread.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/gzwrite.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/infback.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/inffast.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/inffast.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/inffixed.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/inflate.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/inflate.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/inftrees.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/inftrees.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/trees.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/trees.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/uncompr.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/zconf.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/zlib.h -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/zutil.c -------------------------------------------------------------------------------- /libs/dlib/dlib/external/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/external/zlib/zutil.h -------------------------------------------------------------------------------- /libs/dlib/dlib/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/filtering.h -------------------------------------------------------------------------------- /libs/dlib/dlib/filtering/kalman_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/filtering/kalman_filter.h -------------------------------------------------------------------------------- /libs/dlib/dlib/filtering/rls_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/filtering/rls_filter.h -------------------------------------------------------------------------------- /libs/dlib/dlib/float_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/float_details.h -------------------------------------------------------------------------------- /libs/dlib/dlib/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/fstream -------------------------------------------------------------------------------- /libs/dlib/dlib/general_hash/count_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/general_hash/count_bits.h -------------------------------------------------------------------------------- /libs/dlib/dlib/general_hash/general_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/general_hash/general_hash.h -------------------------------------------------------------------------------- /libs/dlib/dlib/general_hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/general_hash/hash.h -------------------------------------------------------------------------------- /libs/dlib/dlib/general_hash/murmur_hash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/general_hash/murmur_hash3.h -------------------------------------------------------------------------------- /libs/dlib/dlib/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/geometry.h -------------------------------------------------------------------------------- /libs/dlib/dlib/geometry/drectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/geometry/drectangle.h -------------------------------------------------------------------------------- /libs/dlib/dlib/geometry/point_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/geometry/point_transforms.h -------------------------------------------------------------------------------- /libs/dlib/dlib/geometry/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/geometry/rectangle.h -------------------------------------------------------------------------------- /libs/dlib/dlib/geometry/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/geometry/vector.h -------------------------------------------------------------------------------- /libs/dlib/dlib/geometry/vector_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/geometry/vector_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph/graph_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph/graph_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph_cuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph_cuts.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph_cuts/graph_labeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph_cuts/graph_labeler.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph_cuts/min_cut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph_cuts/min_cut.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph_utils/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph_utils/graph_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph_utils/sample_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph_utils/sample_pair.h -------------------------------------------------------------------------------- /libs/dlib/dlib/graph_utils_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/graph_utils_threaded.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_core.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_core/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_core/windows.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_core/xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_core/xlib.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/base_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/base_widgets.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/drawable.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/drawable.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/fonts.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/fonts.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/nativefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/nativefont.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/style.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/style.h -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/widgets.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/gui_widgets/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/gui_widgets/widgets.h -------------------------------------------------------------------------------- /libs/dlib/dlib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/hash.h -------------------------------------------------------------------------------- /libs/dlib/dlib/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/hash_map.h -------------------------------------------------------------------------------- /libs/dlib/dlib/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/hash_set.h -------------------------------------------------------------------------------- /libs/dlib/dlib/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/hash_table.h -------------------------------------------------------------------------------- /libs/dlib/dlib/http_client/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/http_client/http_client.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/http_client/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/http_client/http_client.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_io.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_keypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_keypoint.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_keypoint/hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_keypoint/hog.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_keypoint/poly_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_keypoint/poly_image.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_keypoint/surf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_keypoint/surf.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_loader/image_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_loader/image_loader.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_loader/jpeg_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_loader/jpeg_loader.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_loader/load_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_loader/load_image.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_loader/png_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_loader/png_loader.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/image_loader/png_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_loader/png_loader.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_processing.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_saver/dng_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_saver/dng_shared.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_saver/image_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_saver/image_saver.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_saver/save_jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_saver/save_jpeg.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/image_saver/save_jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_saver/save_jpeg.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_saver/save_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_saver/save_png.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/image_saver/save_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_saver/save_png.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_transforms.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_transforms/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_transforms/draw.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_transforms/fhog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_transforms/fhog.h -------------------------------------------------------------------------------- /libs/dlib/dlib/image_transforms/lbp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/image_transforms/lbp.h -------------------------------------------------------------------------------- /libs/dlib/dlib/interfaces/enumerable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/interfaces/enumerable.h -------------------------------------------------------------------------------- /libs/dlib/dlib/interfaces/map_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/interfaces/map_pair.h -------------------------------------------------------------------------------- /libs/dlib/dlib/interfaces/remover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/interfaces/remover.h -------------------------------------------------------------------------------- /libs/dlib/dlib/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/iomanip -------------------------------------------------------------------------------- /libs/dlib/dlib/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/iosfwd -------------------------------------------------------------------------------- /libs/dlib/dlib/iosockstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/iosockstream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/iosockstream/iosockstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/iosockstream/iosockstream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/iostream -------------------------------------------------------------------------------- /libs/dlib/dlib/is_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/is_kind.h -------------------------------------------------------------------------------- /libs/dlib/dlib/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/istream -------------------------------------------------------------------------------- /libs/dlib/dlib/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/java/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/java/cmake_swig_jni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/java/cmake_swig_jni -------------------------------------------------------------------------------- /libs/dlib/dlib/java/java_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/java/java_array.h -------------------------------------------------------------------------------- /libs/dlib/dlib/java/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/java/run_test.sh -------------------------------------------------------------------------------- /libs/dlib/dlib/java/swig_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/java/swig_api.h -------------------------------------------------------------------------------- /libs/dlib/dlib/java/swig_test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/java/swig_test.java -------------------------------------------------------------------------------- /libs/dlib/dlib/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/linker.h -------------------------------------------------------------------------------- /libs/dlib/dlib/linker/linker_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/linker/linker_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/linker/linker_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/linker/linker_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/locale -------------------------------------------------------------------------------- /libs/dlib/dlib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/logger.h -------------------------------------------------------------------------------- /libs/dlib/dlib/logger/logger_config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/logger/logger_config_file.h -------------------------------------------------------------------------------- /libs/dlib/dlib/logger/logger_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/logger/logger_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/logger/logger_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/logger/logger_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/lsh.h -------------------------------------------------------------------------------- /libs/dlib/dlib/lsh/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/lsh/hashes.h -------------------------------------------------------------------------------- /libs/dlib/dlib/lsh/hashes_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/lsh/hashes_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/lsh/projection_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/lsh/projection_hash.h -------------------------------------------------------------------------------- /libs/dlib/dlib/lz77_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/lz77_buffer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/lzp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/lzp_buffer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/manifold_regularization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/manifold_regularization.h -------------------------------------------------------------------------------- /libs/dlib/dlib/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/map.h -------------------------------------------------------------------------------- /libs/dlib/dlib/map/map_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/map/map_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/map/map_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/map/map_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/map/map_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/map/map_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matlab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matlab/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/matlab/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matlab/README.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/matlab/call_matlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matlab/call_matlab.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matlab/cmake_mex_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matlab/cmake_mex_wrapper -------------------------------------------------------------------------------- /libs/dlib/dlib/matlab/example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matlab/example.m -------------------------------------------------------------------------------- /libs/dlib/dlib/matlab/mex_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matlab/mex_wrapper.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/matlab/subprocess_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matlab/subprocess_stream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/cblas_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/cblas_constants.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/fortran_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/fortran_id.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/gees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/gees.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/geev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/geev.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/geqrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/geqrf.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/gesdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/gesdd.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/gesvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/gesvd.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/getrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/getrf.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/ormqr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/ormqr.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/potrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/potrf.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/syev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/syev.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/lapack/syevr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/lapack/syevr.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_assign.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_assign_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_assign_fwd.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_cholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_cholesky.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_conj_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_conj_trans.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_conv.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_data_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_data_layout.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_default_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_default_mul.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_eigenvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_eigenvalue.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_exp.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_expressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_expressions.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_fft.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_fwd.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_la.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_la.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_la_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_la_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_lu.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_mat.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_op.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_qr.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_subexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_subexp.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_trsm.h -------------------------------------------------------------------------------- /libs/dlib/dlib/matrix/matrix_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/matrix/matrix_utilities.h -------------------------------------------------------------------------------- /libs/dlib/dlib/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/md5.h -------------------------------------------------------------------------------- /libs/dlib/dlib/md5/md5_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/md5/md5_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/md5/md5_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/md5/md5_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/md5/md5_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/md5/md5_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/member_function_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/member_function_pointer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/memory_manager.h -------------------------------------------------------------------------------- /libs/dlib/dlib/memory_manager_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/memory_manager_global.h -------------------------------------------------------------------------------- /libs/dlib/dlib/memory_manager_stateless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/memory_manager_stateless.h -------------------------------------------------------------------------------- /libs/dlib/dlib/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/misc_api.h -------------------------------------------------------------------------------- /libs/dlib/dlib/misc_api/misc_api_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/misc_api/misc_api_shared.h -------------------------------------------------------------------------------- /libs/dlib/dlib/misc_api/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/misc_api/posix.h -------------------------------------------------------------------------------- /libs/dlib/dlib/misc_api/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/misc_api/windows.h -------------------------------------------------------------------------------- /libs/dlib/dlib/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/mlp.h -------------------------------------------------------------------------------- /libs/dlib/dlib/mlp/mlp_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/mlp/mlp_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/mlp/mlp_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/mlp/mlp_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/mlp/mlp_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/mlp/mlp_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/dlib/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/noncopyable.h -------------------------------------------------------------------------------- /libs/dlib/dlib/numeric_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/numeric_constants.h -------------------------------------------------------------------------------- /libs/dlib/dlib/numerical_integration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/numerical_integration.h -------------------------------------------------------------------------------- /libs/dlib/dlib/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/opencv.h -------------------------------------------------------------------------------- /libs/dlib/dlib/opencv/cv_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/opencv/cv_image.h -------------------------------------------------------------------------------- /libs/dlib/dlib/opencv/cv_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/opencv/cv_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/opencv/to_open_cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/opencv/to_open_cv.h -------------------------------------------------------------------------------- /libs/dlib/dlib/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/optimization.h -------------------------------------------------------------------------------- /libs/dlib/dlib/optimization/elastic_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/optimization/elastic_net.h -------------------------------------------------------------------------------- /libs/dlib/dlib/optimization/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/optimization/optimization.h -------------------------------------------------------------------------------- /libs/dlib/dlib/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/ostream -------------------------------------------------------------------------------- /libs/dlib/dlib/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/pipe.h -------------------------------------------------------------------------------- /libs/dlib/dlib/pipe/pipe_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/pipe/pipe_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/pipe/pipe_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/pipe/pipe_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/pixel.h -------------------------------------------------------------------------------- /libs/dlib/dlib/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/platform.h -------------------------------------------------------------------------------- /libs/dlib/dlib/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/python.h -------------------------------------------------------------------------------- /libs/dlib/dlib/python/boost_python_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/python/boost_python_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/python/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/python/numpy.h -------------------------------------------------------------------------------- /libs/dlib/dlib/python/numpy_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/python/numpy_image.h -------------------------------------------------------------------------------- /libs/dlib/dlib/python/pyassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/python/pyassert.h -------------------------------------------------------------------------------- /libs/dlib/dlib/python/serialize_pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/python/serialize_pickle.h -------------------------------------------------------------------------------- /libs/dlib/dlib/quantum_computing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/quantum_computing.h -------------------------------------------------------------------------------- /libs/dlib/dlib/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/queue.h -------------------------------------------------------------------------------- /libs/dlib/dlib/queue/queue_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/queue/queue_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/queue/queue_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/queue/queue_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/dlib/queue/queue_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/queue/queue_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/dlib/queue/queue_sort_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/queue/queue_sort_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/queue/queue_sort_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/queue/queue_sort_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/rand.h -------------------------------------------------------------------------------- /libs/dlib/dlib/rand/mersenne_twister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/rand/mersenne_twister.h -------------------------------------------------------------------------------- /libs/dlib/dlib/rand/rand_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/rand/rand_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/rand/rand_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/rand/rand_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/ref.h -------------------------------------------------------------------------------- /libs/dlib/dlib/reference_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/reference_counter.h -------------------------------------------------------------------------------- /libs/dlib/dlib/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/revision.h -------------------------------------------------------------------------------- /libs/dlib/dlib/revision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/revision.h.in -------------------------------------------------------------------------------- /libs/dlib/dlib/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sequence.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sequence/sequence_sort_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sequence/sequence_sort_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sequence/sequence_sort_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sequence/sequence_sort_2.h -------------------------------------------------------------------------------- /libs/dlib/dlib/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/serialize.h -------------------------------------------------------------------------------- /libs/dlib/dlib/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/server.h -------------------------------------------------------------------------------- /libs/dlib/dlib/server/server_http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/server/server_http.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/server/server_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/server/server_http.h -------------------------------------------------------------------------------- /libs/dlib/dlib/server/server_iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/server/server_iostream.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/server/server_iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/server/server_iostream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/server/server_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/server/server_kernel.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/server/server_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/server/server_kernel.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set/set_compare_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set/set_compare_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set/set_compare_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set/set_compare_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set/set_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set/set_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set/set_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set/set_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set/set_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set/set_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/set_utils/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/set_utils/set_utils.h -------------------------------------------------------------------------------- /libs/dlib/dlib/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/simd.h -------------------------------------------------------------------------------- /libs/dlib/dlib/simd/simd4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/simd/simd4f.h -------------------------------------------------------------------------------- /libs/dlib/dlib/simd/simd4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/simd/simd4i.h -------------------------------------------------------------------------------- /libs/dlib/dlib/simd/simd8f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/simd/simd8f.h -------------------------------------------------------------------------------- /libs/dlib/dlib/simd/simd8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/simd/simd8i.h -------------------------------------------------------------------------------- /libs/dlib/dlib/simd/simd_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/simd/simd_check.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sliding_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sliding_buffer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/smart_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/smart_pointers.h -------------------------------------------------------------------------------- /libs/dlib/dlib/smart_pointers/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/smart_pointers/scoped_ptr.h -------------------------------------------------------------------------------- /libs/dlib/dlib/smart_pointers/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/smart_pointers/shared_ptr.h -------------------------------------------------------------------------------- /libs/dlib/dlib/smart_pointers/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/smart_pointers/weak_ptr.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sockets.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sockets/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sockets/posix.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sockets/sockets_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sockets/sockets_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sockets/sockets_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sockets/sockets_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sockets/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sockets/windows.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sockstreambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sockstreambuf.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sort.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sparse_vector.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sqlite.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sqlite/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sqlite/sqlite.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sqlite/sqlite_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sqlite/sqlite_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sqlite/sqlite_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sqlite/sqlite_tools.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sstream -------------------------------------------------------------------------------- /libs/dlib/dlib/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/stack.h -------------------------------------------------------------------------------- /libs/dlib/dlib/stack/stack_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/stack/stack_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/stack/stack_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/stack/stack_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/dlib/stack_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/stack_trace.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/stack_trace.h -------------------------------------------------------------------------------- /libs/dlib/dlib/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/static_map.h -------------------------------------------------------------------------------- /libs/dlib/dlib/static_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/static_set.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/cca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/cca.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/cca_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/cca_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/dpca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/dpca.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/dpca_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/dpca_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/lda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/lda.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/lda_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/lda_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/sammon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/sammon.h -------------------------------------------------------------------------------- /libs/dlib/dlib/statistics/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/statistics/statistics.h -------------------------------------------------------------------------------- /libs/dlib/dlib/std_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/std_allocator.h -------------------------------------------------------------------------------- /libs/dlib/dlib/stl_checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/stl_checked.h -------------------------------------------------------------------------------- /libs/dlib/dlib/stl_checked/std_vector_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/stl_checked/std_vector_c.h -------------------------------------------------------------------------------- /libs/dlib/dlib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string.h -------------------------------------------------------------------------------- /libs/dlib/dlib/string/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string/cassert -------------------------------------------------------------------------------- /libs/dlib/dlib/string/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string/iomanip -------------------------------------------------------------------------------- /libs/dlib/dlib/string/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string/iosfwd -------------------------------------------------------------------------------- /libs/dlib/dlib/string/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string/iostream -------------------------------------------------------------------------------- /libs/dlib/dlib/string/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string/locale -------------------------------------------------------------------------------- /libs/dlib/dlib/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string/string.h -------------------------------------------------------------------------------- /libs/dlib/dlib/string/string_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/string/string_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/active_learning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/active_learning.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/assignment_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/assignment_function.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/empirical_kernel_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/empirical_kernel_map.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/feature_ranking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/feature_ranking.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/function.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/function_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/function_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kcentroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kcentroid.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kcentroid_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kcentroid_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kcentroid_overloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kcentroid_overloads.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kernel.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kernel_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kernel_matrix.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kkmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kkmeans.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/kkmeans_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/kkmeans_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/krls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/krls.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/krls_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/krls_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/krr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/krr_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/krr_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/krr_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/multiclass_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/multiclass_tools.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/null_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/null_df.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/null_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/null_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/null_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/null_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/one_vs_all_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/one_vs_all_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/one_vs_one_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/one_vs_one_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/pegasos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/pegasos.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/pegasos_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/pegasos_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/ranking_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/ranking_tools.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rbf_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rbf_network.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rbf_network_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rbf_network_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/reduced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/reduced.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/reduced_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/reduced_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rls.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rls_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rls_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/roc_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/roc_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/roc_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/roc_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rr_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rr_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rr_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rvm.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/rvm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/rvm_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/sequence_labeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/sequence_labeler.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/sequence_segmenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/sequence_segmenter.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/sort_basis_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/sort_basis_vectors.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/sparse_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/sparse_kernel.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/sparse_vector.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_c_ekm_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_c_ekm_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_c_linear_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_c_linear_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_c_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_c_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_nu_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_nu_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_one_class_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_one_class_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_rank_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_rank_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_threaded.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svm_threaded_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svm_threaded_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svr_linear_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svr_linear_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svr_trainer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm/svr_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm/svr_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/svm_threaded.h -------------------------------------------------------------------------------- /libs/dlib/dlib/sync_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/sync_extension.h -------------------------------------------------------------------------------- /libs/dlib/dlib/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/test/active_learning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/active_learning.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/any.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/any_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/any_function.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/array.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/array2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/array2d.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/base64.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/bayes_nets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/bayes_nets.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/bigint.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/binary_search_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/binary_search_tree.h -------------------------------------------------------------------------------- /libs/dlib/dlib/test/bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/bridge.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/bsp.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/byte_orderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/byte_orderer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/cca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/cca.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/checkerboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/checkerboard.h -------------------------------------------------------------------------------- /libs/dlib/dlib/test/clustering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/clustering.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/cmd_line_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/cmd_line_parser.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/cmd_line_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/cmd_line_parser.h -------------------------------------------------------------------------------- /libs/dlib/dlib/test/compress_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/compress_stream.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/conditioning_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/conditioning_class.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/conditioning_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/conditioning_class.h -------------------------------------------------------------------------------- /libs/dlib/dlib/test/config_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/config_reader.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/crc32.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/create_iris_datafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/create_iris_datafile.h -------------------------------------------------------------------------------- /libs/dlib/dlib/test/cublas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/cublas.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/data_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/data_io.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/directed_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/directed_graph.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/discriminant_pca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/discriminant_pca.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/disjoint_subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/disjoint_subsets.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/dnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/dnn.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/ekm_and_lisf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/ekm_and_lisf.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/elastic_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/elastic_net.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/entropy_coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/entropy_coder.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/example.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/example_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/example_args.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/face.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/fft.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/fhog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/fhog.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/filtering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/filtering.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/geometry.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/graph.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/graph_cuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/graph_cuts.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/graph_labeler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/graph_labeler.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/gui/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/test/gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/gui/main.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/hash.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/hash_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/hash_map.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/hash_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/hash_set.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/hash_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/hash_table.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/hog_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/hog_image.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/image.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/iosockstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/iosockstream.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/is_same_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/is_same_object.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/kcentroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/kcentroid.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/kernel_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/kernel_matrix.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/kmeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/kmeans.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/learning_to_track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/learning_to_track.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/least_squares.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/least_squares.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/lspi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/lspi.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/lz77_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/lz77_buffer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/main.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/map.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix2.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix3.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix4.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix_chol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix_chol.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix_eig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix_eig.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix_lu.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/matrix_qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/matrix_qr.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/max_sum_submatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/max_sum_submatrix.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/md5.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/metaprogramming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/metaprogramming.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/mpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/mpc.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/object_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/object_detector.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/oca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/oca.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/one_vs_all_trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/one_vs_all_trainer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/one_vs_one_trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/one_vs_one_trainer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/opt_qp_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/opt_qp_solver.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/optimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/optimization.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/parallel_for.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/parse.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/pipe.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/pixel.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/probabilistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/probabilistic.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/pyramid_down.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/pyramid_down.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/queue.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/rand.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/ranking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/ranking.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/read_write_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/read_write_mutex.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/reference_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/reference_counter.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/rls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/rls.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sammon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sammon.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/scan_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/scan_image.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sequence.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sequence_labeler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sequence_labeler.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sequence_segmenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sequence_segmenter.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/serialize.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/set.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sldf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sldf.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sliding_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sliding_buffer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/smart_pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/smart_pointers.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sockets.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sockets2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sockets2.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sockstreambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sockstreambuf.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/sparse_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/sparse_vector.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/stack.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/static_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/static_map.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/static_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/static_set.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/statistics.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/std_vector_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/std_vector_c.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/string.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/svm.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/svm_c_linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/svm_c_linear.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/svm_c_linear_dcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/svm_c_linear_dcd.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/svm_struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/svm_struct.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/svr_linear_trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/svr_linear_trainer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/tester.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/tester.h -------------------------------------------------------------------------------- /libs/dlib/dlib/test/thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/thread_pool.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/threads.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/timer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/tokenizer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/tools/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/dlib/test/trust_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/trust_region.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/tuple.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/type_safe_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/type_safe_union.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/test/vectorstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/test/vectorstream.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/async.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/async.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/async_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/async_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/posix.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/rmutex_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/rmutex_extension.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/threads_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/threads_kernel.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/threads_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/threads_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/threads_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/threads_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/dlib/threads/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/threads/windows.h -------------------------------------------------------------------------------- /libs/dlib/dlib/time_this.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/time_this.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timeout.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timeout/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timeout/timeout.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timeout/timeout_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timeout/timeout_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timer/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timer/timer.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timer/timer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timer/timer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timer/timer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timer/timer_heavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timer/timer_heavy.h -------------------------------------------------------------------------------- /libs/dlib/dlib/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/timing.h -------------------------------------------------------------------------------- /libs/dlib/dlib/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/tokenizer.h -------------------------------------------------------------------------------- /libs/dlib/dlib/travis/before-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/travis/before-install.sh -------------------------------------------------------------------------------- /libs/dlib/dlib/travis/build-and-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/travis/build-and-test.sh -------------------------------------------------------------------------------- /libs/dlib/dlib/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/tuple.h -------------------------------------------------------------------------------- /libs/dlib/dlib/tuple/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/tuple/tuple.h -------------------------------------------------------------------------------- /libs/dlib/dlib/tuple/tuple_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/tuple/tuple_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/type_safe_union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/type_safe_union.h -------------------------------------------------------------------------------- /libs/dlib/dlib/uintn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/uintn.h -------------------------------------------------------------------------------- /libs/dlib/dlib/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/unicode.h -------------------------------------------------------------------------------- /libs/dlib/dlib/unicode/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/unicode/unicode.cpp -------------------------------------------------------------------------------- /libs/dlib/dlib/unicode/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/unicode/unicode.h -------------------------------------------------------------------------------- /libs/dlib/dlib/unicode/unicode_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/unicode/unicode_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dlib/unordered_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/unordered_pair.h -------------------------------------------------------------------------------- /libs/dlib/dlib/vectorstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/vectorstream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/vectorstream/unserialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/vectorstream/unserialize.h -------------------------------------------------------------------------------- /libs/dlib/dlib/vectorstream/vectorstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/vectorstream/vectorstream.h -------------------------------------------------------------------------------- /libs/dlib/dlib/windows_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/windows_magic.h -------------------------------------------------------------------------------- /libs/dlib/dlib/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/dlib/xml_parser.h -------------------------------------------------------------------------------- /libs/dlib/lib/dlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/lib/dlib.lib -------------------------------------------------------------------------------- /libs/dlib/lib/dlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/dlib/lib/dlibd.lib -------------------------------------------------------------------------------- /libs/libpng/lib/libpng16.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/libpng/lib/libpng16.exp -------------------------------------------------------------------------------- /libs/libpng/lib/libpng16.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/libpng/lib/libpng16.lib -------------------------------------------------------------------------------- /libs/libpng/lib/libpng16_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/libs/libpng/lib/libpng16_static.lib -------------------------------------------------------------------------------- /logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/logger.cpp -------------------------------------------------------------------------------- /logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/logger.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/main.cpp -------------------------------------------------------------------------------- /peak_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/peak_detection.h -------------------------------------------------------------------------------- /plane_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/plane_t.h -------------------------------------------------------------------------------- /quadtree_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/quadtree_t.cpp -------------------------------------------------------------------------------- /quadtree_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/quadtree_t.h -------------------------------------------------------------------------------- /reader_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/reader_file.h -------------------------------------------------------------------------------- /sat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/sat.h -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/settings.h -------------------------------------------------------------------------------- /voting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/voting.cpp -------------------------------------------------------------------------------- /voting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardovera/D-KHT/HEAD/voting.h --------------------------------------------------------------------------------