From owner-svn-ports-head@freebsd.org Thu Apr 26 20:39:18 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E94D1FB7C51; Thu, 26 Apr 2018 20:39:17 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 94AA67DBFD; Thu, 26 Apr 2018 20:39:17 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8F18E1CFFE; Thu, 26 Apr 2018 20:39:17 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3QKdHvL094499; Thu, 26 Apr 2018 20:39:17 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3QKdHaP094493; Thu, 26 Apr 2018 20:39:17 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201804262039.w3QKdHaP094493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Thu, 26 Apr 2018 20:39:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468383 - in head/science: . dlib-cpp py-dlib py-dlib/files X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: in head/science: . dlib-cpp py-dlib py-dlib/files X-SVN-Commit-Revision: 468383 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Apr 2018 20:39:18 -0000 Author: adridg Date: Thu Apr 26 20:39:16 2018 New Revision: 468383 URL: https://svnweb.freebsd.org/changeset/ports/468383 Log: New ports science/dlib-cpp and science/py-dlib (Python bindings for the former) Changed from the reviewed form: - fixed typo's - added support for suffixed Boost::Python - removed commented-out lines from patch Submitted by: arrowsvc (6yearold@gmail.com, new maintainer) Reviewed by: tcberner, adridg Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14798 Added: head/science/dlib-cpp/ head/science/dlib-cpp/Makefile (contents, props changed) head/science/dlib-cpp/distinfo (contents, props changed) head/science/dlib-cpp/pkg-descr (contents, props changed) head/science/dlib-cpp/pkg-plist (contents, props changed) head/science/py-dlib/ head/science/py-dlib/Makefile (contents, props changed) head/science/py-dlib/distinfo (contents, props changed) head/science/py-dlib/files/ head/science/py-dlib/files/patch-dlib_cmake__utils_add__python__module (contents, props changed) head/science/py-dlib/files/patch-setup.py (contents, props changed) head/science/py-dlib/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Thu Apr 26 20:29:05 2018 (r468382) +++ head/science/Makefile Thu Apr 26 20:39:16 2018 (r468383) @@ -47,6 +47,7 @@ SUBDIR += dcl SUBDIR += devisor SUBDIR += dkh + SUBDIR += dlib-cpp SUBDIR += dlpoly-classic SUBDIR += ecs SUBDIR += epte @@ -166,6 +167,7 @@ SUBDIR += py-OpenFermion SUBDIR += py-cdo SUBDIR += py-coards + SUBDIR += py-dlib SUBDIR += py-h5py SUBDIR += py-hcluster SUBDIR += py-mdp Added: head/science/dlib-cpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dlib-cpp/Makefile Thu Apr 26 20:39:16 2018 (r468383) @@ -0,0 +1,51 @@ +# $FreeBSD$ + +PORTNAME= dlib +DISTVERSION= 19.6 +CATEGORIES= science devel math +MASTER_SITES= http://dlib.net/files/ +PKGNAMESUFFIX= -cpp + +MAINTAINER= 6yearold@gmail.com +COMMENT= Machine learning framework written in C++ + +LICENSE= BSL +LICENSE_FILE= ${WRKSRC}/dlib/LICENSE.txt + +USES= cmake:outsource pkgconfig tar:bzip2 +USE_LDCONFIG= yes + +OPTIONS_DEFINE= X11 JPEG PNG GIF SQLITE BLASLAPACK PYTHON AVX +OPTIONS_DEFAULT= X11 JPEG PNG GIF SQLITE + +BLASLAPACK_DESC= Use Blas and Lapack libraries from ports +AVX_DESC= Use AVX instructions if supported by CPU + +X11_USE= xorg=x11 +X11_CMAKE_OFF= -DDLIB_NO_GUI_SUPPORT=1 + +JPEG_USES= jpeg +JPEG_CMAKE_BOOL= DLIB_JPEG_SUPPORT + +PNG_LIB_DEPENDS= libpng.so:graphics/png +PNG_CMAKE_BOOL= DLIB_PNG_SUPPORT + +GIF_LIB_DEPENDS= libgif.so:graphics/giflib +GIF_CMAKE_BOOL= DLIB_GIF_SUPPORT + +SQLITE_USES= sqlite +SQLITE_CMAKE_BOOL= DLIB_LINK_WITH_SQLITE + +# uses gcc until https://reviews.freebsd.org/D11482 lands +BLASLAPACK_USE= gcc=yes +BLASLAPACK_USES= blaslapack:openblas fortran +BLASLAPACK_CMAKE_OFF= -DDLIB_USE_BLAS=0 -DDLIB_USE_LAPACK=0 -DDLIB_USE_MKL_FFT=0 + +# for PYTHON_PKGNAMEPREFIX +PYTHON_USES= python +PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dlib>=0:science/py-dlib +PYTHON_NO_DEPENDS= yes + +AVX_CMAKE_BOOL= USE_AVX_INSTRUCTIONS + +.include Added: head/science/dlib-cpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dlib-cpp/distinfo Thu Apr 26 20:39:16 2018 (r468383) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505047685 +SHA256 (dlib-19.6.tar.bz2) = 40292a4343499b18b881f69b26a56c1ecfe95cb9b9f964f37c1064c6fc415e2c +SIZE (dlib-19.6.tar.bz2) = 9016497 Added: head/science/dlib-cpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dlib-cpp/pkg-descr Thu Apr 26 20:39:16 2018 (r468383) @@ -0,0 +1,7 @@ +Dlib is a modern C++ toolkit containing machine learning algorithms +and tools for creating complex software in C++ to solve real world +problems. It is used in both industry and academia in a wide range +of domains including robotics, embedded devices, mobile phones, +and large high performance computing environments. + +WWW: http://dlib.net Added: head/science/dlib-cpp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/dlib-cpp/pkg-plist Thu Apr 26 20:39:16 2018 (r468383) @@ -0,0 +1,973 @@ +include/dlib/algs.h +include/dlib/any.h +include/dlib/any/any.h +include/dlib/any/any_abstract.h +include/dlib/any/any_decision_function.h +include/dlib/any/any_decision_function_abstract.h +include/dlib/any/any_function.h +include/dlib/any/any_function_abstract.h +include/dlib/any/any_function_impl.h +include/dlib/any/any_function_impl2.h +include/dlib/any/any_trainer.h +include/dlib/any/any_trainer_abstract.h +include/dlib/array.h +include/dlib/array/array_kernel.h +include/dlib/array/array_kernel_abstract.h +include/dlib/array/array_tools.h +include/dlib/array/array_tools_abstract.h +include/dlib/array2d.h +include/dlib/array2d/array2d_generic_image.h +include/dlib/array2d/array2d_kernel.h +include/dlib/array2d/array2d_kernel_abstract.h +include/dlib/array2d/serialize_pixel_overloads.h +include/dlib/assert.h +include/dlib/base64.h +include/dlib/base64/base64_kernel_1.h +include/dlib/base64/base64_kernel_abstract.h +include/dlib/bayes_utils.h +include/dlib/bayes_utils/bayes_utils.h +include/dlib/bayes_utils/bayes_utils_abstract.h +include/dlib/bigint.h +include/dlib/bigint/bigint_kernel_1.h +include/dlib/bigint/bigint_kernel_2.h +include/dlib/bigint/bigint_kernel_abstract.h +include/dlib/bigint/bigint_kernel_c.h +include/dlib/binary_search_tree.h +include/dlib/binary_search_tree/binary_search_tree_kernel_1.h +include/dlib/binary_search_tree/binary_search_tree_kernel_2.h +include/dlib/binary_search_tree/binary_search_tree_kernel_abstract.h +include/dlib/binary_search_tree/binary_search_tree_kernel_c.h +include/dlib/bit_stream.h +include/dlib/bit_stream/bit_stream_kernel_1.h +include/dlib/bit_stream/bit_stream_kernel_abstract.h +include/dlib/bit_stream/bit_stream_kernel_c.h +include/dlib/bit_stream/bit_stream_multi_1.h +include/dlib/bit_stream/bit_stream_multi_abstract.h +include/dlib/bit_stream/bit_stream_multi_c.h +include/dlib/bits/c++config.h +include/dlib/bound_function_pointer.h +include/dlib/bound_function_pointer/bound_function_pointer_kernel_1.h +include/dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h +include/dlib/bridge.h +include/dlib/bridge/bridge.h +include/dlib/bridge/bridge_abstract.h +include/dlib/bsp.h +include/dlib/bsp/bsp.h +include/dlib/bsp/bsp_abstract.h +include/dlib/byte_orderer.h +include/dlib/byte_orderer/byte_orderer_kernel_1.h +include/dlib/byte_orderer/byte_orderer_kernel_abstract.h +include/dlib/clustering.h +include/dlib/clustering/bottom_up_cluster.h +include/dlib/clustering/bottom_up_cluster_abstract.h +include/dlib/clustering/chinese_whispers.h +include/dlib/clustering/chinese_whispers_abstract.h +include/dlib/clustering/modularity_clustering.h +include/dlib/clustering/modularity_clustering_abstract.h +include/dlib/clustering/spectral_cluster.h +include/dlib/clustering/spectral_cluster_abstract.h +include/dlib/cmake_utils/add_global_compiler_switch.cmake +include/dlib/cmake_utils/check_if_neon_available.cmake +include/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake +include/dlib/cmake_utils/use_cpp_11.cmake +include/dlib/cmd_line_parser.h +include/dlib/cmd_line_parser/cmd_line_parser_check_1.h +include/dlib/cmd_line_parser/cmd_line_parser_check_c.h +include/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h +include/dlib/cmd_line_parser/cmd_line_parser_kernel_abstract.h +include/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h +include/dlib/cmd_line_parser/cmd_line_parser_print_1.h +include/dlib/cmd_line_parser/get_option.h +include/dlib/cmd_line_parser/get_option_abstract.h +include/dlib/compress_stream.h +include/dlib/compress_stream/compress_stream_kernel_1.h +include/dlib/compress_stream/compress_stream_kernel_2.h +include/dlib/compress_stream/compress_stream_kernel_3.h +include/dlib/compress_stream/compress_stream_kernel_abstract.h +include/dlib/conditioning_class.h +include/dlib/conditioning_class/conditioning_class_kernel_1.h +include/dlib/conditioning_class/conditioning_class_kernel_2.h +include/dlib/conditioning_class/conditioning_class_kernel_3.h +include/dlib/conditioning_class/conditioning_class_kernel_4.h +include/dlib/conditioning_class/conditioning_class_kernel_abstract.h +include/dlib/conditioning_class/conditioning_class_kernel_c.h +include/dlib/config.h +include/dlib/config_reader.h +include/dlib/config_reader/config_reader_kernel_1.h +include/dlib/config_reader/config_reader_kernel_abstract.h +include/dlib/config_reader/config_reader_thread_safe_1.h +include/dlib/config_reader/config_reader_thread_safe_abstract.h +include/dlib/console_progress_indicator.h +include/dlib/control.h +include/dlib/control/approximate_linear_models.h +include/dlib/control/approximate_linear_models_abstract.h +include/dlib/control/lspi.h +include/dlib/control/lspi_abstract.h +include/dlib/control/mpc.h +include/dlib/control/mpc_abstract.h +include/dlib/cpp_pretty_printer.h +include/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_1.h +include/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_2.h +include/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_abstract.h +include/dlib/cpp_tokenizer.h +include/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h +include/dlib/cpp_tokenizer/cpp_tokenizer_kernel_abstract.h +include/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h +include/dlib/crc32.h +include/dlib/crc32/crc32_kernel_1.h +include/dlib/crc32/crc32_kernel_abstract.h +include/dlib/data_io.h +include/dlib/data_io/image_dataset_metadata.h +include/dlib/data_io/libsvm_io.h +include/dlib/data_io/libsvm_io_abstract.h +include/dlib/data_io/load_image_dataset.h +include/dlib/data_io/load_image_dataset_abstract.h +include/dlib/data_io/mnist.h +include/dlib/data_io/mnist_abstract.h +include/dlib/dir_nav.h +include/dlib/dir_nav/dir_nav_extensions.h +include/dlib/dir_nav/dir_nav_extensions_abstract.h +include/dlib/dir_nav/dir_nav_kernel_1.h +include/dlib/dir_nav/dir_nav_kernel_2.h +include/dlib/dir_nav/dir_nav_kernel_abstract.h +include/dlib/dir_nav/posix.h +include/dlib/dir_nav/windows.h +include/dlib/directed_graph.h +include/dlib/directed_graph/directed_graph_kernel_1.h +include/dlib/directed_graph/directed_graph_kernel_abstract.h +include/dlib/disjoint_subsets.h +include/dlib/disjoint_subsets/disjoint_subsets.h +include/dlib/disjoint_subsets/disjoint_subsets_abstract.h +include/dlib/dnn.h +include/dlib/dnn/core.h +include/dlib/dnn/core_abstract.h +include/dlib/dnn/cpu_dlib.h +include/dlib/dnn/cublas_dlibapi.h +include/dlib/dnn/cuda_data_ptr.h +include/dlib/dnn/cuda_dlib.h +include/dlib/dnn/cuda_errors.h +include/dlib/dnn/cuda_utils.h +include/dlib/dnn/cudnn_dlibapi.h +include/dlib/dnn/curand_dlibapi.h +include/dlib/dnn/cusolver_dlibapi.h +include/dlib/dnn/gpu_data.h +include/dlib/dnn/gpu_data_abstract.h +include/dlib/dnn/input.h +include/dlib/dnn/input_abstract.h +include/dlib/dnn/layers.h +include/dlib/dnn/layers_abstract.h +include/dlib/dnn/loss.h +include/dlib/dnn/loss_abstract.h +include/dlib/dnn/solvers.h +include/dlib/dnn/solvers_abstract.h +include/dlib/dnn/tensor.h +include/dlib/dnn/tensor_abstract.h +include/dlib/dnn/tensor_tools.h +include/dlib/dnn/trainer.h +include/dlib/dnn/trainer_abstract.h +include/dlib/dnn/utilities.h +include/dlib/dnn/utilities_abstract.h +include/dlib/dnn/validation.h +include/dlib/enable_if.h +include/dlib/entropy_decoder.h +include/dlib/entropy_decoder/entropy_decoder_kernel_1.h +include/dlib/entropy_decoder/entropy_decoder_kernel_2.h +include/dlib/entropy_decoder/entropy_decoder_kernel_abstract.h +include/dlib/entropy_decoder/entropy_decoder_kernel_c.h +include/dlib/entropy_decoder_model.h +include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_1.h +include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_2.h +include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_3.h +include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_4.h +include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_5.h +include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_6.h +include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_abstract.h +include/dlib/entropy_encoder.h +include/dlib/entropy_encoder/entropy_encoder_kernel_1.h +include/dlib/entropy_encoder/entropy_encoder_kernel_2.h +include/dlib/entropy_encoder/entropy_encoder_kernel_abstract.h +include/dlib/entropy_encoder/entropy_encoder_kernel_c.h +include/dlib/entropy_encoder_model.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_1.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_2.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_3.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_4.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_5.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_6.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_abstract.h +include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_c.h +include/dlib/error.h +include/dlib/external/cblas/cblas.h +include/dlib/external/cblas/cblas_f77.h +include/dlib/external/libjpeg/jchuff.h +include/dlib/external/libjpeg/jconfig.h +include/dlib/external/libjpeg/jdct.h +include/dlib/external/libjpeg/jdhuff.h +include/dlib/external/libjpeg/jerror.h +include/dlib/external/libjpeg/jinclude.h +include/dlib/external/libjpeg/jmemsys.h +include/dlib/external/libjpeg/jmorecfg.h +include/dlib/external/libjpeg/jpegint.h +include/dlib/external/libjpeg/jpeglib.h +include/dlib/external/libjpeg/jversion.h +include/dlib/external/libpng/png.h +include/dlib/external/libpng/pngconf.h +include/dlib/external/libpng/pngdebug.h +include/dlib/external/libpng/pnginfo.h +include/dlib/external/libpng/pnglibconf.h +include/dlib/external/libpng/pngpriv.h +include/dlib/external/libpng/pngstruct.h +include/dlib/external/zlib/crc32.h +include/dlib/external/zlib/deflate.h +include/dlib/external/zlib/gzguts.h +include/dlib/external/zlib/inffast.h +include/dlib/external/zlib/inffixed.h +include/dlib/external/zlib/inflate.h +include/dlib/external/zlib/inftrees.h +include/dlib/external/zlib/trees.h +include/dlib/external/zlib/zconf.h +include/dlib/external/zlib/zlib.h +include/dlib/external/zlib/zutil.h +include/dlib/filtering.h +include/dlib/filtering/kalman_filter.h +include/dlib/filtering/kalman_filter_abstract.h +include/dlib/filtering/rls_filter.h +include/dlib/filtering/rls_filter_abstract.h +include/dlib/float_details.h +include/dlib/general_hash/count_bits.h +include/dlib/general_hash/count_bits_abstract.h +include/dlib/general_hash/general_hash.h +include/dlib/general_hash/hash.h +include/dlib/general_hash/hash_abstract.h +include/dlib/general_hash/murmur_hash3.h +include/dlib/general_hash/murmur_hash3_abstract.h +include/dlib/general_hash/random_hashing.h +include/dlib/general_hash/random_hashing_abstract.h +include/dlib/geometry.h +include/dlib/geometry/border_enumerator.h +include/dlib/geometry/border_enumerator_abstract.h +include/dlib/geometry/drectangle.h +include/dlib/geometry/drectangle_abstract.h +include/dlib/geometry/point_transforms.h +include/dlib/geometry/point_transforms_abstract.h +include/dlib/geometry/rectangle.h +include/dlib/geometry/rectangle_abstract.h +include/dlib/geometry/vector.h +include/dlib/geometry/vector_abstract.h +include/dlib/graph.h +include/dlib/graph/graph_kernel_1.h +include/dlib/graph/graph_kernel_abstract.h +include/dlib/graph_cuts.h +include/dlib/graph_cuts/find_max_factor_graph_potts.h +include/dlib/graph_cuts/find_max_factor_graph_potts_abstract.h +include/dlib/graph_cuts/general_flow_graph.h +include/dlib/graph_cuts/general_potts_problem.h +include/dlib/graph_cuts/graph_labeler.h +include/dlib/graph_cuts/graph_labeler_abstract.h +include/dlib/graph_cuts/min_cut.h +include/dlib/graph_cuts/min_cut_abstract.h +include/dlib/graph_utils.h +include/dlib/graph_utils/edge_list_graphs.h +include/dlib/graph_utils/edge_list_graphs_abstract.h +include/dlib/graph_utils/find_k_nearest_neighbors_lsh.h +include/dlib/graph_utils/find_k_nearest_neighbors_lsh_abstract.h +include/dlib/graph_utils/function_objects.h +include/dlib/graph_utils/function_objects_abstract.h +include/dlib/graph_utils/graph_utils.h +include/dlib/graph_utils/graph_utils_abstract.h +include/dlib/graph_utils/ordered_sample_pair.h +include/dlib/graph_utils/ordered_sample_pair_abstract.h +include/dlib/graph_utils/sample_pair.h +include/dlib/graph_utils/sample_pair_abstract.h +include/dlib/graph_utils_threaded.h +include/dlib/gui_core.h +include/dlib/gui_core/gui_core_kernel_1.h +include/dlib/gui_core/gui_core_kernel_2.h +include/dlib/gui_core/gui_core_kernel_abstract.h +include/dlib/gui_core/windows.h +include/dlib/gui_core/xlib.h +include/dlib/gui_widgets.h +include/dlib/gui_widgets/base_widgets.h +include/dlib/gui_widgets/base_widgets_abstract.h +include/dlib/gui_widgets/canvas_drawing.h +include/dlib/gui_widgets/canvas_drawing_abstract.h +include/dlib/gui_widgets/drawable.h +include/dlib/gui_widgets/drawable_abstract.h +include/dlib/gui_widgets/fonts.h +include/dlib/gui_widgets/fonts_abstract.h +include/dlib/gui_widgets/nativefont.h +include/dlib/gui_widgets/style.h +include/dlib/gui_widgets/style_abstract.h +include/dlib/gui_widgets/widgets.h +include/dlib/gui_widgets/widgets_abstract.h +include/dlib/hash.h +include/dlib/hash_map.h +include/dlib/hash_map/hash_map_kernel_1.h +include/dlib/hash_map/hash_map_kernel_abstract.h +include/dlib/hash_map/hash_map_kernel_c.h +include/dlib/hash_set.h +include/dlib/hash_set/hash_set_kernel_1.h +include/dlib/hash_set/hash_set_kernel_abstract.h +include/dlib/hash_set/hash_set_kernel_c.h +include/dlib/hash_table.h +include/dlib/hash_table/hash_table_kernel_1.h +include/dlib/hash_table/hash_table_kernel_2.h +include/dlib/hash_table/hash_table_kernel_abstract.h +include/dlib/hash_table/hash_table_kernel_c.h +include/dlib/http_client/http_client.h +include/dlib/http_client/http_client_abstract.h +include/dlib/image_io.h +include/dlib/image_keypoint.h +include/dlib/image_keypoint/binned_vector_feature_image.h +include/dlib/image_keypoint/binned_vector_feature_image_abstract.h +include/dlib/image_keypoint/build_separable_poly_filters.h +include/dlib/image_keypoint/draw_surf_points.h +include/dlib/image_keypoint/draw_surf_points_abstract.h +include/dlib/image_keypoint/fine_hog_image.h +include/dlib/image_keypoint/fine_hog_image_abstract.h +include/dlib/image_keypoint/hashed_feature_image.h +include/dlib/image_keypoint/hashed_feature_image_abstract.h +include/dlib/image_keypoint/hessian_pyramid.h +include/dlib/image_keypoint/hessian_pyramid_abstract.h +include/dlib/image_keypoint/hog.h +include/dlib/image_keypoint/hog_abstract.h +include/dlib/image_keypoint/nearest_neighbor_feature_image.h +include/dlib/image_keypoint/nearest_neighbor_feature_image_abstract.h +include/dlib/image_keypoint/poly_image.h +include/dlib/image_keypoint/poly_image_abstract.h +include/dlib/image_keypoint/surf.h +include/dlib/image_keypoint/surf_abstract.h +include/dlib/image_loader/image_loader.h +include/dlib/image_loader/image_loader_abstract.h +include/dlib/image_loader/jpeg_loader.h +include/dlib/image_loader/jpeg_loader_abstract.h +include/dlib/image_loader/load_image.h +include/dlib/image_loader/load_image_abstract.h +include/dlib/image_loader/png_loader.h +include/dlib/image_loader/png_loader_abstract.h +include/dlib/image_processing.h +include/dlib/image_processing/box_overlap_testing.h +include/dlib/image_processing/box_overlap_testing_abstract.h +include/dlib/image_processing/correlation_tracker.h +include/dlib/image_processing/correlation_tracker_abstract.h +include/dlib/image_processing/detection_template_tools.h +include/dlib/image_processing/detection_template_tools_abstract.h +include/dlib/image_processing/frontal_face_detector.h +include/dlib/image_processing/frontal_face_detector_abstract.h +include/dlib/image_processing/full_object_detection.h +include/dlib/image_processing/full_object_detection_abstract.h +include/dlib/image_processing/generic_image.h +include/dlib/image_processing/object_detector.h +include/dlib/image_processing/object_detector_abstract.h +include/dlib/image_processing/remove_unobtainable_rectangles.h +include/dlib/image_processing/remove_unobtainable_rectangles_abstract.h +include/dlib/image_processing/render_face_detections.h +include/dlib/image_processing/render_face_detections_abstract.h +include/dlib/image_processing/scan_fhog_pyramid.h +include/dlib/image_processing/scan_fhog_pyramid_abstract.h +include/dlib/image_processing/scan_image.h +include/dlib/image_processing/scan_image_abstract.h +include/dlib/image_processing/scan_image_boxes.h +include/dlib/image_processing/scan_image_boxes_abstract.h +include/dlib/image_processing/scan_image_custom.h +include/dlib/image_processing/scan_image_custom_abstract.h +include/dlib/image_processing/scan_image_pyramid.h +include/dlib/image_processing/scan_image_pyramid_abstract.h +include/dlib/image_processing/scan_image_pyramid_tools.h +include/dlib/image_processing/scan_image_pyramid_tools_abstract.h +include/dlib/image_processing/setup_hashed_features.h +include/dlib/image_processing/setup_hashed_features_abstract.h +include/dlib/image_processing/shape_predictor.h +include/dlib/image_processing/shape_predictor_abstract.h +include/dlib/image_processing/shape_predictor_trainer.h +include/dlib/image_processing/shape_predictor_trainer_abstract.h +include/dlib/image_saver/dng_shared.h +include/dlib/image_saver/image_saver.h +include/dlib/image_saver/image_saver_abstract.h +include/dlib/image_saver/save_jpeg.h +include/dlib/image_saver/save_jpeg_abstract.h +include/dlib/image_saver/save_png.h +include/dlib/image_saver/save_png_abstract.h +include/dlib/image_transforms.h +include/dlib/image_transforms/assign_image.h +include/dlib/image_transforms/assign_image_abstract.h +include/dlib/image_transforms/colormaps.h +include/dlib/image_transforms/colormaps_abstract.h +include/dlib/image_transforms/draw.h +include/dlib/image_transforms/draw_abstract.h +include/dlib/image_transforms/edge_detector.h +include/dlib/image_transforms/edge_detector_abstract.h +include/dlib/image_transforms/equalize_histogram.h +include/dlib/image_transforms/equalize_histogram_abstract.h +include/dlib/image_transforms/fhog.h +include/dlib/image_transforms/fhog_abstract.h +include/dlib/image_transforms/hough_transform.h +include/dlib/image_transforms/hough_transform_abstract.h +include/dlib/image_transforms/image_pyramid.h +include/dlib/image_transforms/image_pyramid_abstract.h +include/dlib/image_transforms/integral_image.h +include/dlib/image_transforms/integral_image_abstract.h +include/dlib/image_transforms/interpolation.h +include/dlib/image_transforms/interpolation_abstract.h +include/dlib/image_transforms/label_connected_blobs.h +include/dlib/image_transforms/label_connected_blobs_abstract.h +include/dlib/image_transforms/lbp.h +include/dlib/image_transforms/lbp_abstract.h +include/dlib/image_transforms/morphological_operations.h +include/dlib/image_transforms/morphological_operations_abstract.h +include/dlib/image_transforms/random_color_transform.h +include/dlib/image_transforms/random_color_transform_abstract.h +include/dlib/image_transforms/random_cropper.h +include/dlib/image_transforms/random_cropper_abstract.h +include/dlib/image_transforms/segment_image.h +include/dlib/image_transforms/segment_image_abstract.h +include/dlib/image_transforms/spatial_filtering.h +include/dlib/image_transforms/spatial_filtering_abstract.h +include/dlib/image_transforms/thresholding.h +include/dlib/image_transforms/thresholding_abstract.h +include/dlib/interfaces/cmd_line_parser_option.h +include/dlib/interfaces/enumerable.h +include/dlib/interfaces/map_pair.h +include/dlib/interfaces/remover.h +include/dlib/iosockstream.h +include/dlib/iosockstream/iosockstream.h +include/dlib/iosockstream/iosockstream_abstract.h +include/dlib/is_kind.h +include/dlib/java/java_array.h +include/dlib/java/swig_api.h +include/dlib/linker.h +include/dlib/linker/linker_kernel_1.h +include/dlib/linker/linker_kernel_abstract.h +include/dlib/logger.h +include/dlib/logger/extra_logger_headers.h +include/dlib/logger/logger_config_file.h +include/dlib/logger/logger_kernel_1.h +include/dlib/logger/logger_kernel_abstract.h +include/dlib/lsh.h +include/dlib/lsh/create_random_projection_hash.h +include/dlib/lsh/create_random_projection_hash_abstract.h +include/dlib/lsh/hashes.h +include/dlib/lsh/hashes_abstract.h +include/dlib/lsh/projection_hash.h +include/dlib/lsh/projection_hash_abstract.h +include/dlib/lz77_buffer.h +include/dlib/lz77_buffer/lz77_buffer_kernel_1.h +include/dlib/lz77_buffer/lz77_buffer_kernel_2.h +include/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h +include/dlib/lz77_buffer/lz77_buffer_kernel_c.h +include/dlib/lzp_buffer.h +include/dlib/lzp_buffer/lzp_buffer_kernel_1.h +include/dlib/lzp_buffer/lzp_buffer_kernel_2.h +include/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h +include/dlib/lzp_buffer/lzp_buffer_kernel_c.h +include/dlib/manifold_regularization.h +include/dlib/manifold_regularization/linear_manifold_regularizer.h +include/dlib/manifold_regularization/linear_manifold_regularizer_abstract.h +include/dlib/map.h +include/dlib/map/map_kernel_1.h +include/dlib/map/map_kernel_abstract.h +include/dlib/map/map_kernel_c.h +include/dlib/matlab/call_matlab.h +include/dlib/matlab/subprocess_stream.h +include/dlib/matrix.h +include/dlib/matrix/cblas_constants.h +include/dlib/matrix/lapack/fortran_id.h +include/dlib/matrix/lapack/gees.h +include/dlib/matrix/lapack/geev.h +include/dlib/matrix/lapack/geqrf.h +include/dlib/matrix/lapack/gesdd.h +include/dlib/matrix/lapack/gesvd.h +include/dlib/matrix/lapack/getrf.h +include/dlib/matrix/lapack/ormqr.h +include/dlib/matrix/lapack/potrf.h +include/dlib/matrix/lapack/syev.h +include/dlib/matrix/lapack/syevr.h +include/dlib/matrix/matrix.h +include/dlib/matrix/matrix_abstract.h +include/dlib/matrix/matrix_assign.h +include/dlib/matrix/matrix_assign_fwd.h +include/dlib/matrix/matrix_blas_bindings.h +include/dlib/matrix/matrix_cholesky.h +include/dlib/matrix/matrix_conj_trans.h +include/dlib/matrix/matrix_conv.h +include/dlib/matrix/matrix_conv_abstract.h +include/dlib/matrix/matrix_data_layout.h +include/dlib/matrix/matrix_data_layout_abstract.h +include/dlib/matrix/matrix_default_mul.h +include/dlib/matrix/matrix_eigenvalue.h +include/dlib/matrix/matrix_exp.h +include/dlib/matrix/matrix_exp_abstract.h +include/dlib/matrix/matrix_expressions.h +include/dlib/matrix/matrix_fft.h +include/dlib/matrix/matrix_fft_abstract.h +include/dlib/matrix/matrix_fwd.h +include/dlib/matrix/matrix_generic_image.h +include/dlib/matrix/matrix_la.h +include/dlib/matrix/matrix_la_abstract.h +include/dlib/matrix/matrix_lu.h +include/dlib/matrix/matrix_mat.h +include/dlib/matrix/matrix_mat_abstract.h +include/dlib/matrix/matrix_math_functions.h +include/dlib/matrix/matrix_math_functions_abstract.h +include/dlib/matrix/matrix_op.h +include/dlib/matrix/matrix_qr.h +include/dlib/matrix/matrix_read_from_istream.h +include/dlib/matrix/matrix_subexp.h +include/dlib/matrix/matrix_subexp_abstract.h +include/dlib/matrix/matrix_trsm.h +include/dlib/matrix/matrix_utilities.h +include/dlib/matrix/matrix_utilities_abstract.h +include/dlib/matrix/symmetric_matrix_cache.h +include/dlib/matrix/symmetric_matrix_cache_abstract.h +include/dlib/md5.h +include/dlib/md5/md5_kernel_1.h +include/dlib/md5/md5_kernel_abstract.h +include/dlib/member_function_pointer.h +include/dlib/member_function_pointer/make_mfp.h +include/dlib/member_function_pointer/make_mfp_abstract.h +include/dlib/member_function_pointer/member_function_pointer_kernel_1.h +include/dlib/member_function_pointer/member_function_pointer_kernel_abstract.h +include/dlib/memory_manager.h +include/dlib/memory_manager/memory_manager_kernel_1.h +include/dlib/memory_manager/memory_manager_kernel_2.h +include/dlib/memory_manager/memory_manager_kernel_3.h +include/dlib/memory_manager/memory_manager_kernel_abstract.h +include/dlib/memory_manager_global.h +include/dlib/memory_manager_global/memory_manager_global_kernel_1.h +include/dlib/memory_manager_global/memory_manager_global_kernel_abstract.h +include/dlib/memory_manager_stateless.h +include/dlib/memory_manager_stateless/memory_manager_stateless_kernel_1.h +include/dlib/memory_manager_stateless/memory_manager_stateless_kernel_2.h +include/dlib/memory_manager_stateless/memory_manager_stateless_kernel_abstract.h +include/dlib/misc_api.h +include/dlib/misc_api/misc_api_kernel_1.h +include/dlib/misc_api/misc_api_kernel_2.h +include/dlib/misc_api/misc_api_kernel_abstract.h +include/dlib/misc_api/misc_api_shared.h +include/dlib/misc_api/posix.h +include/dlib/misc_api/windows.h +include/dlib/mlp.h +include/dlib/mlp/mlp_kernel_1.h +include/dlib/mlp/mlp_kernel_abstract.h +include/dlib/mlp/mlp_kernel_c.h +include/dlib/noncopyable.h +include/dlib/numeric_constants.h +include/dlib/numerical_integration.h +include/dlib/numerical_integration/integrate_function_adapt_simpson.h +include/dlib/numerical_integration/integrate_function_adapt_simpson_abstract.h +include/dlib/opencv.h +include/dlib/opencv/cv_image.h +include/dlib/opencv/cv_image_abstract.h +include/dlib/opencv/to_open_cv.h +include/dlib/opencv/to_open_cv_abstract.h +include/dlib/optimization.h +include/dlib/optimization/elastic_net.h +include/dlib/optimization/elastic_net_abstract.h +include/dlib/optimization/find_max_factor_graph_nmplp.h +include/dlib/optimization/find_max_factor_graph_nmplp_abstract.h +include/dlib/optimization/find_max_factor_graph_viterbi.h +include/dlib/optimization/find_max_factor_graph_viterbi_abstract.h +include/dlib/optimization/find_max_parse_cky.h +include/dlib/optimization/find_max_parse_cky_abstract.h +include/dlib/optimization/find_optimal_parameters.h +include/dlib/optimization/find_optimal_parameters_abstract.h +include/dlib/optimization/max_cost_assignment.h +include/dlib/optimization/max_cost_assignment_abstract.h +include/dlib/optimization/max_sum_submatrix.h +include/dlib/optimization/max_sum_submatrix_abstract.h +include/dlib/optimization/optimization.h +include/dlib/optimization/optimization_abstract.h +include/dlib/optimization/optimization_bobyqa.h +include/dlib/optimization/optimization_bobyqa_abstract.h +include/dlib/optimization/optimization_least_squares.h +include/dlib/optimization/optimization_least_squares_abstract.h +include/dlib/optimization/optimization_line_search.h +include/dlib/optimization/optimization_line_search_abstract.h +include/dlib/optimization/optimization_oca.h +include/dlib/optimization/optimization_oca_abstract.h +include/dlib/optimization/optimization_search_strategies.h +include/dlib/optimization/optimization_search_strategies_abstract.h +include/dlib/optimization/optimization_solve_qp2_using_smo.h +include/dlib/optimization/optimization_solve_qp2_using_smo_abstract.h +include/dlib/optimization/optimization_solve_qp3_using_smo.h +include/dlib/optimization/optimization_solve_qp3_using_smo_abstract.h +include/dlib/optimization/optimization_solve_qp_using_smo.h +include/dlib/optimization/optimization_solve_qp_using_smo_abstract.h +include/dlib/optimization/optimization_stop_strategies.h +include/dlib/optimization/optimization_stop_strategies_abstract.h +include/dlib/optimization/optimization_trust_region.h +include/dlib/optimization/optimization_trust_region_abstract.h +include/dlib/pipe.h +include/dlib/pipe/pipe_kernel_1.h +include/dlib/pipe/pipe_kernel_abstract.h +include/dlib/pixel.h +include/dlib/platform.h +include/dlib/python.h +include/dlib/python/boost_python_utils.h +include/dlib/python/numpy.h +include/dlib/python/numpy_image.h +include/dlib/python/pyassert.h +include/dlib/python/serialize_pickle.h +include/dlib/quantum_computing.h +include/dlib/quantum_computing/quantum_computing.h +include/dlib/quantum_computing/quantum_computing_abstract.h +include/dlib/queue.h +include/dlib/queue/queue_kernel_1.h +include/dlib/queue/queue_kernel_2.h +include/dlib/queue/queue_kernel_abstract.h +include/dlib/queue/queue_kernel_c.h +include/dlib/queue/queue_sort_1.h +include/dlib/queue/queue_sort_abstract.h +include/dlib/rand.h +include/dlib/rand/mersenne_twister.h +include/dlib/rand/rand_kernel_1.h +include/dlib/rand/rand_kernel_abstract.h +include/dlib/ref.h +include/dlib/reference_counter.h +include/dlib/reference_counter/reference_counter_kernel_1.h +include/dlib/reference_counter/reference_counter_kernel_abstract.h +include/dlib/revision.h +include/dlib/sequence.h +include/dlib/sequence/sequence_compare_1.h +include/dlib/sequence/sequence_compare_abstract.h +include/dlib/sequence/sequence_kernel_1.h +include/dlib/sequence/sequence_kernel_2.h +include/dlib/sequence/sequence_kernel_abstract.h +include/dlib/sequence/sequence_kernel_c.h +include/dlib/sequence/sequence_sort_1.h +include/dlib/sequence/sequence_sort_2.h +include/dlib/sequence/sequence_sort_abstract.h +include/dlib/serialize.h +include/dlib/server.h +include/dlib/server/server_http.h +include/dlib/server/server_http_abstract.h +include/dlib/server/server_iostream.h +include/dlib/server/server_iostream_abstract.h +include/dlib/server/server_kernel.h +include/dlib/server/server_kernel_abstract.h +include/dlib/set.h +include/dlib/set/set_compare_1.h +include/dlib/set/set_compare_abstract.h +include/dlib/set/set_kernel_1.h +include/dlib/set/set_kernel_abstract.h +include/dlib/set/set_kernel_c.h +include/dlib/set_utils.h +include/dlib/set_utils/set_utils.h +include/dlib/set_utils/set_utils_abstract.h +include/dlib/simd.h +include/dlib/simd/simd4f.h +include/dlib/simd/simd4i.h +include/dlib/simd/simd8f.h +include/dlib/simd/simd8i.h +include/dlib/simd/simd_check.h +include/dlib/sliding_buffer.h +include/dlib/sliding_buffer/circular_buffer.h +include/dlib/sliding_buffer/circular_buffer_abstract.h +include/dlib/sliding_buffer/sliding_buffer_kernel_1.h +include/dlib/sliding_buffer/sliding_buffer_kernel_abstract.h +include/dlib/sliding_buffer/sliding_buffer_kernel_c.h +include/dlib/smart_pointers.h +include/dlib/smart_pointers/scoped_ptr.h +include/dlib/smart_pointers/shared_ptr.h +include/dlib/smart_pointers/shared_ptr_abstract.h +include/dlib/smart_pointers/shared_ptr_thread_safe.h +include/dlib/smart_pointers/shared_ptr_thread_safe_abstract.h +include/dlib/smart_pointers/weak_ptr.h +include/dlib/smart_pointers/weak_ptr_abstract.h +include/dlib/smart_pointers_thread_safe.h +include/dlib/sockets.h +include/dlib/sockets/posix.h +include/dlib/sockets/sockets_extensions.h +include/dlib/sockets/sockets_extensions_abstract.h +include/dlib/sockets/sockets_kernel_1.h +include/dlib/sockets/sockets_kernel_2.h +include/dlib/sockets/sockets_kernel_abstract.h +include/dlib/sockets/windows.h +include/dlib/sockstreambuf.h +include/dlib/sockstreambuf/sockstreambuf.h +include/dlib/sockstreambuf/sockstreambuf_abstract.h +include/dlib/sockstreambuf/sockstreambuf_unbuffered.h +include/dlib/sort.h +include/dlib/sparse_vector.h +include/dlib/sqlite.h +include/dlib/sqlite/sqlite.h +include/dlib/sqlite/sqlite_abstract.h +include/dlib/sqlite/sqlite_tools.h +include/dlib/sqlite/sqlite_tools_abstract.h +include/dlib/stack.h +include/dlib/stack/stack_kernel_1.h +include/dlib/stack/stack_kernel_abstract.h +include/dlib/stack/stack_kernel_c.h +include/dlib/stack_trace.h +include/dlib/static_map.h +include/dlib/static_map/static_map_kernel_1.h +include/dlib/static_map/static_map_kernel_abstract.h +include/dlib/static_map/static_map_kernel_c.h +include/dlib/static_set.h +include/dlib/static_set/static_set_compare_1.h +include/dlib/static_set/static_set_compare_abstract.h +include/dlib/static_set/static_set_kernel_1.h +include/dlib/static_set/static_set_kernel_abstract.h +include/dlib/static_set/static_set_kernel_c.h +include/dlib/statistics.h +include/dlib/statistics/average_precision.h +include/dlib/statistics/average_precision_abstract.h +include/dlib/statistics/cca.h +include/dlib/statistics/cca_abstract.h +include/dlib/statistics/dpca.h +include/dlib/statistics/dpca_abstract.h +include/dlib/statistics/image_feature_sampling.h +include/dlib/statistics/image_feature_sampling_abstract.h +include/dlib/statistics/lda.h +include/dlib/statistics/lda_abstract.h +include/dlib/statistics/random_subset_selector.h +include/dlib/statistics/random_subset_selector_abstract.h +include/dlib/statistics/running_gradient.h +include/dlib/statistics/running_gradient_abstract.h +include/dlib/statistics/sammon.h +include/dlib/statistics/sammon_abstract.h +include/dlib/statistics/statistics.h +include/dlib/statistics/statistics_abstract.h +include/dlib/statistics/vector_normalizer_frobmetric.h +include/dlib/statistics/vector_normalizer_frobmetric_abstract.h +include/dlib/std_allocator.h +include/dlib/stl_checked.h +include/dlib/stl_checked/std_vector_c.h +include/dlib/stl_checked/std_vector_c_abstract.h +include/dlib/string.h +include/dlib/string/string.h +include/dlib/string/string_abstract.h +include/dlib/svm.h +include/dlib/svm/active_learning.h +include/dlib/svm/active_learning_abstract.h +include/dlib/svm/assignment_function.h +include/dlib/svm/assignment_function_abstract.h +include/dlib/svm/cross_validate_assignment_trainer.h +include/dlib/svm/cross_validate_assignment_trainer_abstract.h +include/dlib/svm/cross_validate_graph_labeling_trainer.h +include/dlib/svm/cross_validate_graph_labeling_trainer_abstract.h +include/dlib/svm/cross_validate_multiclass_trainer.h +include/dlib/svm/cross_validate_multiclass_trainer_abstract.h +include/dlib/svm/cross_validate_object_detection_trainer.h +include/dlib/svm/cross_validate_object_detection_trainer_abstract.h +include/dlib/svm/cross_validate_regression_trainer.h +include/dlib/svm/cross_validate_regression_trainer_abstract.h +include/dlib/svm/cross_validate_sequence_labeler.h +include/dlib/svm/cross_validate_sequence_labeler_abstract.h +include/dlib/svm/cross_validate_sequence_segmenter.h +include/dlib/svm/cross_validate_sequence_segmenter_abstract.h +include/dlib/svm/cross_validate_track_association_trainer.h +include/dlib/svm/cross_validate_track_association_trainer_abstract.h +include/dlib/svm/empirical_kernel_map.h +include/dlib/svm/empirical_kernel_map_abstract.h +include/dlib/svm/feature_ranking.h +include/dlib/svm/feature_ranking_abstract.h +include/dlib/svm/function.h +include/dlib/svm/function_abstract.h +include/dlib/svm/kcentroid.h +include/dlib/svm/kcentroid_abstract.h +include/dlib/svm/kcentroid_overloads.h +include/dlib/svm/kernel.h +include/dlib/svm/kernel_abstract.h +include/dlib/svm/kernel_matrix.h +include/dlib/svm/kernel_matrix_abstract.h +include/dlib/svm/kkmeans.h +include/dlib/svm/kkmeans_abstract.h +include/dlib/svm/krls.h +include/dlib/svm/krls_abstract.h +include/dlib/svm/krr_trainer.h +include/dlib/svm/krr_trainer_abstract.h +include/dlib/svm/linearly_independent_subset_finder.h +include/dlib/svm/linearly_independent_subset_finder_abstract.h +include/dlib/svm/multiclass_tools.h +include/dlib/svm/multiclass_tools_abstract.h +include/dlib/svm/null_df.h +include/dlib/svm/null_trainer.h +include/dlib/svm/null_trainer_abstract.h +include/dlib/svm/num_nonnegative_weights.h +include/dlib/svm/one_vs_all_decision_function.h +include/dlib/svm/one_vs_all_decision_function_abstract.h +include/dlib/svm/one_vs_all_trainer.h +include/dlib/svm/one_vs_all_trainer_abstract.h +include/dlib/svm/one_vs_one_decision_function.h +include/dlib/svm/one_vs_one_decision_function_abstract.h +include/dlib/svm/one_vs_one_trainer.h +include/dlib/svm/one_vs_one_trainer_abstract.h +include/dlib/svm/pegasos.h +include/dlib/svm/pegasos_abstract.h +include/dlib/svm/ranking_tools.h +include/dlib/svm/ranking_tools_abstract.h +include/dlib/svm/rbf_network.h +include/dlib/svm/rbf_network_abstract.h +include/dlib/svm/reduced.h +include/dlib/svm/reduced_abstract.h +include/dlib/svm/rls.h +include/dlib/svm/rls_abstract.h +include/dlib/svm/roc_trainer.h +include/dlib/svm/roc_trainer_abstract.h +include/dlib/svm/rr_trainer.h +include/dlib/svm/rr_trainer_abstract.h +include/dlib/svm/rvm.h +include/dlib/svm/rvm_abstract.h +include/dlib/svm/sequence_labeler.h +include/dlib/svm/sequence_labeler_abstract.h +include/dlib/svm/sequence_segmenter.h +include/dlib/svm/sequence_segmenter_abstract.h +include/dlib/svm/simplify_linear_decision_function.h +include/dlib/svm/simplify_linear_decision_function_abstract.h +include/dlib/svm/sort_basis_vectors.h +include/dlib/svm/sort_basis_vectors_abstract.h +include/dlib/svm/sparse_kernel.h +include/dlib/svm/sparse_kernel_abstract.h +include/dlib/svm/sparse_vector.h +include/dlib/svm/sparse_vector_abstract.h +include/dlib/svm/structural_assignment_trainer.h +include/dlib/svm/structural_assignment_trainer_abstract.h +include/dlib/svm/structural_graph_labeling_trainer.h +include/dlib/svm/structural_graph_labeling_trainer_abstract.h +include/dlib/svm/structural_object_detection_trainer.h +include/dlib/svm/structural_object_detection_trainer_abstract.h +include/dlib/svm/structural_sequence_labeling_trainer.h +include/dlib/svm/structural_sequence_labeling_trainer_abstract.h +include/dlib/svm/structural_sequence_segmentation_trainer.h +include/dlib/svm/structural_sequence_segmentation_trainer_abstract.h +include/dlib/svm/structural_svm_assignment_problem.h +include/dlib/svm/structural_svm_assignment_problem_abstract.h +include/dlib/svm/structural_svm_distributed.h +include/dlib/svm/structural_svm_distributed_abstract.h +include/dlib/svm/structural_svm_graph_labeling_problem.h +include/dlib/svm/structural_svm_graph_labeling_problem_abstract.h +include/dlib/svm/structural_svm_object_detection_problem.h +include/dlib/svm/structural_svm_object_detection_problem_abstract.h +include/dlib/svm/structural_svm_problem.h +include/dlib/svm/structural_svm_problem_abstract.h +include/dlib/svm/structural_svm_problem_threaded.h +include/dlib/svm/structural_svm_problem_threaded_abstract.h +include/dlib/svm/structural_svm_sequence_labeling_problem.h +include/dlib/svm/structural_svm_sequence_labeling_problem_abstract.h +include/dlib/svm/structural_track_association_trainer.h +include/dlib/svm/structural_track_association_trainer_abstract.h +include/dlib/svm/svm.h +include/dlib/svm/svm_abstract.h +include/dlib/svm/svm_c_ekm_trainer.h +include/dlib/svm/svm_c_ekm_trainer_abstract.h +include/dlib/svm/svm_c_linear_dcd_trainer.h +include/dlib/svm/svm_c_linear_dcd_trainer_abstract.h +include/dlib/svm/svm_c_linear_trainer.h +include/dlib/svm/svm_c_linear_trainer_abstract.h +include/dlib/svm/svm_c_trainer.h +include/dlib/svm/svm_c_trainer_abstract.h +include/dlib/svm/svm_multiclass_linear_trainer.h +include/dlib/svm/svm_multiclass_linear_trainer_abstract.h +include/dlib/svm/svm_nu_trainer.h +include/dlib/svm/svm_nu_trainer_abstract.h +include/dlib/svm/svm_one_class_trainer.h +include/dlib/svm/svm_one_class_trainer_abstract.h +include/dlib/svm/svm_rank_trainer.h +include/dlib/svm/svm_rank_trainer_abstract.h +include/dlib/svm/svm_threaded.h +include/dlib/svm/svm_threaded_abstract.h +include/dlib/svm/svr_linear_trainer.h +include/dlib/svm/svr_linear_trainer_abstract.h +include/dlib/svm/svr_trainer.h +include/dlib/svm/svr_trainer_abstract.h +include/dlib/svm/track_association_function.h +include/dlib/svm/track_association_function_abstract.h +include/dlib/svm_threaded.h +include/dlib/sync_extension.h +include/dlib/sync_extension/sync_extension_kernel_1.h +include/dlib/sync_extension/sync_extension_kernel_abstract.h +include/dlib/test/binary_search_tree.h +include/dlib/test/checkerboard.h +include/dlib/test/cmd_line_parser.h +include/dlib/test/conditioning_class.h +include/dlib/test/create_iris_datafile.h +include/dlib/test/optimization_test_functions.h +include/dlib/test/tester.h +include/dlib/threads.h +include/dlib/threads/async.h +include/dlib/threads/async_abstract.h +include/dlib/threads/auto_mutex_extension.h +include/dlib/threads/auto_mutex_extension_abstract.h +include/dlib/threads/auto_unlock_extension.h +include/dlib/threads/auto_unlock_extension_abstract.h +include/dlib/threads/create_new_thread_extension.h +include/dlib/threads/create_new_thread_extension_abstract.h +include/dlib/threads/multithreaded_object_extension.h +include/dlib/threads/multithreaded_object_extension_abstract.h +include/dlib/threads/parallel_for_extension.h +include/dlib/threads/parallel_for_extension_abstract.h +include/dlib/threads/posix.h +include/dlib/threads/read_write_mutex_extension.h +include/dlib/threads/read_write_mutex_extension_abstract.h +include/dlib/threads/rmutex_extension.h +include/dlib/threads/rmutex_extension_abstract.h +include/dlib/threads/rsignaler_extension.h +include/dlib/threads/rsignaler_extension_abstract.h +include/dlib/threads/thread_function_extension.h +include/dlib/threads/thread_function_extension_abstract.h +include/dlib/threads/thread_pool_extension.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***