├── .gitignore ├── README.md ├── addon_config.mk ├── example_classification ├── .DS_Store ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── data │ │ └── .gitkeep │ └── example_classificationDebug.app │ │ └── Contents │ │ ├── Frameworks │ │ └── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ │ ├── copy.h │ │ │ │ ├── extrude.h │ │ │ │ ├── glsmap.h │ │ │ │ ├── glsmapint.h │ │ │ │ ├── glut.h │ │ │ │ ├── glutbitmap.h │ │ │ │ ├── glutf90.h │ │ │ │ ├── glutstroke.h │ │ │ │ ├── gutil.h │ │ │ │ ├── intersect.h │ │ │ │ ├── port.h │ │ │ │ ├── rot.h │ │ │ │ ├── segment.h │ │ │ │ ├── tube.h │ │ │ │ ├── tube_gc.h │ │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ │ ├── Caution.tiff │ │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── blankCursor.tiff │ │ │ │ ├── bottomCursor.tiff │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ ├── crossCursor.tiff │ │ │ │ ├── cycleCursor.tiff │ │ │ │ ├── destroyCursor.tiff │ │ │ │ ├── fingerCursor.tiff │ │ │ │ ├── helpCursor.tiff │ │ │ │ ├── leftCursor.tiff │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ ├── rightCursor.tiff │ │ │ │ ├── sprayCursor.tiff │ │ │ │ ├── topCursor.tiff │ │ │ │ ├── topleftCursor.tiff │ │ │ │ ├── toprightCursor.tiff │ │ │ │ ├── upDownCursor.tiff │ │ │ │ └── waitCursor.tiff │ │ │ └── Current │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── example_classificationDebug │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon-debug.icns ├── config.make ├── example_classification.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── example_classification.xccheckout │ │ └── xcuserdata │ │ │ └── gene.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example_classification Debug.xcscheme │ │ │ └── example_classification Release.xcscheme │ └── xcuserdata │ │ └── gene.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example_classification_threaded ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example_classification_threaded.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_classification_threaded Debug.xcscheme │ │ └── example_classification_threaded Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example_clustering ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example_clustering.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_clustering Debug.xcscheme │ │ └── example_clustering Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example_clustering_threaded ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example_clustering_threaded.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_clustering_threaded Debug.xcscheme │ │ └── example_clustering_threaded Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example_pca ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── myPca.dat ├── config.make ├── example_pca.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_pca Debug.xcscheme │ │ └── example_pca Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example_regression ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example_regression.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_regression Debug.xcscheme │ │ └── example_regression Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example_regression_threaded ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── data │ │ └── .gitkeep │ └── example_regression_threadedDebug.app │ │ └── Contents │ │ ├── Frameworks │ │ └── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ │ ├── copy.h │ │ │ │ ├── extrude.h │ │ │ │ ├── glsmap.h │ │ │ │ ├── glsmapint.h │ │ │ │ ├── glut.h │ │ │ │ ├── glutbitmap.h │ │ │ │ ├── glutf90.h │ │ │ │ ├── glutstroke.h │ │ │ │ ├── gutil.h │ │ │ │ ├── intersect.h │ │ │ │ ├── port.h │ │ │ │ ├── rot.h │ │ │ │ ├── segment.h │ │ │ │ ├── tube.h │ │ │ │ ├── tube_gc.h │ │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ │ ├── Caution.tiff │ │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── blankCursor.tiff │ │ │ │ ├── bottomCursor.tiff │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ ├── crossCursor.tiff │ │ │ │ ├── cycleCursor.tiff │ │ │ │ ├── destroyCursor.tiff │ │ │ │ ├── fingerCursor.tiff │ │ │ │ ├── helpCursor.tiff │ │ │ │ ├── leftCursor.tiff │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ ├── rightCursor.tiff │ │ │ │ ├── sprayCursor.tiff │ │ │ │ ├── topCursor.tiff │ │ │ │ ├── topleftCursor.tiff │ │ │ │ ├── toprightCursor.tiff │ │ │ │ ├── upDownCursor.tiff │ │ │ │ └── waitCursor.tiff │ │ │ └── Current │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── example_regression_threadedDebug │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon-debug.icns ├── config.make ├── example_regression_threaded.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── example_regression_threaded.xccheckout │ │ └── xcuserdata │ │ │ └── gene.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example_regression_threaded Debug.xcscheme │ │ │ └── example_regression_threaded Release.xcscheme │ └── xcuserdata │ │ └── gene.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── libs └── dlib │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.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 │ ├── array2d.h │ ├── array2d │ ├── 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 │ ├── bound_function_pointer.h │ ├── bound_function_pointer │ ├── bound_function_pointer_kernel_1.h │ ├── bound_function_pointer_kernel_abstract.h │ └── bound_function_pointer_kernel_c.h │ ├── bridge.h │ ├── bridge │ ├── bridge.h │ └── bridge_abstract.h │ ├── bsp.h │ ├── byte_orderer.h │ ├── byte_orderer │ ├── byte_orderer_kernel_1.h │ └── byte_orderer_kernel_abstract.h │ ├── cassert │ ├── clustering.h │ ├── cmake │ ├── cmake_find_blas.txt │ ├── cmd_line_parser.h │ ├── cmd_line_parser │ ├── cmd_line_parser_check_1.h │ ├── cmd_line_parser_check_abstract.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 │ ├── cmd_line_parser_print_abstract.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_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 │ ├── 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 │ ├── 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_include_path_tutorial.txt │ ├── 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 │ ├── filtering.h │ ├── filtering │ ├── kalman_filter.h │ ├── kalman_filter_abstract.h │ ├── rls_filter.h │ └── rls_filter_abstract.h │ ├── fstream │ ├── general_hash │ ├── general_hash.h │ ├── hash.h │ ├── hash_abstract.h │ ├── murmur_hash3.h │ └── murmur_hash3_abstract.h │ ├── geometry.h │ ├── geometry │ ├── border_enumerator.h │ ├── border_enumerator_abstract.h │ ├── rectangle.h │ ├── rectangle_abstract.h │ ├── vector.h │ └── vector_abstract.h │ ├── graph.h │ ├── graph │ ├── graph_kernel_1.h │ └── graph_kernel_abstract.h │ ├── graph_utils.h │ ├── graph_utils │ ├── graph_utils.h │ └── graph_utils_abstract.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 │ ├── build_separable_poly_filters.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 │ ├── detection_template_tools.h │ ├── detection_template_tools_abstract.h │ ├── object_detector.h │ ├── object_detector_abstract.h │ ├── scan_image.h │ ├── scan_image_abstract.h │ ├── scan_image_pyramid.h │ ├── scan_image_pyramid_abstract.h │ ├── scan_image_pyramid_tools.h │ └── scan_image_pyramid_tools_abstract.h │ ├── image_saver │ ├── dng_shared.h │ ├── image_saver.h │ ├── image_saver_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 │ ├── 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 │ ├── morphological_operations.h │ ├── morphological_operations_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 │ ├── iostream │ ├── is_kind.h │ ├── istream │ ├── linker.h │ ├── linker │ ├── linker_kernel_1.cpp │ ├── linker_kernel_1.h │ ├── linker_kernel_abstract.h │ └── linker_kernel_c.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 │ ├── 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 │ ├── function_objects.h │ ├── function_objects_abstract.h │ ├── graph_creation.h │ ├── graph_creation_abstract.h │ ├── linear_manifold_regularizer.h │ ├── linear_manifold_regularizer_abstract.h │ ├── sample_pair.h │ └── sample_pair_abstract.h │ ├── map.h │ ├── map │ ├── map_kernel_1.h │ ├── map_kernel_abstract.h │ └── map_kernel_c.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_fwd.h │ ├── matrix_la.h │ ├── matrix_la_abstract.h │ ├── matrix_lu.h │ ├── matrix_math_functions.h │ ├── matrix_math_functions_abstract.h │ ├── matrix_op.h │ ├── matrix_qr.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 │ └── member_function_pointer_kernel_c.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 │ ├── posix.h │ └── windows.h │ ├── mlp.h │ ├── mlp │ ├── mlp_kernel_1.h │ ├── mlp_kernel_abstract.h │ └── mlp_kernel_c.h │ ├── noncopyable.h │ ├── opencv.h │ ├── opencv │ ├── cv_image.h │ └── cv_image_abstract.h │ ├── optimization.h │ ├── optimization │ ├── 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 │ ├── 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 │ ├── 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 │ ├── release_build_by_default │ ├── revision.h │ ├── 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_1.h │ ├── server_http_abstract.h │ ├── server_iostream_1.h │ ├── server_iostream_abstract.h │ ├── server_kernel_1.h │ ├── server_kernel_abstract.h │ └── server_kernel_c.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 │ ├── 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 │ ├── scoped_ptr_abstract.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_kernel_1.cpp │ ├── sockstreambuf_kernel_1.h │ ├── sockstreambuf_kernel_2.cpp │ ├── sockstreambuf_kernel_2.h │ └── sockstreambuf_kernel_abstract.h │ ├── sort.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 │ ├── dpca.h │ ├── dpca_abstract.h │ ├── image_feature_sampling.h │ ├── image_feature_sampling_abstract.h │ ├── random_subset_selector.h │ ├── random_subset_selector_abstract.h │ ├── statistics.h │ └── statistics_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 │ ├── assignment_function.h │ ├── assignment_function_abstract.h │ ├── cross_validate_assignment_trainer.h │ ├── cross_validate_assignment_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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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_object_detection_trainer.h │ ├── structural_object_detection_trainer_abstract.h │ ├── structural_sequence_labeling_trainer.h │ ├── structural_sequence_labeling_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_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 │ ├── svm.h │ ├── svm_abstract.h │ ├── svm_c_ekm_trainer.h │ ├── svm_c_ekm_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_threaded.h │ ├── svm_threaded_abstract.h │ ├── svr_trainer.h │ └── svr_trainer_abstract.h │ ├── svm_threaded.h │ ├── sync_extension.h │ ├── sync_extension │ ├── sync_extension_kernel_1.h │ └── sync_extension_kernel_abstract.h │ ├── test │ ├── CMakeLists.txt │ ├── 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 │ │ └── vector.cpp │ ├── bridge.cpp │ ├── byte_orderer.cpp │ ├── checkerboard.h │ ├── 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 │ ├── crc32.cpp │ ├── create_iris_datafile.cpp │ ├── create_iris_datafile.h │ ├── data_io.cpp │ ├── directed_graph.cpp │ ├── discriminant_pca.cpp │ ├── disjoint_subsets.cpp │ ├── ekm_and_lisf.cpp │ ├── empirical_kernel_map.cpp │ ├── entropy_coder.cpp │ ├── entropy_encoder_model.cpp │ ├── example.cpp │ ├── example_args.cpp │ ├── filtering.cpp │ ├── find_max_factor_graph_nmplp.cpp │ ├── find_max_factor_graph_viterbi.cpp │ ├── geometry.cpp │ ├── graph.cpp │ ├── gui │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── hash.cpp │ ├── hash_map.cpp │ ├── hash_set.cpp │ ├── hash_table.cpp │ ├── hog_image.cpp │ ├── image.cpp │ ├── is_same_object.cpp │ ├── kcentroid.cpp │ ├── kernel_matrix.cpp │ ├── kmeans.cpp │ ├── least_squares.cpp │ ├── linear_manifold_regularizer.cpp │ ├── lz77_buffer.cpp │ ├── main.cpp │ ├── makefile │ ├── 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 │ ├── multithreaded_object.cpp │ ├── object_detector.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 │ ├── pipe.cpp │ ├── pixel.cpp │ ├── probabilistic.cpp │ ├── pyramid_down.cpp │ ├── queue.cpp │ ├── rand.cpp │ ├── read_write_mutex.cpp │ ├── reference_counter.cpp │ ├── rls.cpp │ ├── scan_image.cpp │ ├── sequence.cpp │ ├── sequence_labeler.cpp │ ├── serialize.cpp │ ├── set.cpp │ ├── sldf.cpp │ ├── sliding_buffer.cpp │ ├── smart_pointers.cpp │ ├── sockets.cpp │ ├── sockets2.cpp │ ├── sockstreambuf.cpp │ ├── stack.cpp │ ├── static_map.cpp │ ├── static_set.cpp │ ├── statistics.cpp │ ├── std_vector_c.cpp │ ├── string.cpp │ ├── svm.cpp │ ├── svm_c_linear.cpp │ ├── svm_multiclass_linear.cpp │ ├── svm_struct.cpp │ ├── symmetric_matrix_cache.cpp │ ├── tester.cpp │ ├── tester.h │ ├── thread_pool.cpp │ ├── threads.cpp │ ├── timer.cpp │ ├── tokenizer.cpp │ ├── trust_region.cpp │ ├── tuple.cpp │ └── type_safe_union.cpp │ ├── threads.h │ ├── threads │ ├── 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 │ ├── 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_kernel_1.h │ └── timeout_kernel_abstract.h │ ├── timer.h │ ├── timer │ ├── timer_kernel_1.h │ ├── timer_kernel_2.cpp │ ├── timer_kernel_2.h │ └── timer_kernel_abstract.h │ ├── timing.h │ ├── tokenizer.h │ ├── tokenizer │ ├── tokenizer_kernel_1.cpp │ ├── tokenizer_kernel_1.h │ ├── tokenizer_kernel_abstract.h │ └── tokenizer_kernel_c.h │ ├── 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 │ ├── windows_magic.h │ ├── xml_parser.h │ └── xml_parser │ ├── xml_parser_kernel_1.h │ ├── xml_parser_kernel_abstract.h │ ├── xml_parser_kernel_c.h │ └── xml_parser_kernel_interfaces.h ├── ofxaddons_thumbnail.png └── src ├── ofxLearn.cpp └── ofxLearn.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/addon_config.mk -------------------------------------------------------------------------------- /example_classification/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/.DS_Store -------------------------------------------------------------------------------- /example_classification/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/Makefile -------------------------------------------------------------------------------- /example_classification/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/Project.xcconfig -------------------------------------------------------------------------------- /example_classification/addons.make: -------------------------------------------------------------------------------- 1 | ofxLearn 2 | -------------------------------------------------------------------------------- /example_classification/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_classification/bin/example_classificationDebug.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- 1 | Versions/Current/GLUT -------------------------------------------------------------------------------- /example_classification/bin/example_classificationDebug.app/Contents/Frameworks/GLUT.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /example_classification/bin/example_classificationDebug.app/Contents/Frameworks/GLUT.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /example_classification/bin/example_classificationDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /example_classification/bin/example_classificationDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /example_classification/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/config.make -------------------------------------------------------------------------------- /example_classification/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_classification/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/src/main.cpp -------------------------------------------------------------------------------- /example_classification/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/src/ofApp.cpp -------------------------------------------------------------------------------- /example_classification/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification/src/ofApp.h -------------------------------------------------------------------------------- /example_classification_threaded/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification_threaded/Makefile -------------------------------------------------------------------------------- /example_classification_threaded/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification_threaded/Project.xcconfig -------------------------------------------------------------------------------- /example_classification_threaded/addons.make: -------------------------------------------------------------------------------- 1 | ofxLearn 2 | -------------------------------------------------------------------------------- /example_classification_threaded/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_classification_threaded/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification_threaded/config.make -------------------------------------------------------------------------------- /example_classification_threaded/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification_threaded/src/main.cpp -------------------------------------------------------------------------------- /example_classification_threaded/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification_threaded/src/ofApp.cpp -------------------------------------------------------------------------------- /example_classification_threaded/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_classification_threaded/src/ofApp.h -------------------------------------------------------------------------------- /example_clustering/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering/Makefile -------------------------------------------------------------------------------- /example_clustering/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering/Project.xcconfig -------------------------------------------------------------------------------- /example_clustering/addons.make: -------------------------------------------------------------------------------- 1 | ofxLearn 2 | -------------------------------------------------------------------------------- /example_clustering/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_clustering/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering/config.make -------------------------------------------------------------------------------- /example_clustering/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_clustering/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering/src/main.cpp -------------------------------------------------------------------------------- /example_clustering/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering/src/ofApp.cpp -------------------------------------------------------------------------------- /example_clustering/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering/src/ofApp.h -------------------------------------------------------------------------------- /example_clustering_threaded/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering_threaded/Makefile -------------------------------------------------------------------------------- /example_clustering_threaded/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering_threaded/Project.xcconfig -------------------------------------------------------------------------------- /example_clustering_threaded/addons.make: -------------------------------------------------------------------------------- 1 | ofxLearn 2 | -------------------------------------------------------------------------------- /example_clustering_threaded/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_clustering_threaded/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering_threaded/config.make -------------------------------------------------------------------------------- /example_clustering_threaded/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering_threaded/src/main.cpp -------------------------------------------------------------------------------- /example_clustering_threaded/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering_threaded/src/ofApp.cpp -------------------------------------------------------------------------------- /example_clustering_threaded/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_clustering_threaded/src/ofApp.h -------------------------------------------------------------------------------- /example_pca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/Makefile -------------------------------------------------------------------------------- /example_pca/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/Project.xcconfig -------------------------------------------------------------------------------- /example_pca/addons.make: -------------------------------------------------------------------------------- 1 | ofxLearn 2 | -------------------------------------------------------------------------------- /example_pca/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_pca/bin/data/myPca.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/bin/data/myPca.dat -------------------------------------------------------------------------------- /example_pca/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/config.make -------------------------------------------------------------------------------- /example_pca/example_pca.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/example_pca.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_pca/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_pca/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/src/main.cpp -------------------------------------------------------------------------------- /example_pca/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/src/ofApp.cpp -------------------------------------------------------------------------------- /example_pca/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_pca/src/ofApp.h -------------------------------------------------------------------------------- /example_regression/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression/Makefile -------------------------------------------------------------------------------- /example_regression/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression/Project.xcconfig -------------------------------------------------------------------------------- /example_regression/addons.make: -------------------------------------------------------------------------------- 1 | ofxLearn 2 | -------------------------------------------------------------------------------- /example_regression/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_regression/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression/config.make -------------------------------------------------------------------------------- /example_regression/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_regression/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression/src/main.cpp -------------------------------------------------------------------------------- /example_regression/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression/src/ofApp.cpp -------------------------------------------------------------------------------- /example_regression/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression/src/ofApp.h -------------------------------------------------------------------------------- /example_regression_threaded/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression_threaded/Makefile -------------------------------------------------------------------------------- /example_regression_threaded/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression_threaded/Project.xcconfig -------------------------------------------------------------------------------- /example_regression_threaded/addons.make: -------------------------------------------------------------------------------- 1 | ofxLearn 2 | -------------------------------------------------------------------------------- /example_regression_threaded/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_regression_threaded/bin/example_regression_threadedDebug.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- 1 | Versions/Current/GLUT -------------------------------------------------------------------------------- /example_regression_threaded/bin/example_regression_threadedDebug.app/Contents/Frameworks/GLUT.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /example_regression_threaded/bin/example_regression_threadedDebug.app/Contents/Frameworks/GLUT.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /example_regression_threaded/bin/example_regression_threadedDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /example_regression_threaded/bin/example_regression_threadedDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /example_regression_threaded/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression_threaded/config.make -------------------------------------------------------------------------------- /example_regression_threaded/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression_threaded/src/main.cpp -------------------------------------------------------------------------------- /example_regression_threaded/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression_threaded/src/ofApp.cpp -------------------------------------------------------------------------------- /example_regression_threaded/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/example_regression_threaded/src/ofApp.h -------------------------------------------------------------------------------- /libs/dlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/LICENSE.txt -------------------------------------------------------------------------------- /libs/dlib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/README.txt -------------------------------------------------------------------------------- /libs/dlib/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/algs.h -------------------------------------------------------------------------------- /libs/dlib/all/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/all/source.cpp -------------------------------------------------------------------------------- /libs/dlib/all_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/all_console.cpp -------------------------------------------------------------------------------- /libs/dlib/all_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/all_gui.cpp -------------------------------------------------------------------------------- /libs/dlib/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any.h -------------------------------------------------------------------------------- /libs/dlib/any/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any.h -------------------------------------------------------------------------------- /libs/dlib/any/any_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_abstract.h -------------------------------------------------------------------------------- /libs/dlib/any/any_decision_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_decision_function.h -------------------------------------------------------------------------------- /libs/dlib/any/any_decision_function_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_decision_function_abstract.h -------------------------------------------------------------------------------- /libs/dlib/any/any_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_function.h -------------------------------------------------------------------------------- /libs/dlib/any/any_function_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_function_abstract.h -------------------------------------------------------------------------------- /libs/dlib/any/any_function_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_function_impl.h -------------------------------------------------------------------------------- /libs/dlib/any/any_function_impl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_function_impl2.h -------------------------------------------------------------------------------- /libs/dlib/any/any_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_trainer.h -------------------------------------------------------------------------------- /libs/dlib/any/any_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/any/any_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/array.h -------------------------------------------------------------------------------- /libs/dlib/array/array_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/array/array_kernel.h -------------------------------------------------------------------------------- /libs/dlib/array/array_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/array/array_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/array2d.h -------------------------------------------------------------------------------- /libs/dlib/array2d/array2d_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/array2d/array2d_kernel.h -------------------------------------------------------------------------------- /libs/dlib/array2d/array2d_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/array2d/array2d_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/array2d/serialize_pixel_overloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/array2d/serialize_pixel_overloads.h -------------------------------------------------------------------------------- /libs/dlib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/assert.h -------------------------------------------------------------------------------- /libs/dlib/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/base64.h -------------------------------------------------------------------------------- /libs/dlib/base64/base64_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/base64/base64_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/base64/base64_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/base64/base64_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/base64/base64_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/base64/base64_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/bayes_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bayes_utils.h -------------------------------------------------------------------------------- /libs/dlib/bayes_utils/bayes_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bayes_utils/bayes_utils.h -------------------------------------------------------------------------------- /libs/dlib/bayes_utils/bayes_utils_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bayes_utils/bayes_utils_abstract.h -------------------------------------------------------------------------------- /libs/dlib/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bigint.h -------------------------------------------------------------------------------- /libs/dlib/bigint/bigint_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bigint/bigint_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/bigint/bigint_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bigint/bigint_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/bigint/bigint_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bigint/bigint_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/bigint/bigint_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bigint/bigint_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/bigint/bigint_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bigint/bigint_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/bigint/bigint_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bigint/bigint_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/binary_search_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/binary_search_tree.h -------------------------------------------------------------------------------- /libs/dlib/bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream.h -------------------------------------------------------------------------------- /libs/dlib/bit_stream/bit_stream_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream/bit_stream_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/bit_stream/bit_stream_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream/bit_stream_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/bit_stream/bit_stream_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream/bit_stream_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/bit_stream/bit_stream_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream/bit_stream_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/bit_stream/bit_stream_multi_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream/bit_stream_multi_1.h -------------------------------------------------------------------------------- /libs/dlib/bit_stream/bit_stream_multi_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream/bit_stream_multi_abstract.h -------------------------------------------------------------------------------- /libs/dlib/bit_stream/bit_stream_multi_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bit_stream/bit_stream_multi_c.h -------------------------------------------------------------------------------- /libs/dlib/bound_function_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bound_function_pointer.h -------------------------------------------------------------------------------- /libs/dlib/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bridge.h -------------------------------------------------------------------------------- /libs/dlib/bridge/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bridge/bridge.h -------------------------------------------------------------------------------- /libs/dlib/bridge/bridge_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bridge/bridge_abstract.h -------------------------------------------------------------------------------- /libs/dlib/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/bsp.h -------------------------------------------------------------------------------- /libs/dlib/byte_orderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/byte_orderer.h -------------------------------------------------------------------------------- /libs/dlib/byte_orderer/byte_orderer_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/byte_orderer/byte_orderer_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cassert -------------------------------------------------------------------------------- /libs/dlib/clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/clustering.h -------------------------------------------------------------------------------- /libs/dlib/cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmake -------------------------------------------------------------------------------- /libs/dlib/cmake_find_blas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmake_find_blas.txt -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser.h -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser/cmd_line_parser_check_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser/cmd_line_parser_check_1.h -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser/cmd_line_parser_check_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser/cmd_line_parser_check_c.h -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser/cmd_line_parser_print_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser/cmd_line_parser_print_1.h -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser/get_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser/get_option.h -------------------------------------------------------------------------------- /libs/dlib/cmd_line_parser/get_option_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cmd_line_parser/get_option_abstract.h -------------------------------------------------------------------------------- /libs/dlib/compress_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/compress_stream.h -------------------------------------------------------------------------------- /libs/dlib/compress_stream/compress_stream_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/compress_stream/compress_stream_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/compress_stream/compress_stream_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/compress_stream/compress_stream_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/compress_stream/compress_stream_kernel_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/compress_stream/compress_stream_kernel_3.h -------------------------------------------------------------------------------- /libs/dlib/conditioning_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/conditioning_class.h -------------------------------------------------------------------------------- /libs/dlib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/config.h -------------------------------------------------------------------------------- /libs/dlib/config_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/config_reader.h -------------------------------------------------------------------------------- /libs/dlib/config_reader/config_reader_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/config_reader/config_reader_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/console_progress_indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/console_progress_indicator.h -------------------------------------------------------------------------------- /libs/dlib/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/control.h -------------------------------------------------------------------------------- /libs/dlib/cpp_pretty_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cpp_pretty_printer.h -------------------------------------------------------------------------------- /libs/dlib/cpp_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cpp_tokenizer.h -------------------------------------------------------------------------------- /libs/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/crc32.h -------------------------------------------------------------------------------- /libs/dlib/crc32/crc32_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/crc32/crc32_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/crc32/crc32_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/crc32/crc32_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/cstring -------------------------------------------------------------------------------- /libs/dlib/data_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/data_io.h -------------------------------------------------------------------------------- /libs/dlib/data_io/image_dataset_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/data_io/image_dataset_metadata.cpp -------------------------------------------------------------------------------- /libs/dlib/data_io/image_dataset_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/data_io/image_dataset_metadata.h -------------------------------------------------------------------------------- /libs/dlib/data_io/libsvm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/data_io/libsvm_io.h -------------------------------------------------------------------------------- /libs/dlib/data_io/libsvm_io_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/data_io/libsvm_io_abstract.h -------------------------------------------------------------------------------- /libs/dlib/data_io/load_image_dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/data_io/load_image_dataset.h -------------------------------------------------------------------------------- /libs/dlib/data_io/load_image_dataset_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/data_io/load_image_dataset_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_extensions.cpp -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_extensions.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_extensions_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_extensions_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav/dir_nav_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/dir_nav_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/posix.h -------------------------------------------------------------------------------- /libs/dlib/dir_nav/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dir_nav/windows.h -------------------------------------------------------------------------------- /libs/dlib/directed_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/directed_graph.h -------------------------------------------------------------------------------- /libs/dlib/directed_graph/directed_graph_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/directed_graph/directed_graph_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/disjoint_subsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/disjoint_subsets.h -------------------------------------------------------------------------------- /libs/dlib/disjoint_subsets/disjoint_subsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/disjoint_subsets/disjoint_subsets.h -------------------------------------------------------------------------------- /libs/dlib/dlib_include_path_tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/dlib_include_path_tutorial.txt -------------------------------------------------------------------------------- /libs/dlib/enable_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/enable_if.h -------------------------------------------------------------------------------- /libs/dlib/entropy_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_decoder.h -------------------------------------------------------------------------------- /libs/dlib/entropy_decoder/entropy_decoder_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_decoder/entropy_decoder_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/entropy_decoder/entropy_decoder_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_decoder/entropy_decoder_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/entropy_decoder/entropy_decoder_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_decoder/entropy_decoder_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/entropy_decoder_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_decoder_model.h -------------------------------------------------------------------------------- /libs/dlib/entropy_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_encoder.h -------------------------------------------------------------------------------- /libs/dlib/entropy_encoder/entropy_encoder_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_encoder/entropy_encoder_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/entropy_encoder/entropy_encoder_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_encoder/entropy_encoder_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/entropy_encoder/entropy_encoder_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_encoder/entropy_encoder_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/entropy_encoder_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/entropy_encoder_model.h -------------------------------------------------------------------------------- /libs/dlib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/error.h -------------------------------------------------------------------------------- /libs/dlib/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/filtering.h -------------------------------------------------------------------------------- /libs/dlib/filtering/kalman_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/filtering/kalman_filter.h -------------------------------------------------------------------------------- /libs/dlib/filtering/kalman_filter_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/filtering/kalman_filter_abstract.h -------------------------------------------------------------------------------- /libs/dlib/filtering/rls_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/filtering/rls_filter.h -------------------------------------------------------------------------------- /libs/dlib/filtering/rls_filter_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/filtering/rls_filter_abstract.h -------------------------------------------------------------------------------- /libs/dlib/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/fstream -------------------------------------------------------------------------------- /libs/dlib/general_hash/general_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/general_hash/general_hash.h -------------------------------------------------------------------------------- /libs/dlib/general_hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/general_hash/hash.h -------------------------------------------------------------------------------- /libs/dlib/general_hash/hash_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/general_hash/hash_abstract.h -------------------------------------------------------------------------------- /libs/dlib/general_hash/murmur_hash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/general_hash/murmur_hash3.h -------------------------------------------------------------------------------- /libs/dlib/general_hash/murmur_hash3_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/general_hash/murmur_hash3_abstract.h -------------------------------------------------------------------------------- /libs/dlib/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/geometry.h -------------------------------------------------------------------------------- /libs/dlib/geometry/border_enumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/geometry/border_enumerator.h -------------------------------------------------------------------------------- /libs/dlib/geometry/border_enumerator_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/geometry/border_enumerator_abstract.h -------------------------------------------------------------------------------- /libs/dlib/geometry/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/geometry/rectangle.h -------------------------------------------------------------------------------- /libs/dlib/geometry/rectangle_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/geometry/rectangle_abstract.h -------------------------------------------------------------------------------- /libs/dlib/geometry/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/geometry/vector.h -------------------------------------------------------------------------------- /libs/dlib/geometry/vector_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/geometry/vector_abstract.h -------------------------------------------------------------------------------- /libs/dlib/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/graph.h -------------------------------------------------------------------------------- /libs/dlib/graph/graph_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/graph/graph_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/graph/graph_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/graph/graph_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/graph_utils.h -------------------------------------------------------------------------------- /libs/dlib/graph_utils/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/graph_utils/graph_utils.h -------------------------------------------------------------------------------- /libs/dlib/graph_utils/graph_utils_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/graph_utils/graph_utils_abstract.h -------------------------------------------------------------------------------- /libs/dlib/gui_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core.h -------------------------------------------------------------------------------- /libs/dlib/gui_core/gui_core_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core/gui_core_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_core/gui_core_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core/gui_core_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/gui_core/gui_core_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core/gui_core_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_core/gui_core_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core/gui_core_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/gui_core/gui_core_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core/gui_core_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/gui_core/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core/windows.h -------------------------------------------------------------------------------- /libs/dlib/gui_core/xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_core/xlib.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/base_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/base_widgets.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/base_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/base_widgets.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/base_widgets_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/base_widgets_abstract.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/canvas_drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/canvas_drawing.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/canvas_drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/canvas_drawing.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/canvas_drawing_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/canvas_drawing_abstract.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/drawable.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/drawable.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/drawable_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/drawable_abstract.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/fonts.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/fonts.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/fonts_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/fonts_abstract.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/nativefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/nativefont.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/style.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/style.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/style_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/style_abstract.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/widgets.cpp -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/widgets.h -------------------------------------------------------------------------------- /libs/dlib/gui_widgets/widgets_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/gui_widgets/widgets_abstract.h -------------------------------------------------------------------------------- /libs/dlib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash.h -------------------------------------------------------------------------------- /libs/dlib/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_map.h -------------------------------------------------------------------------------- /libs/dlib/hash_map/hash_map_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_map/hash_map_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/hash_map/hash_map_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_map/hash_map_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/hash_map/hash_map_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_map/hash_map_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_set.h -------------------------------------------------------------------------------- /libs/dlib/hash_set/hash_set_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_set/hash_set_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/hash_set/hash_set_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_set/hash_set_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/hash_set/hash_set_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_set/hash_set_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_table.h -------------------------------------------------------------------------------- /libs/dlib/hash_table/hash_table_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_table/hash_table_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/hash_table/hash_table_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_table/hash_table_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/hash_table/hash_table_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_table/hash_table_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/hash_table/hash_table_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/hash_table/hash_table_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/http_client/http_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/http_client/http_client.cpp -------------------------------------------------------------------------------- /libs/dlib/http_client/http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/http_client/http_client.h -------------------------------------------------------------------------------- /libs/dlib/http_client/http_client_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/http_client/http_client_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_io.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/fine_hog_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/fine_hog_image.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/fine_hog_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/fine_hog_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/hashed_feature_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/hashed_feature_image.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/hessian_pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/hessian_pyramid.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/hessian_pyramid_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/hessian_pyramid_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/hog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/hog.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/hog_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/hog_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/poly_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/poly_image.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/poly_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/poly_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/surf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/surf.h -------------------------------------------------------------------------------- /libs/dlib/image_keypoint/surf_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_keypoint/surf_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/image_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/image_loader.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/image_loader_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/image_loader_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/jpeg_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/jpeg_loader.cpp -------------------------------------------------------------------------------- /libs/dlib/image_loader/jpeg_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/jpeg_loader.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/jpeg_loader_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/jpeg_loader_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/load_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/load_image.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/load_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/load_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/png_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/png_loader.cpp -------------------------------------------------------------------------------- /libs/dlib/image_loader/png_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/png_loader.h -------------------------------------------------------------------------------- /libs/dlib/image_loader/png_loader_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_loader/png_loader_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_processing.h -------------------------------------------------------------------------------- /libs/dlib/image_processing/box_overlap_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_processing/box_overlap_testing.h -------------------------------------------------------------------------------- /libs/dlib/image_processing/object_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_processing/object_detector.h -------------------------------------------------------------------------------- /libs/dlib/image_processing/scan_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_processing/scan_image.h -------------------------------------------------------------------------------- /libs/dlib/image_processing/scan_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_processing/scan_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_processing/scan_image_pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_processing/scan_image_pyramid.h -------------------------------------------------------------------------------- /libs/dlib/image_saver/dng_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_saver/dng_shared.h -------------------------------------------------------------------------------- /libs/dlib/image_saver/image_saver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_saver/image_saver.h -------------------------------------------------------------------------------- /libs/dlib/image_saver/image_saver_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_saver/image_saver_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_saver/save_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_saver/save_png.cpp -------------------------------------------------------------------------------- /libs/dlib/image_saver/save_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_saver/save_png.h -------------------------------------------------------------------------------- /libs/dlib/image_saver/save_png_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_saver/save_png_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/assign_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/assign_image.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/assign_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/assign_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/colormaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/colormaps.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/colormaps_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/colormaps_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/draw.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/draw_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/draw_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/edge_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/edge_detector.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/edge_detector_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/edge_detector_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/equalize_histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/equalize_histogram.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/image_pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/image_pyramid.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/image_pyramid_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/image_pyramid_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/integral_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/integral_image.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/integral_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/integral_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/interpolation.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/interpolation_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/interpolation_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/label_connected_blobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/label_connected_blobs.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/segment_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/segment_image.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/segment_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/segment_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/spatial_filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/spatial_filtering.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/thresholding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/thresholding.h -------------------------------------------------------------------------------- /libs/dlib/image_transforms/thresholding_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/image_transforms/thresholding_abstract.h -------------------------------------------------------------------------------- /libs/dlib/interfaces/cmd_line_parser_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/interfaces/cmd_line_parser_option.h -------------------------------------------------------------------------------- /libs/dlib/interfaces/enumerable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/interfaces/enumerable.h -------------------------------------------------------------------------------- /libs/dlib/interfaces/map_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/interfaces/map_pair.h -------------------------------------------------------------------------------- /libs/dlib/interfaces/remover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/interfaces/remover.h -------------------------------------------------------------------------------- /libs/dlib/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/iomanip -------------------------------------------------------------------------------- /libs/dlib/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/iosfwd -------------------------------------------------------------------------------- /libs/dlib/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/iostream -------------------------------------------------------------------------------- /libs/dlib/is_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/is_kind.h -------------------------------------------------------------------------------- /libs/dlib/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/istream -------------------------------------------------------------------------------- /libs/dlib/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/linker.h -------------------------------------------------------------------------------- /libs/dlib/linker/linker_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/linker/linker_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/linker/linker_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/linker/linker_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/linker/linker_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/linker/linker_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/linker/linker_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/linker/linker_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/locale -------------------------------------------------------------------------------- /libs/dlib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger.h -------------------------------------------------------------------------------- /libs/dlib/logger/extra_logger_headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger/extra_logger_headers.cpp -------------------------------------------------------------------------------- /libs/dlib/logger/extra_logger_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger/extra_logger_headers.h -------------------------------------------------------------------------------- /libs/dlib/logger/logger_config_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger/logger_config_file.cpp -------------------------------------------------------------------------------- /libs/dlib/logger/logger_config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger/logger_config_file.h -------------------------------------------------------------------------------- /libs/dlib/logger/logger_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger/logger_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/logger/logger_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger/logger_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/logger/logger_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/logger/logger_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lsh.h -------------------------------------------------------------------------------- /libs/dlib/lsh/create_random_projection_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lsh/create_random_projection_hash.h -------------------------------------------------------------------------------- /libs/dlib/lsh/projection_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lsh/projection_hash.h -------------------------------------------------------------------------------- /libs/dlib/lsh/projection_hash_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lsh/projection_hash_abstract.h -------------------------------------------------------------------------------- /libs/dlib/lz77_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lz77_buffer.h -------------------------------------------------------------------------------- /libs/dlib/lz77_buffer/lz77_buffer_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lz77_buffer/lz77_buffer_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/lz77_buffer/lz77_buffer_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lz77_buffer/lz77_buffer_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/lz77_buffer/lz77_buffer_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lz77_buffer/lz77_buffer_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/lzp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lzp_buffer.h -------------------------------------------------------------------------------- /libs/dlib/lzp_buffer/lzp_buffer_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lzp_buffer/lzp_buffer_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/lzp_buffer/lzp_buffer_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lzp_buffer/lzp_buffer_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/lzp_buffer/lzp_buffer_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/lzp_buffer/lzp_buffer_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/manifold_regularization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/manifold_regularization.h -------------------------------------------------------------------------------- /libs/dlib/manifold_regularization/function_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/manifold_regularization/function_objects.h -------------------------------------------------------------------------------- /libs/dlib/manifold_regularization/graph_creation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/manifold_regularization/graph_creation.h -------------------------------------------------------------------------------- /libs/dlib/manifold_regularization/sample_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/manifold_regularization/sample_pair.h -------------------------------------------------------------------------------- /libs/dlib/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/map.h -------------------------------------------------------------------------------- /libs/dlib/map/map_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/map/map_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/map/map_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/map/map_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/map/map_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/map/map_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix.h -------------------------------------------------------------------------------- /libs/dlib/matrix/cblas_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/cblas_constants.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/fortran_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/fortran_id.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/gees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/gees.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/geev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/geev.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/geqrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/geqrf.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/gesdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/gesdd.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/gesvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/gesvd.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/getrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/getrf.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/ormqr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/ormqr.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/potrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/potrf.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/syev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/syev.h -------------------------------------------------------------------------------- /libs/dlib/matrix/lapack/syevr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/lapack/syevr.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_assign.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_assign_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_assign_fwd.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_blas_bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_blas_bindings.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_cholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_cholesky.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_conj_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_conj_trans.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_conv.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_conv_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_conv_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_data_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_data_layout.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_data_layout_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_data_layout_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_default_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_default_mul.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_eigenvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_eigenvalue.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_exp.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_exp_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_exp_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_expressions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_expressions.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_fwd.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_la.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_la.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_la_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_la_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_lu.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_math_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_math_functions.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_math_functions_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_math_functions_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_op.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_qr.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_subexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_subexp.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_subexp_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_subexp_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_trsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_trsm.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_utilities.h -------------------------------------------------------------------------------- /libs/dlib/matrix/matrix_utilities_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/matrix_utilities_abstract.h -------------------------------------------------------------------------------- /libs/dlib/matrix/symmetric_matrix_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/symmetric_matrix_cache.h -------------------------------------------------------------------------------- /libs/dlib/matrix/symmetric_matrix_cache_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/matrix/symmetric_matrix_cache_abstract.h -------------------------------------------------------------------------------- /libs/dlib/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/md5.h -------------------------------------------------------------------------------- /libs/dlib/md5/md5_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/md5/md5_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/md5/md5_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/md5/md5_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/md5/md5_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/md5/md5_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/member_function_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/member_function_pointer.h -------------------------------------------------------------------------------- /libs/dlib/member_function_pointer/make_mfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/member_function_pointer/make_mfp.h -------------------------------------------------------------------------------- /libs/dlib/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/memory_manager.h -------------------------------------------------------------------------------- /libs/dlib/memory_manager/memory_manager_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/memory_manager/memory_manager_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/memory_manager/memory_manager_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/memory_manager/memory_manager_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/memory_manager/memory_manager_kernel_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/memory_manager/memory_manager_kernel_3.h -------------------------------------------------------------------------------- /libs/dlib/memory_manager_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/memory_manager_global.h -------------------------------------------------------------------------------- /libs/dlib/memory_manager_stateless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/memory_manager_stateless.h -------------------------------------------------------------------------------- /libs/dlib/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api.h -------------------------------------------------------------------------------- /libs/dlib/misc_api/misc_api_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api/misc_api_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/misc_api/misc_api_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api/misc_api_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/misc_api/misc_api_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api/misc_api_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/misc_api/misc_api_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api/misc_api_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/misc_api/misc_api_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api/misc_api_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/misc_api/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api/posix.h -------------------------------------------------------------------------------- /libs/dlib/misc_api/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/misc_api/windows.h -------------------------------------------------------------------------------- /libs/dlib/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/mlp.h -------------------------------------------------------------------------------- /libs/dlib/mlp/mlp_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/mlp/mlp_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/mlp/mlp_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/mlp/mlp_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/mlp/mlp_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/mlp/mlp_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/noncopyable.h -------------------------------------------------------------------------------- /libs/dlib/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/opencv.h -------------------------------------------------------------------------------- /libs/dlib/opencv/cv_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/opencv/cv_image.h -------------------------------------------------------------------------------- /libs/dlib/opencv/cv_image_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/opencv/cv_image_abstract.h -------------------------------------------------------------------------------- /libs/dlib/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization.h -------------------------------------------------------------------------------- /libs/dlib/optimization/find_max_factor_graph_nmplp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/find_max_factor_graph_nmplp.h -------------------------------------------------------------------------------- /libs/dlib/optimization/max_cost_assignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/max_cost_assignment.h -------------------------------------------------------------------------------- /libs/dlib/optimization/max_sum_submatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/max_sum_submatrix.h -------------------------------------------------------------------------------- /libs/dlib/optimization/max_sum_submatrix_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/max_sum_submatrix_abstract.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization_abstract.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization_bobyqa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization_bobyqa.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization_least_squares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization_least_squares.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization_line_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization_line_search.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization_oca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization_oca.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization_oca_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization_oca_abstract.h -------------------------------------------------------------------------------- /libs/dlib/optimization/optimization_trust_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/optimization/optimization_trust_region.h -------------------------------------------------------------------------------- /libs/dlib/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/ostream -------------------------------------------------------------------------------- /libs/dlib/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/pipe.h -------------------------------------------------------------------------------- /libs/dlib/pipe/pipe_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/pipe/pipe_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/pipe/pipe_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/pipe/pipe_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/pixel.h -------------------------------------------------------------------------------- /libs/dlib/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/platform.h -------------------------------------------------------------------------------- /libs/dlib/quantum_computing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/quantum_computing.h -------------------------------------------------------------------------------- /libs/dlib/quantum_computing/quantum_computing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/quantum_computing/quantum_computing.h -------------------------------------------------------------------------------- /libs/dlib/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/queue.h -------------------------------------------------------------------------------- /libs/dlib/queue/queue_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/queue/queue_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/queue/queue_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/queue/queue_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/queue/queue_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/queue/queue_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/queue/queue_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/queue/queue_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/queue/queue_sort_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/queue/queue_sort_1.h -------------------------------------------------------------------------------- /libs/dlib/queue/queue_sort_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/queue/queue_sort_abstract.h -------------------------------------------------------------------------------- /libs/dlib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/rand.h -------------------------------------------------------------------------------- /libs/dlib/rand/mersenne_twister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/rand/mersenne_twister.h -------------------------------------------------------------------------------- /libs/dlib/rand/rand_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/rand/rand_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/rand/rand_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/rand/rand_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/ref.h -------------------------------------------------------------------------------- /libs/dlib/reference_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/reference_counter.h -------------------------------------------------------------------------------- /libs/dlib/release_build_by_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/release_build_by_default -------------------------------------------------------------------------------- /libs/dlib/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/revision.h -------------------------------------------------------------------------------- /libs/dlib/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_compare_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_compare_1.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_compare_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_compare_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_sort_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_sort_1.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_sort_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_sort_2.h -------------------------------------------------------------------------------- /libs/dlib/sequence/sequence_sort_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sequence/sequence_sort_abstract.h -------------------------------------------------------------------------------- /libs/dlib/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/serialize.h -------------------------------------------------------------------------------- /libs/dlib/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server.h -------------------------------------------------------------------------------- /libs/dlib/server/server_http_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server/server_http_1.h -------------------------------------------------------------------------------- /libs/dlib/server/server_http_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server/server_http_abstract.h -------------------------------------------------------------------------------- /libs/dlib/server/server_iostream_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server/server_iostream_1.h -------------------------------------------------------------------------------- /libs/dlib/server/server_iostream_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server/server_iostream_abstract.h -------------------------------------------------------------------------------- /libs/dlib/server/server_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server/server_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/server/server_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server/server_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/server/server_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/server/server_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set.h -------------------------------------------------------------------------------- /libs/dlib/set/set_compare_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set/set_compare_1.h -------------------------------------------------------------------------------- /libs/dlib/set/set_compare_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set/set_compare_abstract.h -------------------------------------------------------------------------------- /libs/dlib/set/set_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set/set_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/set/set_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set/set_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/set/set_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set/set_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set_utils.h -------------------------------------------------------------------------------- /libs/dlib/set_utils/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set_utils/set_utils.h -------------------------------------------------------------------------------- /libs/dlib/set_utils/set_utils_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/set_utils/set_utils_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sliding_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sliding_buffer.h -------------------------------------------------------------------------------- /libs/dlib/sliding_buffer/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sliding_buffer/circular_buffer.h -------------------------------------------------------------------------------- /libs/dlib/sliding_buffer/circular_buffer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sliding_buffer/circular_buffer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sliding_buffer/sliding_buffer_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sliding_buffer/sliding_buffer_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/sliding_buffer/sliding_buffer_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sliding_buffer/sliding_buffer_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers/scoped_ptr.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers/scoped_ptr_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers/scoped_ptr_abstract.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers/shared_ptr.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers/shared_ptr_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers/shared_ptr_abstract.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers/shared_ptr_thread_safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers/shared_ptr_thread_safe.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers/weak_ptr.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers/weak_ptr_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers/weak_ptr_abstract.h -------------------------------------------------------------------------------- /libs/dlib/smart_pointers_thread_safe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/smart_pointers_thread_safe.h -------------------------------------------------------------------------------- /libs/dlib/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets.h -------------------------------------------------------------------------------- /libs/dlib/sockets/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/posix.h -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_extensions.cpp -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_extensions.h -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_extensions_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_extensions_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/sockets/sockets_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/sockets_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sockets/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockets/windows.h -------------------------------------------------------------------------------- /libs/dlib/sockstreambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockstreambuf.h -------------------------------------------------------------------------------- /libs/dlib/sockstreambuf/sockstreambuf_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockstreambuf/sockstreambuf_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/sockstreambuf/sockstreambuf_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockstreambuf/sockstreambuf_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/sockstreambuf/sockstreambuf_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockstreambuf/sockstreambuf_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/sockstreambuf/sockstreambuf_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sockstreambuf/sockstreambuf_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sort.h -------------------------------------------------------------------------------- /libs/dlib/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sqlite.h -------------------------------------------------------------------------------- /libs/dlib/sqlite/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sqlite/sqlite.h -------------------------------------------------------------------------------- /libs/dlib/sqlite/sqlite_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sqlite/sqlite_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sqlite/sqlite_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sqlite/sqlite_tools.h -------------------------------------------------------------------------------- /libs/dlib/sqlite/sqlite_tools_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sqlite/sqlite_tools_abstract.h -------------------------------------------------------------------------------- /libs/dlib/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sstream -------------------------------------------------------------------------------- /libs/dlib/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stack.h -------------------------------------------------------------------------------- /libs/dlib/stack/stack_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stack/stack_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/stack/stack_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stack/stack_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/stack/stack_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stack/stack_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/stack_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stack_trace.cpp -------------------------------------------------------------------------------- /libs/dlib/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stack_trace.h -------------------------------------------------------------------------------- /libs/dlib/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_map.h -------------------------------------------------------------------------------- /libs/dlib/static_map/static_map_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_map/static_map_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/static_map/static_map_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_map/static_map_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/static_map/static_map_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_map/static_map_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/static_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_set.h -------------------------------------------------------------------------------- /libs/dlib/static_set/static_set_compare_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_set/static_set_compare_1.h -------------------------------------------------------------------------------- /libs/dlib/static_set/static_set_compare_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_set/static_set_compare_abstract.h -------------------------------------------------------------------------------- /libs/dlib/static_set/static_set_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_set/static_set_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/static_set/static_set_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_set/static_set_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/static_set/static_set_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/static_set/static_set_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/statistics.h -------------------------------------------------------------------------------- /libs/dlib/statistics/dpca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/statistics/dpca.h -------------------------------------------------------------------------------- /libs/dlib/statistics/dpca_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/statistics/dpca_abstract.h -------------------------------------------------------------------------------- /libs/dlib/statistics/image_feature_sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/statistics/image_feature_sampling.h -------------------------------------------------------------------------------- /libs/dlib/statistics/random_subset_selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/statistics/random_subset_selector.h -------------------------------------------------------------------------------- /libs/dlib/statistics/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/statistics/statistics.h -------------------------------------------------------------------------------- /libs/dlib/statistics/statistics_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/statistics/statistics_abstract.h -------------------------------------------------------------------------------- /libs/dlib/std_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/std_allocator.h -------------------------------------------------------------------------------- /libs/dlib/stl_checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stl_checked.h -------------------------------------------------------------------------------- /libs/dlib/stl_checked/std_vector_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stl_checked/std_vector_c.h -------------------------------------------------------------------------------- /libs/dlib/stl_checked/std_vector_c_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/stl_checked/std_vector_c_abstract.h -------------------------------------------------------------------------------- /libs/dlib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string.h -------------------------------------------------------------------------------- /libs/dlib/string/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string/cassert -------------------------------------------------------------------------------- /libs/dlib/string/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string/iomanip -------------------------------------------------------------------------------- /libs/dlib/string/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string/iosfwd -------------------------------------------------------------------------------- /libs/dlib/string/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string/iostream -------------------------------------------------------------------------------- /libs/dlib/string/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string/locale -------------------------------------------------------------------------------- /libs/dlib/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string/string.h -------------------------------------------------------------------------------- /libs/dlib/string/string_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/string/string_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm.h -------------------------------------------------------------------------------- /libs/dlib/svm/assignment_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/assignment_function.h -------------------------------------------------------------------------------- /libs/dlib/svm/assignment_function_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/assignment_function_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/cross_validate_assignment_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/cross_validate_assignment_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/cross_validate_multiclass_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/cross_validate_multiclass_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/cross_validate_regression_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/cross_validate_regression_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/cross_validate_sequence_labeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/cross_validate_sequence_labeler.h -------------------------------------------------------------------------------- /libs/dlib/svm/empirical_kernel_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/empirical_kernel_map.h -------------------------------------------------------------------------------- /libs/dlib/svm/empirical_kernel_map_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/empirical_kernel_map_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/feature_ranking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/feature_ranking.h -------------------------------------------------------------------------------- /libs/dlib/svm/feature_ranking_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/feature_ranking_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/function.h -------------------------------------------------------------------------------- /libs/dlib/svm/function_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/function_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/kcentroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kcentroid.h -------------------------------------------------------------------------------- /libs/dlib/svm/kcentroid_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kcentroid_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/kcentroid_overloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kcentroid_overloads.h -------------------------------------------------------------------------------- /libs/dlib/svm/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kernel.h -------------------------------------------------------------------------------- /libs/dlib/svm/kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/kernel_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kernel_matrix.h -------------------------------------------------------------------------------- /libs/dlib/svm/kernel_matrix_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kernel_matrix_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/kkmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kkmeans.h -------------------------------------------------------------------------------- /libs/dlib/svm/kkmeans_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/kkmeans_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/krls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/krls.h -------------------------------------------------------------------------------- /libs/dlib/svm/krls_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/krls_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/krr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/krr_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/krr_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/krr_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/linearly_independent_subset_finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/linearly_independent_subset_finder.h -------------------------------------------------------------------------------- /libs/dlib/svm/multiclass_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/multiclass_tools.h -------------------------------------------------------------------------------- /libs/dlib/svm/multiclass_tools_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/multiclass_tools_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/null_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/null_df.h -------------------------------------------------------------------------------- /libs/dlib/svm/null_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/null_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/null_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/null_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/one_vs_all_decision_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/one_vs_all_decision_function.h -------------------------------------------------------------------------------- /libs/dlib/svm/one_vs_all_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/one_vs_all_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/one_vs_all_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/one_vs_all_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/one_vs_one_decision_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/one_vs_one_decision_function.h -------------------------------------------------------------------------------- /libs/dlib/svm/one_vs_one_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/one_vs_one_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/one_vs_one_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/one_vs_one_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/pegasos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/pegasos.h -------------------------------------------------------------------------------- /libs/dlib/svm/pegasos_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/pegasos_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/rbf_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rbf_network.h -------------------------------------------------------------------------------- /libs/dlib/svm/rbf_network_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rbf_network_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/reduced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/reduced.h -------------------------------------------------------------------------------- /libs/dlib/svm/reduced_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/reduced_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rls.h -------------------------------------------------------------------------------- /libs/dlib/svm/rls_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rls_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/roc_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/roc_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/roc_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/roc_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/rr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rr_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/rr_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rr_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/rvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rvm.h -------------------------------------------------------------------------------- /libs/dlib/svm/rvm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/rvm_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/sequence_labeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sequence_labeler.h -------------------------------------------------------------------------------- /libs/dlib/svm/sequence_labeler_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sequence_labeler_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/simplify_linear_decision_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/simplify_linear_decision_function.h -------------------------------------------------------------------------------- /libs/dlib/svm/sort_basis_vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sort_basis_vectors.h -------------------------------------------------------------------------------- /libs/dlib/svm/sort_basis_vectors_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sort_basis_vectors_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/sparse_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sparse_kernel.h -------------------------------------------------------------------------------- /libs/dlib/svm/sparse_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sparse_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sparse_vector.h -------------------------------------------------------------------------------- /libs/dlib/svm/sparse_vector_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/sparse_vector_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_assignment_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_assignment_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_object_detection_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_object_detection_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_sequence_labeling_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_sequence_labeling_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_svm_assignment_problem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_svm_assignment_problem.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_svm_distributed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_svm_distributed.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_svm_distributed_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_svm_distributed_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_svm_problem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_svm_problem.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_svm_problem_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_svm_problem_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/structural_svm_problem_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/structural_svm_problem_threaded.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_c_ekm_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_c_ekm_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_c_ekm_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_c_ekm_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_c_linear_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_c_linear_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_c_linear_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_c_linear_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_c_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_c_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_c_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_c_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_multiclass_linear_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_multiclass_linear_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_nu_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_nu_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_nu_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_nu_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_one_class_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_one_class_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_one_class_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_one_class_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_threaded.h -------------------------------------------------------------------------------- /libs/dlib/svm/svm_threaded_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svm_threaded_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm/svr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svr_trainer.h -------------------------------------------------------------------------------- /libs/dlib/svm/svr_trainer_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm/svr_trainer_abstract.h -------------------------------------------------------------------------------- /libs/dlib/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/svm_threaded.h -------------------------------------------------------------------------------- /libs/dlib/sync_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/sync_extension.h -------------------------------------------------------------------------------- /libs/dlib/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/test/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/any.cpp -------------------------------------------------------------------------------- /libs/dlib/test/any_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/any_function.cpp -------------------------------------------------------------------------------- /libs/dlib/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/array.cpp -------------------------------------------------------------------------------- /libs/dlib/test/array2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/array2d.cpp -------------------------------------------------------------------------------- /libs/dlib/test/assignment_learning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/assignment_learning.cpp -------------------------------------------------------------------------------- /libs/dlib/test/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/base64.cpp -------------------------------------------------------------------------------- /libs/dlib/test/bayes_nets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/bayes_nets.cpp -------------------------------------------------------------------------------- /libs/dlib/test/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/bigint.cpp -------------------------------------------------------------------------------- /libs/dlib/test/binary_search_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/binary_search_tree.h -------------------------------------------------------------------------------- /libs/dlib/test/binary_search_tree_kernel_1a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/binary_search_tree_kernel_1a.cpp -------------------------------------------------------------------------------- /libs/dlib/test/binary_search_tree_kernel_2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/binary_search_tree_kernel_2a.cpp -------------------------------------------------------------------------------- /libs/dlib/test/binary_search_tree_mm1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/binary_search_tree_mm1.cpp -------------------------------------------------------------------------------- /libs/dlib/test/binary_search_tree_mm2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/binary_search_tree_mm2.cpp -------------------------------------------------------------------------------- /libs/dlib/test/blas_bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/blas_bindings/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/test/blas_bindings/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/blas_bindings/vector.cpp -------------------------------------------------------------------------------- /libs/dlib/test/bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/bridge.cpp -------------------------------------------------------------------------------- /libs/dlib/test/byte_orderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/byte_orderer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/checkerboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/checkerboard.h -------------------------------------------------------------------------------- /libs/dlib/test/cmd_line_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/cmd_line_parser.cpp -------------------------------------------------------------------------------- /libs/dlib/test/cmd_line_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/cmd_line_parser.h -------------------------------------------------------------------------------- /libs/dlib/test/cmd_line_parser_wchar_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/cmd_line_parser_wchar_t.cpp -------------------------------------------------------------------------------- /libs/dlib/test/compress_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/compress_stream.cpp -------------------------------------------------------------------------------- /libs/dlib/test/conditioning_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/conditioning_class.cpp -------------------------------------------------------------------------------- /libs/dlib/test/conditioning_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/conditioning_class.h -------------------------------------------------------------------------------- /libs/dlib/test/conditioning_class_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/conditioning_class_c.cpp -------------------------------------------------------------------------------- /libs/dlib/test/config_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/config_reader.cpp -------------------------------------------------------------------------------- /libs/dlib/test/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/crc32.cpp -------------------------------------------------------------------------------- /libs/dlib/test/create_iris_datafile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/create_iris_datafile.cpp -------------------------------------------------------------------------------- /libs/dlib/test/create_iris_datafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/create_iris_datafile.h -------------------------------------------------------------------------------- /libs/dlib/test/data_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/data_io.cpp -------------------------------------------------------------------------------- /libs/dlib/test/directed_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/directed_graph.cpp -------------------------------------------------------------------------------- /libs/dlib/test/discriminant_pca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/discriminant_pca.cpp -------------------------------------------------------------------------------- /libs/dlib/test/disjoint_subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/disjoint_subsets.cpp -------------------------------------------------------------------------------- /libs/dlib/test/ekm_and_lisf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/ekm_and_lisf.cpp -------------------------------------------------------------------------------- /libs/dlib/test/empirical_kernel_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/empirical_kernel_map.cpp -------------------------------------------------------------------------------- /libs/dlib/test/entropy_coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/entropy_coder.cpp -------------------------------------------------------------------------------- /libs/dlib/test/entropy_encoder_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/entropy_encoder_model.cpp -------------------------------------------------------------------------------- /libs/dlib/test/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/example.cpp -------------------------------------------------------------------------------- /libs/dlib/test/example_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/example_args.cpp -------------------------------------------------------------------------------- /libs/dlib/test/filtering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/filtering.cpp -------------------------------------------------------------------------------- /libs/dlib/test/find_max_factor_graph_nmplp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/find_max_factor_graph_nmplp.cpp -------------------------------------------------------------------------------- /libs/dlib/test/find_max_factor_graph_viterbi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/find_max_factor_graph_viterbi.cpp -------------------------------------------------------------------------------- /libs/dlib/test/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/geometry.cpp -------------------------------------------------------------------------------- /libs/dlib/test/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/graph.cpp -------------------------------------------------------------------------------- /libs/dlib/test/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/gui/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dlib/test/gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/gui/main.cpp -------------------------------------------------------------------------------- /libs/dlib/test/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/hash.cpp -------------------------------------------------------------------------------- /libs/dlib/test/hash_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/hash_map.cpp -------------------------------------------------------------------------------- /libs/dlib/test/hash_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/hash_set.cpp -------------------------------------------------------------------------------- /libs/dlib/test/hash_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/hash_table.cpp -------------------------------------------------------------------------------- /libs/dlib/test/hog_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/hog_image.cpp -------------------------------------------------------------------------------- /libs/dlib/test/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/image.cpp -------------------------------------------------------------------------------- /libs/dlib/test/is_same_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/is_same_object.cpp -------------------------------------------------------------------------------- /libs/dlib/test/kcentroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/kcentroid.cpp -------------------------------------------------------------------------------- /libs/dlib/test/kernel_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/kernel_matrix.cpp -------------------------------------------------------------------------------- /libs/dlib/test/kmeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/kmeans.cpp -------------------------------------------------------------------------------- /libs/dlib/test/least_squares.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/least_squares.cpp -------------------------------------------------------------------------------- /libs/dlib/test/linear_manifold_regularizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/linear_manifold_regularizer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/lz77_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/lz77_buffer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/main.cpp -------------------------------------------------------------------------------- /libs/dlib/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/makefile -------------------------------------------------------------------------------- /libs/dlib/test/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/map.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix2.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix3.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix4.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix_chol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix_chol.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix_eig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix_eig.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix_lu.cpp -------------------------------------------------------------------------------- /libs/dlib/test/matrix_qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/matrix_qr.cpp -------------------------------------------------------------------------------- /libs/dlib/test/max_cost_assignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/max_cost_assignment.cpp -------------------------------------------------------------------------------- /libs/dlib/test/max_sum_submatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/max_sum_submatrix.cpp -------------------------------------------------------------------------------- /libs/dlib/test/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/md5.cpp -------------------------------------------------------------------------------- /libs/dlib/test/member_function_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/member_function_pointer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/metaprogramming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/metaprogramming.cpp -------------------------------------------------------------------------------- /libs/dlib/test/multithreaded_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/multithreaded_object.cpp -------------------------------------------------------------------------------- /libs/dlib/test/object_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/object_detector.cpp -------------------------------------------------------------------------------- /libs/dlib/test/one_vs_all_trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/one_vs_all_trainer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/one_vs_one_trainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/one_vs_one_trainer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/opt_qp_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/opt_qp_solver.cpp -------------------------------------------------------------------------------- /libs/dlib/test/optimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/optimization.cpp -------------------------------------------------------------------------------- /libs/dlib/test/optimization_test_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/optimization_test_functions.cpp -------------------------------------------------------------------------------- /libs/dlib/test/optimization_test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/optimization_test_functions.h -------------------------------------------------------------------------------- /libs/dlib/test/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/pipe.cpp -------------------------------------------------------------------------------- /libs/dlib/test/pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/pixel.cpp -------------------------------------------------------------------------------- /libs/dlib/test/probabilistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/probabilistic.cpp -------------------------------------------------------------------------------- /libs/dlib/test/pyramid_down.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/pyramid_down.cpp -------------------------------------------------------------------------------- /libs/dlib/test/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/queue.cpp -------------------------------------------------------------------------------- /libs/dlib/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/rand.cpp -------------------------------------------------------------------------------- /libs/dlib/test/read_write_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/read_write_mutex.cpp -------------------------------------------------------------------------------- /libs/dlib/test/reference_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/reference_counter.cpp -------------------------------------------------------------------------------- /libs/dlib/test/rls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/rls.cpp -------------------------------------------------------------------------------- /libs/dlib/test/scan_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/scan_image.cpp -------------------------------------------------------------------------------- /libs/dlib/test/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/sequence.cpp -------------------------------------------------------------------------------- /libs/dlib/test/sequence_labeler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/sequence_labeler.cpp -------------------------------------------------------------------------------- /libs/dlib/test/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/serialize.cpp -------------------------------------------------------------------------------- /libs/dlib/test/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/set.cpp -------------------------------------------------------------------------------- /libs/dlib/test/sldf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/sldf.cpp -------------------------------------------------------------------------------- /libs/dlib/test/sliding_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/sliding_buffer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/smart_pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/smart_pointers.cpp -------------------------------------------------------------------------------- /libs/dlib/test/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/sockets.cpp -------------------------------------------------------------------------------- /libs/dlib/test/sockets2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/sockets2.cpp -------------------------------------------------------------------------------- /libs/dlib/test/sockstreambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/sockstreambuf.cpp -------------------------------------------------------------------------------- /libs/dlib/test/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/stack.cpp -------------------------------------------------------------------------------- /libs/dlib/test/static_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/static_map.cpp -------------------------------------------------------------------------------- /libs/dlib/test/static_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/static_set.cpp -------------------------------------------------------------------------------- /libs/dlib/test/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/statistics.cpp -------------------------------------------------------------------------------- /libs/dlib/test/std_vector_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/std_vector_c.cpp -------------------------------------------------------------------------------- /libs/dlib/test/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/string.cpp -------------------------------------------------------------------------------- /libs/dlib/test/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/svm.cpp -------------------------------------------------------------------------------- /libs/dlib/test/svm_c_linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/svm_c_linear.cpp -------------------------------------------------------------------------------- /libs/dlib/test/svm_multiclass_linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/svm_multiclass_linear.cpp -------------------------------------------------------------------------------- /libs/dlib/test/svm_struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/svm_struct.cpp -------------------------------------------------------------------------------- /libs/dlib/test/symmetric_matrix_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/symmetric_matrix_cache.cpp -------------------------------------------------------------------------------- /libs/dlib/test/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/tester.cpp -------------------------------------------------------------------------------- /libs/dlib/test/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/tester.h -------------------------------------------------------------------------------- /libs/dlib/test/thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/thread_pool.cpp -------------------------------------------------------------------------------- /libs/dlib/test/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/threads.cpp -------------------------------------------------------------------------------- /libs/dlib/test/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/timer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/tokenizer.cpp -------------------------------------------------------------------------------- /libs/dlib/test/trust_region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/trust_region.cpp -------------------------------------------------------------------------------- /libs/dlib/test/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/tuple.cpp -------------------------------------------------------------------------------- /libs/dlib/test/type_safe_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/test/type_safe_union.cpp -------------------------------------------------------------------------------- /libs/dlib/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads.h -------------------------------------------------------------------------------- /libs/dlib/threads/auto_mutex_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/auto_mutex_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/auto_mutex_extension_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/auto_mutex_extension_abstract.h -------------------------------------------------------------------------------- /libs/dlib/threads/auto_unlock_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/auto_unlock_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/create_new_thread_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/create_new_thread_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/posix.h -------------------------------------------------------------------------------- /libs/dlib/threads/read_write_mutex_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/read_write_mutex_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/rmutex_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/rmutex_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/rmutex_extension_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/rmutex_extension_abstract.h -------------------------------------------------------------------------------- /libs/dlib/threads/rsignaler_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/rsignaler_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/rsignaler_extension_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/rsignaler_extension_abstract.h -------------------------------------------------------------------------------- /libs/dlib/threads/thread_function_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/thread_function_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/thread_pool_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/thread_pool_extension.cpp -------------------------------------------------------------------------------- /libs/dlib/threads/thread_pool_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/thread_pool_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/threaded_object_extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threaded_object_extension.cpp -------------------------------------------------------------------------------- /libs/dlib/threads/threaded_object_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threaded_object_extension.h -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel.h -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel_shared.cpp -------------------------------------------------------------------------------- /libs/dlib/threads/threads_kernel_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/threads_kernel_shared.h -------------------------------------------------------------------------------- /libs/dlib/threads/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/threads/windows.h -------------------------------------------------------------------------------- /libs/dlib/time_this.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/time_this.h -------------------------------------------------------------------------------- /libs/dlib/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timeout.h -------------------------------------------------------------------------------- /libs/dlib/timeout/timeout_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timeout/timeout_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/timeout/timeout_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timeout/timeout_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timer.h -------------------------------------------------------------------------------- /libs/dlib/timer/timer_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timer/timer_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/timer/timer_kernel_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timer/timer_kernel_2.cpp -------------------------------------------------------------------------------- /libs/dlib/timer/timer_kernel_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timer/timer_kernel_2.h -------------------------------------------------------------------------------- /libs/dlib/timer/timer_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timer/timer_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/timing.h -------------------------------------------------------------------------------- /libs/dlib/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tokenizer.h -------------------------------------------------------------------------------- /libs/dlib/tokenizer/tokenizer_kernel_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tokenizer/tokenizer_kernel_1.cpp -------------------------------------------------------------------------------- /libs/dlib/tokenizer/tokenizer_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tokenizer/tokenizer_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/tokenizer/tokenizer_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tokenizer/tokenizer_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/tokenizer/tokenizer_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tokenizer/tokenizer_kernel_c.h -------------------------------------------------------------------------------- /libs/dlib/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tuple.h -------------------------------------------------------------------------------- /libs/dlib/tuple/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tuple/tuple.h -------------------------------------------------------------------------------- /libs/dlib/tuple/tuple_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/tuple/tuple_abstract.h -------------------------------------------------------------------------------- /libs/dlib/type_safe_union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/type_safe_union.h -------------------------------------------------------------------------------- /libs/dlib/uintn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/uintn.h -------------------------------------------------------------------------------- /libs/dlib/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/unicode.h -------------------------------------------------------------------------------- /libs/dlib/unicode/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/unicode/unicode.cpp -------------------------------------------------------------------------------- /libs/dlib/unicode/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/unicode/unicode.h -------------------------------------------------------------------------------- /libs/dlib/unicode/unicode_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/unicode/unicode_abstract.h -------------------------------------------------------------------------------- /libs/dlib/unordered_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/unordered_pair.h -------------------------------------------------------------------------------- /libs/dlib/windows_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/windows_magic.h -------------------------------------------------------------------------------- /libs/dlib/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/xml_parser.h -------------------------------------------------------------------------------- /libs/dlib/xml_parser/xml_parser_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/xml_parser/xml_parser_kernel_1.h -------------------------------------------------------------------------------- /libs/dlib/xml_parser/xml_parser_kernel_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/xml_parser/xml_parser_kernel_abstract.h -------------------------------------------------------------------------------- /libs/dlib/xml_parser/xml_parser_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/libs/dlib/xml_parser/xml_parser_kernel_c.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxLearn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/src/ofxLearn.cpp -------------------------------------------------------------------------------- /src/ofxLearn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genekogan/ofxLearn/HEAD/src/ofxLearn.h --------------------------------------------------------------------------------