├── .gitmodules ├── LICENSE ├── README.md └── src ├── DFDN ├── areas.mat ├── models │ ├── __init__.py │ ├── base_model.py │ ├── models.py │ ├── networks.py │ └── pix2pix_model.py ├── options │ ├── __init__.py │ ├── base_options.py │ └── testsingle_options.py └── util │ ├── __init__.py │ ├── image_pool.py │ └── util.py ├── emotionNet └── fertrainImgLarge.py ├── facialDetails.py ├── imgs ├── Supplemental_Material.pdf └── teaser.png ├── landmarkDetector ├── OpenFace.sln ├── download_libraries.ps1 ├── download_models.ps1 ├── exe │ └── FaceLandmarkImg │ │ ├── FaceLandmarkImg.vcxproj │ │ ├── FaceLandmarkImg.vcxproj.user │ │ └── main.cpp └── lib │ ├── 3rdParty │ ├── OpenBLAS │ │ ├── OpenBLAS_64.props │ │ ├── OpenBLAS_x86.props │ │ ├── bin │ │ │ ├── x64 │ │ │ │ ├── flang.dll │ │ │ │ ├── flangrti.dll │ │ │ │ ├── libomp.dll │ │ │ │ └── openblas.dll │ │ │ └── x86 │ │ │ │ ├── libgcc_s_sjlj-1.dll │ │ │ │ ├── libgfortran-3.dll │ │ │ │ ├── libopenblas.dll │ │ │ │ └── libquadmath-0.dll │ │ ├── include │ │ │ ├── cblas.h │ │ │ ├── f77blas.h │ │ │ ├── lapacke.h │ │ │ ├── lapacke_config.h │ │ │ ├── lapacke_mangling.h │ │ │ ├── lapacke_utils.h │ │ │ └── openblas_config.h │ │ ├── lib │ │ │ ├── x64 │ │ │ │ └── openblas.lib │ │ │ └── x86 │ │ │ │ └── libopenblas.dll.a │ │ ├── readme.txt │ │ └── readme_2.txt │ ├── OpenCV │ │ ├── classifiers │ │ │ ├── haarcascade_frontalface_alt.xml │ │ │ ├── haarcascade_frontalface_alt2.xml │ │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ │ ├── haarcascade_frontalface_default.xml │ │ │ └── haarcascade_profileface.xml │ │ ├── include │ │ │ └── opencv2 │ │ │ │ ├── calib3d.hpp │ │ │ │ ├── calib3d │ │ │ │ ├── calib3d.hpp │ │ │ │ └── calib3d_c.h │ │ │ │ ├── core.hpp │ │ │ │ ├── core │ │ │ │ ├── affine.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── bindings_utils.hpp │ │ │ │ ├── bufferpool.hpp │ │ │ │ ├── check.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core_c.h │ │ │ │ ├── cuda.hpp │ │ │ │ ├── cuda.inl.hpp │ │ │ │ ├── cuda │ │ │ │ │ ├── block.hpp │ │ │ │ │ ├── border_interpolate.hpp │ │ │ │ │ ├── color.hpp │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── datamov_utils.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ │ ├── emulation.hpp │ │ │ │ │ ├── filters.hpp │ │ │ │ │ ├── funcattrib.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── saturate_cast.hpp │ │ │ │ │ ├── scan.hpp │ │ │ │ │ ├── simd_functions.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── vec_distance.hpp │ │ │ │ │ ├── vec_math.hpp │ │ │ │ │ ├── vec_traits.hpp │ │ │ │ │ ├── warp.hpp │ │ │ │ │ ├── warp_reduce.hpp │ │ │ │ │ └── warp_shuffle.hpp │ │ │ │ ├── cuda_stream_accessor.hpp │ │ │ │ ├── cuda_types.hpp │ │ │ │ ├── cv_cpu_dispatch.h │ │ │ │ ├── cv_cpu_helper.h │ │ │ │ ├── cvdef.h │ │ │ │ ├── cvstd.hpp │ │ │ │ ├── cvstd.inl.hpp │ │ │ │ ├── cvstd_wrapper.hpp │ │ │ │ ├── directx.hpp │ │ │ │ ├── eigen.hpp │ │ │ │ ├── fast_math.hpp │ │ │ │ ├── hal │ │ │ │ │ ├── hal.hpp │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── intrin.hpp │ │ │ │ │ ├── intrin_avx.hpp │ │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ │ ├── intrin_forward.hpp │ │ │ │ │ ├── intrin_neon.hpp │ │ │ │ │ ├── intrin_sse.hpp │ │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ │ └── intrin_vsx.hpp │ │ │ │ ├── mat.hpp │ │ │ │ ├── mat.inl.hpp │ │ │ │ ├── matx.hpp │ │ │ │ ├── neon_utils.hpp │ │ │ │ ├── ocl.hpp │ │ │ │ ├── ocl_genbase.hpp │ │ │ │ ├── opencl │ │ │ │ │ ├── ocl_defs.hpp │ │ │ │ │ ├── opencl_info.hpp │ │ │ │ │ ├── opencl_svm.hpp │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── autogenerated │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ │ ├── opengl.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── optim.hpp │ │ │ │ ├── ovx.hpp │ │ │ │ ├── persistence.hpp │ │ │ │ ├── saturate.hpp │ │ │ │ ├── softfloat.hpp │ │ │ │ ├── sse_utils.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── types.hpp │ │ │ │ ├── types_c.h │ │ │ │ ├── utility.hpp │ │ │ │ ├── utils │ │ │ │ │ ├── filesystem.hpp │ │ │ │ │ ├── logger.defines.hpp │ │ │ │ │ ├── logger.hpp │ │ │ │ │ └── trace.hpp │ │ │ │ ├── va_intel.hpp │ │ │ │ ├── version.hpp │ │ │ │ └── vsx_utils.hpp │ │ │ │ ├── cvconfig.h │ │ │ │ ├── dnn.hpp │ │ │ │ ├── dnn │ │ │ │ ├── all_layers.hpp │ │ │ │ ├── dict.hpp │ │ │ │ ├── dnn.hpp │ │ │ │ ├── dnn.inl.hpp │ │ │ │ ├── layer.details.hpp │ │ │ │ ├── layer.hpp │ │ │ │ ├── shape_utils.hpp │ │ │ │ ├── utils │ │ │ │ │ └── inference_engine.hpp │ │ │ │ └── version.hpp │ │ │ │ ├── features2d.hpp │ │ │ │ ├── features2d │ │ │ │ ├── features2d.hpp │ │ │ │ └── hal │ │ │ │ │ └── interface.h │ │ │ │ ├── flann.hpp │ │ │ │ ├── flann │ │ │ │ ├── all_indices.h │ │ │ │ ├── allocator.h │ │ │ │ ├── any.h │ │ │ │ ├── autotuned_index.h │ │ │ │ ├── composite_index.h │ │ │ │ ├── config.h │ │ │ │ ├── defines.h │ │ │ │ ├── dist.h │ │ │ │ ├── dummy.h │ │ │ │ ├── dynamic_bitset.h │ │ │ │ ├── flann.hpp │ │ │ │ ├── flann_base.hpp │ │ │ │ ├── general.h │ │ │ │ ├── ground_truth.h │ │ │ │ ├── heap.h │ │ │ │ ├── hierarchical_clustering_index.h │ │ │ │ ├── index_testing.h │ │ │ │ ├── kdtree_index.h │ │ │ │ ├── kdtree_single_index.h │ │ │ │ ├── kmeans_index.h │ │ │ │ ├── linear_index.h │ │ │ │ ├── logger.h │ │ │ │ ├── lsh_index.h │ │ │ │ ├── lsh_table.h │ │ │ │ ├── matrix.h │ │ │ │ ├── miniflann.hpp │ │ │ │ ├── nn_index.h │ │ │ │ ├── object_factory.h │ │ │ │ ├── params.h │ │ │ │ ├── random.h │ │ │ │ ├── result_set.h │ │ │ │ ├── sampling.h │ │ │ │ ├── saving.h │ │ │ │ ├── simplex_downhill.h │ │ │ │ └── timer.h │ │ │ │ ├── gapi.hpp │ │ │ │ ├── gapi │ │ │ │ ├── core.hpp │ │ │ │ ├── cpu │ │ │ │ │ ├── core.hpp │ │ │ │ │ ├── gcpukernel.hpp │ │ │ │ │ └── imgproc.hpp │ │ │ │ ├── fluid │ │ │ │ │ ├── core.hpp │ │ │ │ │ ├── gfluidbuffer.hpp │ │ │ │ │ ├── gfluidkernel.hpp │ │ │ │ │ └── imgproc.hpp │ │ │ │ ├── garg.hpp │ │ │ │ ├── garray.hpp │ │ │ │ ├── gcall.hpp │ │ │ │ ├── gcommon.hpp │ │ │ │ ├── gcompiled.hpp │ │ │ │ ├── gcompoundkernel.hpp │ │ │ │ ├── gcomputation.hpp │ │ │ │ ├── gkernel.hpp │ │ │ │ ├── gmat.hpp │ │ │ │ ├── gmetaarg.hpp │ │ │ │ ├── gproto.hpp │ │ │ │ ├── gpu │ │ │ │ │ ├── core.hpp │ │ │ │ │ ├── ggpukernel.hpp │ │ │ │ │ └── imgproc.hpp │ │ │ │ ├── gscalar.hpp │ │ │ │ ├── gtype_traits.hpp │ │ │ │ ├── gtyped.hpp │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── ocl │ │ │ │ │ ├── core.hpp │ │ │ │ │ ├── goclkernel.hpp │ │ │ │ │ └── imgproc.hpp │ │ │ │ ├── opencv_includes.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── own │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── convert.hpp │ │ │ │ │ ├── cvdefs.hpp │ │ │ │ │ ├── exports.hpp │ │ │ │ │ ├── mat.hpp │ │ │ │ │ ├── saturate.hpp │ │ │ │ │ ├── scalar.hpp │ │ │ │ │ └── types.hpp │ │ │ │ └── util │ │ │ │ │ ├── any.hpp │ │ │ │ │ ├── compiler_hints.hpp │ │ │ │ │ ├── optional.hpp │ │ │ │ │ ├── throw.hpp │ │ │ │ │ ├── util.hpp │ │ │ │ │ └── variant.hpp │ │ │ │ ├── highgui.hpp │ │ │ │ ├── highgui │ │ │ │ ├── highgui.hpp │ │ │ │ └── highgui_c.h │ │ │ │ ├── imgcodecs.hpp │ │ │ │ ├── imgcodecs │ │ │ │ ├── imgcodecs.hpp │ │ │ │ ├── imgcodecs_c.h │ │ │ │ ├── ios.h │ │ │ │ └── legacy │ │ │ │ │ └── constants_c.h │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc │ │ │ │ ├── detail │ │ │ │ │ └── gcgraph.hpp │ │ │ │ ├── hal │ │ │ │ │ ├── hal.hpp │ │ │ │ │ └── interface.h │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc_c.h │ │ │ │ └── types_c.h │ │ │ │ ├── ml.hpp │ │ │ │ ├── ml │ │ │ │ ├── ml.hpp │ │ │ │ └── ml.inl.hpp │ │ │ │ ├── objdetect.hpp │ │ │ │ ├── objdetect │ │ │ │ ├── detection_based_tracker.hpp │ │ │ │ └── objdetect.hpp │ │ │ │ ├── opencv.hpp │ │ │ │ ├── opencv_modules.hpp │ │ │ │ ├── photo.hpp │ │ │ │ ├── photo │ │ │ │ ├── cuda.hpp │ │ │ │ ├── legacy │ │ │ │ │ └── constants_c.h │ │ │ │ └── photo.hpp │ │ │ │ ├── stitching.hpp │ │ │ │ ├── stitching │ │ │ │ ├── detail │ │ │ │ │ ├── autocalib.hpp │ │ │ │ │ ├── blenders.hpp │ │ │ │ │ ├── camera.hpp │ │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ │ ├── matchers.hpp │ │ │ │ │ ├── motion_estimators.hpp │ │ │ │ │ ├── seam_finders.hpp │ │ │ │ │ ├── timelapsers.hpp │ │ │ │ │ ├── util.hpp │ │ │ │ │ ├── util_inl.hpp │ │ │ │ │ ├── warpers.hpp │ │ │ │ │ └── warpers_inl.hpp │ │ │ │ └── warpers.hpp │ │ │ │ ├── video.hpp │ │ │ │ ├── video │ │ │ │ ├── background_segm.hpp │ │ │ │ ├── legacy │ │ │ │ │ └── constants_c.h │ │ │ │ ├── tracking.hpp │ │ │ │ └── video.hpp │ │ │ │ ├── videoio.hpp │ │ │ │ ├── videoio │ │ │ │ ├── cap_ios.h │ │ │ │ ├── legacy │ │ │ │ │ └── constants_c.h │ │ │ │ ├── registry.hpp │ │ │ │ ├── videoio.hpp │ │ │ │ └── videoio_c.h │ │ │ │ └── world.hpp │ │ ├── openCV.props │ │ ├── x64 │ │ │ └── v141 │ │ │ │ └── lib │ │ │ │ ├── Debug │ │ │ │ └── opencv_world410.lib │ │ │ │ └── Release │ │ │ │ └── opencv_world410.lib │ │ └── x86 │ │ │ └── v141 │ │ │ └── lib │ │ │ ├── Debug │ │ │ └── opencv_world410.lib │ │ │ └── Release │ │ │ └── opencv_world410.lib │ └── dlib │ │ ├── LICENSE.txt │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── README.txt │ │ ├── dlib.props │ │ ├── include │ │ └── dlib │ │ │ ├── algs.h │ │ │ ├── any.h │ │ │ ├── any │ │ │ ├── any.h │ │ │ ├── any_abstract.h │ │ │ ├── any_decision_function.h │ │ │ ├── any_decision_function_abstract.h │ │ │ ├── any_function.h │ │ │ ├── any_function_abstract.h │ │ │ ├── any_function_impl.h │ │ │ ├── any_function_impl2.h │ │ │ ├── any_trainer.h │ │ │ └── any_trainer_abstract.h │ │ │ ├── array.h │ │ │ ├── array │ │ │ ├── array_kernel.h │ │ │ ├── array_kernel_abstract.h │ │ │ ├── array_tools.h │ │ │ └── array_tools_abstract.h │ │ │ ├── array2d.h │ │ │ ├── array2d │ │ │ ├── array2d_generic_image.h │ │ │ ├── array2d_kernel.h │ │ │ ├── array2d_kernel_abstract.h │ │ │ └── serialize_pixel_overloads.h │ │ │ ├── assert.h │ │ │ ├── base64.h │ │ │ ├── base64 │ │ │ ├── base64_kernel_1.h │ │ │ └── base64_kernel_abstract.h │ │ │ ├── bayes_utils.h │ │ │ ├── bayes_utils │ │ │ ├── bayes_utils.h │ │ │ └── bayes_utils_abstract.h │ │ │ ├── bigint.h │ │ │ ├── bigint │ │ │ ├── bigint_kernel_1.h │ │ │ ├── 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.h │ │ │ ├── bit_stream_kernel_abstract.h │ │ │ ├── bit_stream_kernel_c.h │ │ │ ├── bit_stream_multi_1.h │ │ │ ├── bit_stream_multi_abstract.h │ │ │ └── bit_stream_multi_c.h │ │ │ ├── bits │ │ │ └── c++config.h │ │ │ ├── bound_function_pointer.h │ │ │ ├── bound_function_pointer │ │ │ ├── bound_function_pointer_kernel_1.h │ │ │ └── bound_function_pointer_kernel_abstract.h │ │ │ ├── bridge.h │ │ │ ├── bridge │ │ │ ├── bridge.h │ │ │ └── bridge_abstract.h │ │ │ ├── bsp.h │ │ │ ├── bsp │ │ │ ├── bsp.h │ │ │ └── bsp_abstract.h │ │ │ ├── byte_orderer.h │ │ │ ├── byte_orderer │ │ │ ├── byte_orderer_kernel_1.h │ │ │ └── byte_orderer_kernel_abstract.h │ │ │ ├── clustering.h │ │ │ ├── clustering │ │ │ ├── bottom_up_cluster.h │ │ │ ├── bottom_up_cluster_abstract.h │ │ │ ├── chinese_whispers.h │ │ │ ├── chinese_whispers_abstract.h │ │ │ ├── modularity_clustering.h │ │ │ ├── modularity_clustering_abstract.h │ │ │ ├── spectral_cluster.h │ │ │ └── spectral_cluster_abstract.h │ │ │ ├── cmake_utils │ │ │ ├── add_global_compiler_switch.cmake │ │ │ ├── check_if_avx_instructions_executable_on_host.cmake │ │ │ ├── check_if_neon_available.cmake │ │ │ ├── find_blas.cmake │ │ │ ├── set_compiler_specific_options.cmake │ │ │ ├── tell_visual_studio_to_use_static_runtime.cmake │ │ │ └── use_cpp_11.cmake │ │ │ ├── cmd_line_parser.h │ │ │ ├── cmd_line_parser │ │ │ ├── cmd_line_parser_check_1.h │ │ │ ├── cmd_line_parser_check_c.h │ │ │ ├── cmd_line_parser_kernel_1.h │ │ │ ├── cmd_line_parser_kernel_abstract.h │ │ │ ├── cmd_line_parser_kernel_c.h │ │ │ ├── cmd_line_parser_print_1.h │ │ │ ├── get_option.h │ │ │ └── get_option_abstract.h │ │ │ ├── compress_stream.h │ │ │ ├── compress_stream │ │ │ ├── compress_stream_kernel_1.h │ │ │ ├── compress_stream_kernel_2.h │ │ │ ├── compress_stream_kernel_3.h │ │ │ └── compress_stream_kernel_abstract.h │ │ │ ├── conditioning_class.h │ │ │ ├── conditioning_class │ │ │ ├── conditioning_class_kernel_1.h │ │ │ ├── conditioning_class_kernel_2.h │ │ │ ├── conditioning_class_kernel_3.h │ │ │ ├── conditioning_class_kernel_4.h │ │ │ ├── conditioning_class_kernel_abstract.h │ │ │ └── conditioning_class_kernel_c.h │ │ │ ├── config.h │ │ │ ├── config_reader.h │ │ │ ├── config_reader │ │ │ ├── config_reader_kernel_1.h │ │ │ ├── config_reader_kernel_abstract.h │ │ │ ├── config_reader_thread_safe_1.h │ │ │ └── config_reader_thread_safe_abstract.h │ │ │ ├── console_progress_indicator.h │ │ │ ├── control.h │ │ │ ├── control │ │ │ ├── approximate_linear_models.h │ │ │ ├── approximate_linear_models_abstract.h │ │ │ ├── lspi.h │ │ │ ├── lspi_abstract.h │ │ │ ├── mpc.h │ │ │ └── mpc_abstract.h │ │ │ ├── cpp_pretty_printer.h │ │ │ ├── cpp_pretty_printer │ │ │ ├── cpp_pretty_printer_kernel_1.h │ │ │ ├── cpp_pretty_printer_kernel_2.h │ │ │ └── cpp_pretty_printer_kernel_abstract.h │ │ │ ├── cpp_tokenizer.h │ │ │ ├── cpp_tokenizer │ │ │ ├── cpp_tokenizer_kernel_1.h │ │ │ ├── cpp_tokenizer_kernel_abstract.h │ │ │ └── cpp_tokenizer_kernel_c.h │ │ │ ├── crc32.h │ │ │ ├── crc32 │ │ │ ├── crc32_kernel_1.h │ │ │ └── crc32_kernel_abstract.h │ │ │ ├── cuda │ │ │ ├── cpu_dlib.h │ │ │ ├── cublas_dlibapi.h │ │ │ ├── cuda_data_ptr.h │ │ │ ├── cuda_dlib.h │ │ │ ├── cuda_errors.h │ │ │ ├── cuda_utils.h │ │ │ ├── cudnn_dlibapi.h │ │ │ ├── curand_dlibapi.h │ │ │ ├── cusolver_dlibapi.h │ │ │ ├── gpu_data.h │ │ │ ├── gpu_data_abstract.h │ │ │ ├── tensor.h │ │ │ ├── tensor_abstract.h │ │ │ └── tensor_tools.h │ │ │ ├── data_io.h │ │ │ ├── data_io │ │ │ ├── image_dataset_metadata.h │ │ │ ├── libsvm_io.h │ │ │ ├── libsvm_io_abstract.h │ │ │ ├── load_image_dataset.h │ │ │ ├── load_image_dataset_abstract.h │ │ │ ├── mnist.h │ │ │ └── mnist_abstract.h │ │ │ ├── dir_nav.h │ │ │ ├── dir_nav │ │ │ ├── dir_nav_extensions.h │ │ │ ├── dir_nav_extensions_abstract.h │ │ │ ├── dir_nav_kernel_1.h │ │ │ ├── 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 │ │ │ ├── disjoint_subsets_sized.h │ │ │ └── disjoint_subsets_sized_abstract.h │ │ │ ├── dnn.h │ │ │ ├── dnn │ │ │ ├── core.h │ │ │ ├── core_abstract.h │ │ │ ├── input.h │ │ │ ├── input_abstract.h │ │ │ ├── layers.h │ │ │ ├── layers_abstract.h │ │ │ ├── loss.h │ │ │ ├── loss_abstract.h │ │ │ ├── solvers.h │ │ │ ├── solvers_abstract.h │ │ │ ├── trainer.h │ │ │ ├── trainer_abstract.h │ │ │ ├── utilities.h │ │ │ ├── utilities_abstract.h │ │ │ └── validation.h │ │ │ ├── enable_if.h │ │ │ ├── entropy_decoder.h │ │ │ ├── entropy_decoder │ │ │ ├── entropy_decoder_kernel_1.h │ │ │ ├── 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.h │ │ │ ├── entropy_encoder_kernel_2.h │ │ │ ├── entropy_encoder_kernel_abstract.h │ │ │ └── entropy_encoder_kernel_c.h │ │ │ ├── entropy_encoder_model.h │ │ │ ├── entropy_encoder_model │ │ │ ├── entropy_encoder_model_kernel_1.h │ │ │ ├── entropy_encoder_model_kernel_2.h │ │ │ ├── entropy_encoder_model_kernel_3.h │ │ │ ├── entropy_encoder_model_kernel_4.h │ │ │ ├── entropy_encoder_model_kernel_5.h │ │ │ ├── entropy_encoder_model_kernel_6.h │ │ │ ├── entropy_encoder_model_kernel_abstract.h │ │ │ └── entropy_encoder_model_kernel_c.h │ │ │ ├── error.h │ │ │ ├── external │ │ │ ├── cblas │ │ │ │ ├── cblas.h │ │ │ │ └── cblas_f77.h │ │ │ ├── libjpeg │ │ │ │ ├── jchuff.h │ │ │ │ ├── jconfig.h │ │ │ │ ├── jdct.h │ │ │ │ ├── jdhuff.h │ │ │ │ ├── jerror.h │ │ │ │ ├── jinclude.h │ │ │ │ ├── jmemsys.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpegint.h │ │ │ │ ├── jpeglib.h │ │ │ │ └── jversion.h │ │ │ ├── libpng │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ ├── pngdebug.h │ │ │ │ ├── pnginfo.h │ │ │ │ ├── pnglibconf.h │ │ │ │ ├── pngpriv.h │ │ │ │ └── pngstruct.h │ │ │ ├── pybind11 │ │ │ │ ├── include │ │ │ │ │ └── pybind11 │ │ │ │ │ │ ├── attr.h │ │ │ │ │ │ ├── buffer_info.h │ │ │ │ │ │ ├── cast.h │ │ │ │ │ │ ├── chrono.h │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── complex.h │ │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── class.h │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── descr.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── internals.h │ │ │ │ │ │ └── typeid.h │ │ │ │ │ │ ├── eigen.h │ │ │ │ │ │ ├── embed.h │ │ │ │ │ │ ├── eval.h │ │ │ │ │ │ ├── functional.h │ │ │ │ │ │ ├── iostream.h │ │ │ │ │ │ ├── numpy.h │ │ │ │ │ │ ├── operators.h │ │ │ │ │ │ ├── options.h │ │ │ │ │ │ ├── pybind11.h │ │ │ │ │ │ ├── pytypes.h │ │ │ │ │ │ ├── stl.h │ │ │ │ │ │ └── stl_bind.h │ │ │ │ └── tools │ │ │ │ │ ├── FindCatch.cmake │ │ │ │ │ ├── FindEigen3.cmake │ │ │ │ │ ├── FindPythonLibsNew.cmake │ │ │ │ │ └── pybind11Tools.cmake │ │ │ └── zlib │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.h │ │ │ │ ├── gzguts.h │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.h │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ └── zutil.h │ │ │ ├── filtering.h │ │ │ ├── filtering │ │ │ ├── kalman_filter.h │ │ │ ├── kalman_filter_abstract.h │ │ │ ├── rls_filter.h │ │ │ └── rls_filter_abstract.h │ │ │ ├── float_details.h │ │ │ ├── general_hash │ │ │ ├── count_bits.h │ │ │ ├── count_bits_abstract.h │ │ │ ├── general_hash.h │ │ │ ├── hash.h │ │ │ ├── hash_abstract.h │ │ │ ├── murmur_hash3.h │ │ │ ├── murmur_hash3_abstract.h │ │ │ ├── random_hashing.h │ │ │ └── random_hashing_abstract.h │ │ │ ├── geometry.h │ │ │ ├── geometry │ │ │ ├── border_enumerator.h │ │ │ ├── border_enumerator_abstract.h │ │ │ ├── drectangle.h │ │ │ ├── drectangle_abstract.h │ │ │ ├── line.h │ │ │ ├── line_abstract.h │ │ │ ├── point_transforms.h │ │ │ ├── point_transforms_abstract.h │ │ │ ├── rectangle.h │ │ │ ├── rectangle_abstract.h │ │ │ ├── vector.h │ │ │ └── vector_abstract.h │ │ │ ├── global_optimization.h │ │ │ ├── global_optimization │ │ │ ├── find_max_global.h │ │ │ ├── find_max_global_abstract.h │ │ │ ├── global_function_search.h │ │ │ ├── global_function_search_abstract.h │ │ │ ├── upper_bound_function.h │ │ │ └── upper_bound_function_abstract.h │ │ │ ├── graph.h │ │ │ ├── graph │ │ │ ├── graph_kernel_1.h │ │ │ └── graph_kernel_abstract.h │ │ │ ├── graph_cuts.h │ │ │ ├── graph_cuts │ │ │ ├── find_max_factor_graph_potts.h │ │ │ ├── find_max_factor_graph_potts_abstract.h │ │ │ ├── general_flow_graph.h │ │ │ ├── general_potts_problem.h │ │ │ ├── graph_labeler.h │ │ │ ├── graph_labeler_abstract.h │ │ │ ├── min_cut.h │ │ │ └── min_cut_abstract.h │ │ │ ├── graph_utils.h │ │ │ ├── graph_utils │ │ │ ├── edge_list_graphs.h │ │ │ ├── edge_list_graphs_abstract.h │ │ │ ├── find_k_nearest_neighbors_lsh.h │ │ │ ├── find_k_nearest_neighbors_lsh_abstract.h │ │ │ ├── function_objects.h │ │ │ ├── function_objects_abstract.h │ │ │ ├── graph_utils.h │ │ │ ├── graph_utils_abstract.h │ │ │ ├── ordered_sample_pair.h │ │ │ ├── ordered_sample_pair_abstract.h │ │ │ ├── sample_pair.h │ │ │ └── sample_pair_abstract.h │ │ │ ├── graph_utils_threaded.h │ │ │ ├── gui_core.h │ │ │ ├── gui_core │ │ │ ├── gui_core_kernel_1.h │ │ │ ├── gui_core_kernel_2.h │ │ │ ├── gui_core_kernel_abstract.h │ │ │ ├── windows.h │ │ │ └── xlib.h │ │ │ ├── gui_widgets.h │ │ │ ├── gui_widgets │ │ │ ├── base_widgets.h │ │ │ ├── base_widgets_abstract.h │ │ │ ├── canvas_drawing.h │ │ │ ├── canvas_drawing_abstract.h │ │ │ ├── drawable.h │ │ │ ├── drawable_abstract.h │ │ │ ├── fonts.h │ │ │ ├── fonts_abstract.h │ │ │ ├── nativefont.h │ │ │ ├── style.h │ │ │ ├── style_abstract.h │ │ │ ├── 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.h │ │ │ └── http_client_abstract.h │ │ │ ├── image_io.h │ │ │ ├── image_keypoint.h │ │ │ ├── image_keypoint │ │ │ ├── binned_vector_feature_image.h │ │ │ ├── binned_vector_feature_image_abstract.h │ │ │ ├── build_separable_poly_filters.h │ │ │ ├── draw_surf_points.h │ │ │ ├── draw_surf_points_abstract.h │ │ │ ├── fine_hog_image.h │ │ │ ├── fine_hog_image_abstract.h │ │ │ ├── hashed_feature_image.h │ │ │ ├── hashed_feature_image_abstract.h │ │ │ ├── hessian_pyramid.h │ │ │ ├── hessian_pyramid_abstract.h │ │ │ ├── hog.h │ │ │ ├── hog_abstract.h │ │ │ ├── nearest_neighbor_feature_image.h │ │ │ ├── nearest_neighbor_feature_image_abstract.h │ │ │ ├── poly_image.h │ │ │ ├── poly_image_abstract.h │ │ │ ├── surf.h │ │ │ └── surf_abstract.h │ │ │ ├── image_loader │ │ │ ├── image_loader.h │ │ │ ├── image_loader_abstract.h │ │ │ ├── jpeg_loader.h │ │ │ ├── jpeg_loader_abstract.h │ │ │ ├── load_image.h │ │ │ ├── load_image_abstract.h │ │ │ ├── png_loader.h │ │ │ └── png_loader_abstract.h │ │ │ ├── image_processing.h │ │ │ ├── image_processing │ │ │ ├── box_overlap_testing.h │ │ │ ├── box_overlap_testing_abstract.h │ │ │ ├── correlation_tracker.h │ │ │ ├── correlation_tracker_abstract.h │ │ │ ├── detection_template_tools.h │ │ │ ├── detection_template_tools_abstract.h │ │ │ ├── frontal_face_detector.h │ │ │ ├── frontal_face_detector_abstract.h │ │ │ ├── full_object_detection.h │ │ │ ├── full_object_detection_abstract.h │ │ │ ├── generic_image.h │ │ │ ├── object_detector.h │ │ │ ├── object_detector_abstract.h │ │ │ ├── remove_unobtainable_rectangles.h │ │ │ ├── remove_unobtainable_rectangles_abstract.h │ │ │ ├── render_face_detections.h │ │ │ ├── render_face_detections_abstract.h │ │ │ ├── scan_fhog_pyramid.h │ │ │ ├── scan_fhog_pyramid_abstract.h │ │ │ ├── scan_image.h │ │ │ ├── scan_image_abstract.h │ │ │ ├── scan_image_boxes.h │ │ │ ├── scan_image_boxes_abstract.h │ │ │ ├── scan_image_custom.h │ │ │ ├── scan_image_custom_abstract.h │ │ │ ├── scan_image_pyramid.h │ │ │ ├── scan_image_pyramid_abstract.h │ │ │ ├── scan_image_pyramid_tools.h │ │ │ ├── scan_image_pyramid_tools_abstract.h │ │ │ ├── setup_hashed_features.h │ │ │ ├── setup_hashed_features_abstract.h │ │ │ ├── shape_predictor.h │ │ │ ├── shape_predictor_abstract.h │ │ │ ├── shape_predictor_trainer.h │ │ │ └── shape_predictor_trainer_abstract.h │ │ │ ├── image_saver │ │ │ ├── dng_shared.h │ │ │ ├── image_saver.h │ │ │ ├── image_saver_abstract.h │ │ │ ├── save_jpeg.h │ │ │ ├── save_jpeg_abstract.h │ │ │ ├── save_png.h │ │ │ └── save_png_abstract.h │ │ │ ├── image_transforms.h │ │ │ ├── image_transforms │ │ │ ├── assign_image.h │ │ │ ├── assign_image_abstract.h │ │ │ ├── colormaps.h │ │ │ ├── colormaps_abstract.h │ │ │ ├── draw.h │ │ │ ├── draw_abstract.h │ │ │ ├── edge_detector.h │ │ │ ├── edge_detector_abstract.h │ │ │ ├── equalize_histogram.h │ │ │ ├── equalize_histogram_abstract.h │ │ │ ├── fhog.h │ │ │ ├── fhog_abstract.h │ │ │ ├── hough_transform.h │ │ │ ├── hough_transform_abstract.h │ │ │ ├── image_pyramid.h │ │ │ ├── image_pyramid_abstract.h │ │ │ ├── integral_image.h │ │ │ ├── integral_image_abstract.h │ │ │ ├── interpolation.h │ │ │ ├── interpolation_abstract.h │ │ │ ├── label_connected_blobs.h │ │ │ ├── label_connected_blobs_abstract.h │ │ │ ├── lbp.h │ │ │ ├── lbp_abstract.h │ │ │ ├── morphological_operations.h │ │ │ ├── morphological_operations_abstract.h │ │ │ ├── random_color_transform.h │ │ │ ├── random_color_transform_abstract.h │ │ │ ├── random_cropper.h │ │ │ ├── random_cropper_abstract.h │ │ │ ├── segment_image.h │ │ │ ├── segment_image_abstract.h │ │ │ ├── spatial_filtering.h │ │ │ ├── spatial_filtering_abstract.h │ │ │ ├── thresholding.h │ │ │ └── thresholding_abstract.h │ │ │ ├── interfaces │ │ │ ├── cmd_line_parser_option.h │ │ │ ├── enumerable.h │ │ │ ├── map_pair.h │ │ │ └── remover.h │ │ │ ├── iosockstream.h │ │ │ ├── iosockstream │ │ │ ├── iosockstream.h │ │ │ └── iosockstream_abstract.h │ │ │ ├── is_kind.h │ │ │ ├── java │ │ │ ├── java_array.h │ │ │ └── swig_api.h │ │ │ ├── linker.h │ │ │ ├── linker │ │ │ ├── linker_kernel_1.h │ │ │ └── linker_kernel_abstract.h │ │ │ ├── logger.h │ │ │ ├── logger │ │ │ ├── extra_logger_headers.h │ │ │ ├── logger_config_file.h │ │ │ ├── logger_kernel_1.h │ │ │ └── logger_kernel_abstract.h │ │ │ ├── lsh.h │ │ │ ├── lsh │ │ │ ├── create_random_projection_hash.h │ │ │ ├── create_random_projection_hash_abstract.h │ │ │ ├── hashes.h │ │ │ ├── hashes_abstract.h │ │ │ ├── projection_hash.h │ │ │ └── projection_hash_abstract.h │ │ │ ├── lz77_buffer.h │ │ │ ├── lz77_buffer │ │ │ ├── lz77_buffer_kernel_1.h │ │ │ ├── lz77_buffer_kernel_2.h │ │ │ ├── lz77_buffer_kernel_abstract.h │ │ │ └── lz77_buffer_kernel_c.h │ │ │ ├── lzp_buffer.h │ │ │ ├── lzp_buffer │ │ │ ├── lzp_buffer_kernel_1.h │ │ │ ├── lzp_buffer_kernel_2.h │ │ │ ├── lzp_buffer_kernel_abstract.h │ │ │ └── lzp_buffer_kernel_c.h │ │ │ ├── manifold_regularization.h │ │ │ ├── manifold_regularization │ │ │ ├── linear_manifold_regularizer.h │ │ │ └── linear_manifold_regularizer_abstract.h │ │ │ ├── map.h │ │ │ ├── map │ │ │ ├── map_kernel_1.h │ │ │ ├── map_kernel_abstract.h │ │ │ └── map_kernel_c.h │ │ │ ├── matlab │ │ │ ├── call_matlab.h │ │ │ └── subprocess_stream.h │ │ │ ├── matrix.h │ │ │ ├── matrix │ │ │ ├── cblas_constants.h │ │ │ ├── lapack │ │ │ │ ├── fortran_id.h │ │ │ │ ├── gees.h │ │ │ │ ├── geev.h │ │ │ │ ├── geqrf.h │ │ │ │ ├── gesdd.h │ │ │ │ ├── gesvd.h │ │ │ │ ├── getrf.h │ │ │ │ ├── ormqr.h │ │ │ │ ├── pbtrf.h │ │ │ │ ├── potrf.h │ │ │ │ ├── syev.h │ │ │ │ └── syevr.h │ │ │ ├── matrix.h │ │ │ ├── matrix_abstract.h │ │ │ ├── matrix_assign.h │ │ │ ├── matrix_assign_fwd.h │ │ │ ├── matrix_blas_bindings.h │ │ │ ├── matrix_cholesky.h │ │ │ ├── matrix_conj_trans.h │ │ │ ├── matrix_conv.h │ │ │ ├── matrix_conv_abstract.h │ │ │ ├── matrix_data_layout.h │ │ │ ├── matrix_data_layout_abstract.h │ │ │ ├── matrix_default_mul.h │ │ │ ├── matrix_eigenvalue.h │ │ │ ├── matrix_exp.h │ │ │ ├── matrix_exp_abstract.h │ │ │ ├── matrix_expressions.h │ │ │ ├── matrix_fft.h │ │ │ ├── matrix_fft_abstract.h │ │ │ ├── matrix_fwd.h │ │ │ ├── matrix_generic_image.h │ │ │ ├── matrix_la.h │ │ │ ├── matrix_la_abstract.h │ │ │ ├── matrix_lu.h │ │ │ ├── matrix_mat.h │ │ │ ├── matrix_mat_abstract.h │ │ │ ├── matrix_math_functions.h │ │ │ ├── matrix_math_functions_abstract.h │ │ │ ├── matrix_op.h │ │ │ ├── matrix_qr.h │ │ │ ├── matrix_read_from_istream.h │ │ │ ├── matrix_subexp.h │ │ │ ├── matrix_subexp_abstract.h │ │ │ ├── matrix_trsm.h │ │ │ ├── matrix_utilities.h │ │ │ ├── matrix_utilities_abstract.h │ │ │ ├── symmetric_matrix_cache.h │ │ │ └── symmetric_matrix_cache_abstract.h │ │ │ ├── md5.h │ │ │ ├── md5 │ │ │ ├── md5_kernel_1.h │ │ │ └── md5_kernel_abstract.h │ │ │ ├── member_function_pointer.h │ │ │ ├── member_function_pointer │ │ │ ├── make_mfp.h │ │ │ ├── make_mfp_abstract.h │ │ │ ├── member_function_pointer_kernel_1.h │ │ │ └── member_function_pointer_kernel_abstract.h │ │ │ ├── memory_manager.h │ │ │ ├── memory_manager │ │ │ ├── memory_manager_kernel_1.h │ │ │ ├── memory_manager_kernel_2.h │ │ │ ├── memory_manager_kernel_3.h │ │ │ └── memory_manager_kernel_abstract.h │ │ │ ├── memory_manager_global.h │ │ │ ├── memory_manager_global │ │ │ ├── memory_manager_global_kernel_1.h │ │ │ └── memory_manager_global_kernel_abstract.h │ │ │ ├── memory_manager_stateless.h │ │ │ ├── memory_manager_stateless │ │ │ ├── memory_manager_stateless_kernel_1.h │ │ │ ├── memory_manager_stateless_kernel_2.h │ │ │ └── memory_manager_stateless_kernel_abstract.h │ │ │ ├── metaprogramming.h │ │ │ ├── misc_api.h │ │ │ ├── misc_api │ │ │ ├── misc_api_kernel_1.h │ │ │ ├── misc_api_kernel_2.h │ │ │ ├── misc_api_kernel_abstract.h │ │ │ ├── misc_api_shared.h │ │ │ ├── posix.h │ │ │ └── windows.h │ │ │ ├── mlp.h │ │ │ ├── mlp │ │ │ ├── mlp_kernel_1.h │ │ │ ├── mlp_kernel_abstract.h │ │ │ └── mlp_kernel_c.h │ │ │ ├── noncopyable.h │ │ │ ├── numeric_constants.h │ │ │ ├── numerical_integration.h │ │ │ ├── numerical_integration │ │ │ ├── integrate_function_adapt_simpson.h │ │ │ └── integrate_function_adapt_simpson_abstract.h │ │ │ ├── opencv.h │ │ │ ├── opencv │ │ │ ├── cv_image.h │ │ │ ├── cv_image_abstract.h │ │ │ ├── to_open_cv.h │ │ │ └── to_open_cv_abstract.h │ │ │ ├── optimization.h │ │ │ ├── optimization │ │ │ ├── elastic_net.h │ │ │ ├── elastic_net_abstract.h │ │ │ ├── find_max_factor_graph_nmplp.h │ │ │ ├── find_max_factor_graph_nmplp_abstract.h │ │ │ ├── find_max_factor_graph_viterbi.h │ │ │ ├── find_max_factor_graph_viterbi_abstract.h │ │ │ ├── find_max_parse_cky.h │ │ │ ├── find_max_parse_cky_abstract.h │ │ │ ├── find_optimal_parameters.h │ │ │ ├── find_optimal_parameters_abstract.h │ │ │ ├── isotonic_regression.h │ │ │ ├── isotonic_regression_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 │ │ │ ├── pipe.h │ │ │ ├── pipe │ │ │ ├── pipe_kernel_1.h │ │ │ └── pipe_kernel_abstract.h │ │ │ ├── pixel.h │ │ │ ├── platform.h │ │ │ ├── python.h │ │ │ ├── python │ │ │ ├── numpy_image.h │ │ │ ├── pyassert.h │ │ │ ├── pybind_utils.h │ │ │ └── serialize_pickle.h │ │ │ ├── quantum_computing.h │ │ │ ├── quantum_computing │ │ │ ├── quantum_computing.h │ │ │ └── quantum_computing_abstract.h │ │ │ ├── queue.h │ │ │ ├── queue │ │ │ ├── queue_kernel_1.h │ │ │ ├── queue_kernel_2.h │ │ │ ├── queue_kernel_abstract.h │ │ │ ├── queue_kernel_c.h │ │ │ ├── queue_sort_1.h │ │ │ └── queue_sort_abstract.h │ │ │ ├── rand.h │ │ │ ├── rand │ │ │ ├── mersenne_twister.h │ │ │ ├── rand_kernel_1.h │ │ │ └── rand_kernel_abstract.h │ │ │ ├── random_forest.h │ │ │ ├── random_forest │ │ │ ├── random_forest_regression.h │ │ │ └── random_forest_regression_abstract.h │ │ │ ├── ref.h │ │ │ ├── reference_counter.h │ │ │ ├── reference_counter │ │ │ ├── reference_counter_kernel_1.h │ │ │ └── reference_counter_kernel_abstract.h │ │ │ ├── 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.h │ │ │ ├── server_http_abstract.h │ │ │ ├── server_iostream.h │ │ │ ├── server_iostream_abstract.h │ │ │ ├── server_kernel.h │ │ │ └── server_kernel_abstract.h │ │ │ ├── set.h │ │ │ ├── set │ │ │ ├── set_compare_1.h │ │ │ ├── set_compare_abstract.h │ │ │ ├── set_kernel_1.h │ │ │ ├── set_kernel_abstract.h │ │ │ └── set_kernel_c.h │ │ │ ├── set_utils.h │ │ │ ├── set_utils │ │ │ ├── set_utils.h │ │ │ └── set_utils_abstract.h │ │ │ ├── simd.h │ │ │ ├── simd │ │ │ ├── simd4f.h │ │ │ ├── simd4i.h │ │ │ ├── simd8f.h │ │ │ ├── simd8i.h │ │ │ └── simd_check.h │ │ │ ├── sliding_buffer.h │ │ │ ├── sliding_buffer │ │ │ ├── circular_buffer.h │ │ │ ├── circular_buffer_abstract.h │ │ │ ├── sliding_buffer_kernel_1.h │ │ │ ├── sliding_buffer_kernel_abstract.h │ │ │ └── sliding_buffer_kernel_c.h │ │ │ ├── smart_pointers.h │ │ │ ├── smart_pointers │ │ │ ├── scoped_ptr.h │ │ │ ├── shared_ptr.h │ │ │ ├── shared_ptr_abstract.h │ │ │ ├── shared_ptr_thread_safe.h │ │ │ ├── shared_ptr_thread_safe_abstract.h │ │ │ ├── weak_ptr.h │ │ │ └── weak_ptr_abstract.h │ │ │ ├── smart_pointers_thread_safe.h │ │ │ ├── sockets.h │ │ │ ├── sockets │ │ │ ├── posix.h │ │ │ ├── sockets_extensions.h │ │ │ ├── sockets_extensions_abstract.h │ │ │ ├── sockets_kernel_1.h │ │ │ ├── sockets_kernel_2.h │ │ │ ├── sockets_kernel_abstract.h │ │ │ └── windows.h │ │ │ ├── sockstreambuf.h │ │ │ ├── sockstreambuf │ │ │ ├── sockstreambuf.h │ │ │ ├── sockstreambuf_abstract.h │ │ │ └── sockstreambuf_unbuffered.h │ │ │ ├── sort.h │ │ │ ├── sparse_vector.h │ │ │ ├── sqlite.h │ │ │ ├── sqlite │ │ │ ├── sqlite.h │ │ │ ├── sqlite_abstract.h │ │ │ ├── sqlite_tools.h │ │ │ └── sqlite_tools_abstract.h │ │ │ ├── stack.h │ │ │ ├── stack │ │ │ ├── stack_kernel_1.h │ │ │ ├── stack_kernel_abstract.h │ │ │ └── stack_kernel_c.h │ │ │ ├── stack_trace.h │ │ │ ├── static_map.h │ │ │ ├── static_map │ │ │ ├── static_map_kernel_1.h │ │ │ ├── static_map_kernel_abstract.h │ │ │ └── static_map_kernel_c.h │ │ │ ├── static_set.h │ │ │ ├── static_set │ │ │ ├── static_set_compare_1.h │ │ │ ├── static_set_compare_abstract.h │ │ │ ├── static_set_kernel_1.h │ │ │ ├── static_set_kernel_abstract.h │ │ │ └── static_set_kernel_c.h │ │ │ ├── statistics.h │ │ │ ├── statistics │ │ │ ├── average_precision.h │ │ │ ├── average_precision_abstract.h │ │ │ ├── cca.h │ │ │ ├── cca_abstract.h │ │ │ ├── dpca.h │ │ │ ├── dpca_abstract.h │ │ │ ├── image_feature_sampling.h │ │ │ ├── image_feature_sampling_abstract.h │ │ │ ├── lda.h │ │ │ ├── lda_abstract.h │ │ │ ├── random_subset_selector.h │ │ │ ├── random_subset_selector_abstract.h │ │ │ ├── running_gradient.h │ │ │ ├── running_gradient_abstract.h │ │ │ ├── sammon.h │ │ │ ├── sammon_abstract.h │ │ │ ├── statistics.h │ │ │ ├── statistics_abstract.h │ │ │ ├── vector_normalizer_frobmetric.h │ │ │ └── vector_normalizer_frobmetric_abstract.h │ │ │ ├── std_allocator.h │ │ │ ├── stl_checked.h │ │ │ ├── stl_checked │ │ │ ├── std_vector_c.h │ │ │ └── std_vector_c_abstract.h │ │ │ ├── string.h │ │ │ ├── string │ │ │ ├── string.h │ │ │ └── string_abstract.h │ │ │ ├── svm.h │ │ │ ├── svm │ │ │ ├── active_learning.h │ │ │ ├── active_learning_abstract.h │ │ │ ├── assignment_function.h │ │ │ ├── assignment_function_abstract.h │ │ │ ├── cross_validate_assignment_trainer.h │ │ │ ├── cross_validate_assignment_trainer_abstract.h │ │ │ ├── cross_validate_graph_labeling_trainer.h │ │ │ ├── cross_validate_graph_labeling_trainer_abstract.h │ │ │ ├── cross_validate_multiclass_trainer.h │ │ │ ├── cross_validate_multiclass_trainer_abstract.h │ │ │ ├── cross_validate_object_detection_trainer.h │ │ │ ├── cross_validate_object_detection_trainer_abstract.h │ │ │ ├── cross_validate_regression_trainer.h │ │ │ ├── cross_validate_regression_trainer_abstract.h │ │ │ ├── cross_validate_sequence_labeler.h │ │ │ ├── cross_validate_sequence_labeler_abstract.h │ │ │ ├── cross_validate_sequence_segmenter.h │ │ │ ├── cross_validate_sequence_segmenter_abstract.h │ │ │ ├── cross_validate_track_association_trainer.h │ │ │ ├── cross_validate_track_association_trainer_abstract.h │ │ │ ├── empirical_kernel_map.h │ │ │ ├── empirical_kernel_map_abstract.h │ │ │ ├── feature_ranking.h │ │ │ ├── feature_ranking_abstract.h │ │ │ ├── function.h │ │ │ ├── function_abstract.h │ │ │ ├── kcentroid.h │ │ │ ├── kcentroid_abstract.h │ │ │ ├── kcentroid_overloads.h │ │ │ ├── kernel.h │ │ │ ├── kernel_abstract.h │ │ │ ├── kernel_matrix.h │ │ │ ├── kernel_matrix_abstract.h │ │ │ ├── kkmeans.h │ │ │ ├── kkmeans_abstract.h │ │ │ ├── krls.h │ │ │ ├── krls_abstract.h │ │ │ ├── krr_trainer.h │ │ │ ├── krr_trainer_abstract.h │ │ │ ├── linearly_independent_subset_finder.h │ │ │ ├── linearly_independent_subset_finder_abstract.h │ │ │ ├── multiclass_tools.h │ │ │ ├── multiclass_tools_abstract.h │ │ │ ├── null_df.h │ │ │ ├── null_trainer.h │ │ │ ├── null_trainer_abstract.h │ │ │ ├── num_nonnegative_weights.h │ │ │ ├── one_vs_all_decision_function.h │ │ │ ├── one_vs_all_decision_function_abstract.h │ │ │ ├── one_vs_all_trainer.h │ │ │ ├── one_vs_all_trainer_abstract.h │ │ │ ├── one_vs_one_decision_function.h │ │ │ ├── one_vs_one_decision_function_abstract.h │ │ │ ├── one_vs_one_trainer.h │ │ │ ├── one_vs_one_trainer_abstract.h │ │ │ ├── pegasos.h │ │ │ ├── pegasos_abstract.h │ │ │ ├── ranking_tools.h │ │ │ ├── ranking_tools_abstract.h │ │ │ ├── rbf_network.h │ │ │ ├── rbf_network_abstract.h │ │ │ ├── reduced.h │ │ │ ├── reduced_abstract.h │ │ │ ├── rls.h │ │ │ ├── rls_abstract.h │ │ │ ├── roc_trainer.h │ │ │ ├── roc_trainer_abstract.h │ │ │ ├── rr_trainer.h │ │ │ ├── rr_trainer_abstract.h │ │ │ ├── rvm.h │ │ │ ├── rvm_abstract.h │ │ │ ├── sequence_labeler.h │ │ │ ├── sequence_labeler_abstract.h │ │ │ ├── sequence_segmenter.h │ │ │ ├── sequence_segmenter_abstract.h │ │ │ ├── simplify_linear_decision_function.h │ │ │ ├── simplify_linear_decision_function_abstract.h │ │ │ ├── sort_basis_vectors.h │ │ │ ├── sort_basis_vectors_abstract.h │ │ │ ├── sparse_kernel.h │ │ │ ├── sparse_kernel_abstract.h │ │ │ ├── sparse_vector.h │ │ │ ├── sparse_vector_abstract.h │ │ │ ├── structural_assignment_trainer.h │ │ │ ├── structural_assignment_trainer_abstract.h │ │ │ ├── structural_graph_labeling_trainer.h │ │ │ ├── structural_graph_labeling_trainer_abstract.h │ │ │ ├── structural_object_detection_trainer.h │ │ │ ├── structural_object_detection_trainer_abstract.h │ │ │ ├── structural_sequence_labeling_trainer.h │ │ │ ├── structural_sequence_labeling_trainer_abstract.h │ │ │ ├── structural_sequence_segmentation_trainer.h │ │ │ ├── structural_sequence_segmentation_trainer_abstract.h │ │ │ ├── structural_svm_assignment_problem.h │ │ │ ├── structural_svm_assignment_problem_abstract.h │ │ │ ├── structural_svm_distributed.h │ │ │ ├── structural_svm_distributed_abstract.h │ │ │ ├── structural_svm_graph_labeling_problem.h │ │ │ ├── structural_svm_graph_labeling_problem_abstract.h │ │ │ ├── structural_svm_object_detection_problem.h │ │ │ ├── structural_svm_object_detection_problem_abstract.h │ │ │ ├── structural_svm_problem.h │ │ │ ├── structural_svm_problem_abstract.h │ │ │ ├── structural_svm_problem_threaded.h │ │ │ ├── structural_svm_problem_threaded_abstract.h │ │ │ ├── structural_svm_sequence_labeling_problem.h │ │ │ ├── structural_svm_sequence_labeling_problem_abstract.h │ │ │ ├── structural_track_association_trainer.h │ │ │ ├── structural_track_association_trainer_abstract.h │ │ │ ├── svm.h │ │ │ ├── svm_abstract.h │ │ │ ├── svm_c_ekm_trainer.h │ │ │ ├── svm_c_ekm_trainer_abstract.h │ │ │ ├── svm_c_linear_dcd_trainer.h │ │ │ ├── svm_c_linear_dcd_trainer_abstract.h │ │ │ ├── svm_c_linear_trainer.h │ │ │ ├── svm_c_linear_trainer_abstract.h │ │ │ ├── svm_c_trainer.h │ │ │ ├── svm_c_trainer_abstract.h │ │ │ ├── svm_multiclass_linear_trainer.h │ │ │ ├── svm_multiclass_linear_trainer_abstract.h │ │ │ ├── svm_nu_trainer.h │ │ │ ├── svm_nu_trainer_abstract.h │ │ │ ├── svm_one_class_trainer.h │ │ │ ├── svm_one_class_trainer_abstract.h │ │ │ ├── svm_rank_trainer.h │ │ │ ├── svm_rank_trainer_abstract.h │ │ │ ├── svm_threaded.h │ │ │ ├── svm_threaded_abstract.h │ │ │ ├── svr_linear_trainer.h │ │ │ ├── svr_linear_trainer_abstract.h │ │ │ ├── svr_trainer.h │ │ │ ├── svr_trainer_abstract.h │ │ │ ├── track_association_function.h │ │ │ └── track_association_function_abstract.h │ │ │ ├── svm_threaded.h │ │ │ ├── sync_extension.h │ │ │ ├── sync_extension │ │ │ ├── sync_extension_kernel_1.h │ │ │ └── sync_extension_kernel_abstract.h │ │ │ ├── test │ │ │ ├── binary_search_tree.h │ │ │ ├── checkerboard.h │ │ │ ├── cmd_line_parser.h │ │ │ ├── conditioning_class.h │ │ │ ├── create_iris_datafile.h │ │ │ ├── optimization_test_functions.h │ │ │ └── tester.h │ │ │ ├── test_for_odr_violations.h │ │ │ ├── threads.h │ │ │ ├── threads │ │ │ ├── async.h │ │ │ ├── async_abstract.h │ │ │ ├── auto_mutex_extension.h │ │ │ ├── auto_mutex_extension_abstract.h │ │ │ ├── auto_unlock_extension.h │ │ │ ├── auto_unlock_extension_abstract.h │ │ │ ├── create_new_thread_extension.h │ │ │ ├── create_new_thread_extension_abstract.h │ │ │ ├── multithreaded_object_extension.h │ │ │ ├── multithreaded_object_extension_abstract.h │ │ │ ├── parallel_for_extension.h │ │ │ ├── parallel_for_extension_abstract.h │ │ │ ├── posix.h │ │ │ ├── read_write_mutex_extension.h │ │ │ ├── read_write_mutex_extension_abstract.h │ │ │ ├── rmutex_extension.h │ │ │ ├── rmutex_extension_abstract.h │ │ │ ├── rsignaler_extension.h │ │ │ ├── rsignaler_extension_abstract.h │ │ │ ├── thread_function_extension.h │ │ │ ├── thread_function_extension_abstract.h │ │ │ ├── thread_pool_extension.h │ │ │ ├── thread_pool_extension_abstract.h │ │ │ ├── thread_specific_data_extension.h │ │ │ ├── thread_specific_data_extension_abstract.h │ │ │ ├── threaded_object_extension.h │ │ │ ├── threaded_object_extension_abstract.h │ │ │ ├── threads_kernel.h │ │ │ ├── threads_kernel_1.h │ │ │ ├── threads_kernel_2.h │ │ │ ├── threads_kernel_abstract.h │ │ │ ├── threads_kernel_shared.h │ │ │ └── windows.h │ │ │ ├── time_this.h │ │ │ ├── timeout.h │ │ │ ├── timeout │ │ │ ├── timeout.h │ │ │ └── timeout_abstract.h │ │ │ ├── timer.h │ │ │ ├── timer │ │ │ ├── timer.h │ │ │ ├── timer_abstract.h │ │ │ └── timer_heavy.h │ │ │ ├── timing.h │ │ │ ├── tokenizer.h │ │ │ ├── tokenizer │ │ │ ├── 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.h │ │ │ └── unicode_abstract.h │ │ │ ├── unordered_pair.h │ │ │ ├── vectorstream.h │ │ │ ├── vectorstream │ │ │ ├── unserialize.h │ │ │ ├── unserialize_abstract.h │ │ │ ├── vectorstream.h │ │ │ └── vectorstream_abstract.h │ │ │ ├── windows_magic.h │ │ │ ├── xml_parser.h │ │ │ └── xml_parser │ │ │ ├── xml_parser_kernel_1.h │ │ │ ├── xml_parser_kernel_abstract.h │ │ │ └── xml_parser_kernel_interfaces.h │ │ ├── installation_instructions_windows.txt │ │ └── lib │ │ ├── x64 │ │ └── v140 │ │ │ ├── Debug │ │ │ └── dlib.lib │ │ │ └── Release │ │ │ └── dlib.lib │ │ └── x86 │ │ └── v140 │ │ ├── Debug │ │ └── dlib.lib │ │ └── Release │ │ └── dlib.lib │ └── local │ ├── FaceAnalyser │ ├── AU_predictors │ │ ├── AU_DISFA_best.txt │ │ ├── AU_DISFA_static.txt │ │ ├── AU_all_best.txt │ │ ├── AU_all_static.txt │ │ ├── DISFA_dynamic_svms.txt │ │ ├── DISFA_static_svms.txt │ │ ├── In-the-wild_aligned_PDM_68.txt │ │ ├── main_dynamic_svms.txt │ │ ├── main_static_svms.txt │ │ ├── svm_combined │ │ │ ├── AU_10_dynamic.dat │ │ │ ├── AU_10_static.dat │ │ │ ├── AU_12_dynamic.dat │ │ │ ├── AU_12_static.dat │ │ │ ├── AU_14_dynamic.dat │ │ │ ├── AU_14_static.dat │ │ │ ├── AU_15_dynamic.dat │ │ │ ├── AU_15_static.dat │ │ │ ├── AU_17_dynamic.dat │ │ │ ├── AU_17_static.dat │ │ │ ├── AU_1_dynamic.dat │ │ │ ├── AU_1_static.dat │ │ │ ├── AU_20_dynamic.dat │ │ │ ├── AU_20_static.dat │ │ │ ├── AU_23_dynamic.dat │ │ │ ├── AU_23_static.dat │ │ │ ├── AU_25_dynamic.dat │ │ │ ├── AU_25_static.dat │ │ │ ├── AU_26_dynamic.dat │ │ │ ├── AU_26_static.dat │ │ │ ├── AU_28_dynamic.dat │ │ │ ├── AU_28_static.dat │ │ │ ├── AU_2_dynamic.dat │ │ │ ├── AU_2_static.dat │ │ │ ├── AU_45_dynamic.dat │ │ │ ├── AU_45_static.dat │ │ │ ├── AU_4_dynamic.dat │ │ │ ├── AU_4_static.dat │ │ │ ├── AU_5_dynamic.dat │ │ │ ├── AU_5_static.dat │ │ │ ├── AU_6_dynamic.dat │ │ │ ├── AU_6_static.dat │ │ │ ├── AU_7_dynamic.dat │ │ │ ├── AU_7_static.dat │ │ │ ├── AU_9_dynamic.dat │ │ │ └── AU_9_static.dat │ │ ├── svm_disfa │ │ │ ├── AU_12_dyn.dat │ │ │ ├── AU_12_stat.dat │ │ │ ├── AU_15_dyn.dat │ │ │ ├── AU_15_stat.dat │ │ │ ├── AU_17_dyn.dat │ │ │ ├── AU_17_stat.dat │ │ │ ├── AU_1_dyn.dat │ │ │ ├── AU_1_stat.dat │ │ │ ├── AU_20_dyn.dat │ │ │ ├── AU_20_stat.dat │ │ │ ├── AU_25_dyn.dat │ │ │ ├── AU_25_stat.dat │ │ │ ├── AU_26_dyn.dat │ │ │ ├── AU_26_stat.dat │ │ │ ├── AU_2_dyn.dat │ │ │ ├── AU_2_stat.dat │ │ │ ├── AU_4_dyn.dat │ │ │ ├── AU_4_stat.dat │ │ │ ├── AU_5_dyn.dat │ │ │ ├── AU_5_stat.dat │ │ │ ├── AU_6_dyn.dat │ │ │ ├── AU_6_stat.dat │ │ │ ├── AU_9_dyn.dat │ │ │ └── AU_9_stat.dat │ │ ├── svr_combined │ │ │ ├── AU_10_static_intensity_comb.dat │ │ │ ├── AU_12_static_intensity_comb.dat │ │ │ ├── AU_14_static_intensity.dat │ │ │ ├── AU_15_dynamic_intensity_comb.dat │ │ │ ├── AU_15_static_intensity_comb.dat │ │ │ ├── AU_17_dynamic_intensity_comb.dat │ │ │ ├── AU_17_static_intensity_comb.dat │ │ │ ├── AU_1_dynamic_intensity_comb.dat │ │ │ ├── AU_1_static_intensity.dat │ │ │ ├── AU_1_static_intensity_comb.dat │ │ │ ├── AU_20_dynamic_intensity.dat │ │ │ ├── AU_20_static_intensity.dat │ │ │ ├── AU_23_dynamic_intensity_comb.dat │ │ │ ├── AU_23_static_intensity_comb.dat │ │ │ ├── AU_25_dynamic_intensity_comb.dat │ │ │ ├── AU_25_static_intensity.dat │ │ │ ├── AU_26_dynamic_intensity_comb.dat │ │ │ ├── AU_26_static_intensity_comb.dat │ │ │ ├── AU_2_dynamic_intensity_comb.dat │ │ │ ├── AU_2_static_intensity_comb.dat │ │ │ ├── AU_45_dynamic_intensity_comb.dat │ │ │ ├── AU_45_static_intensity_comb.dat │ │ │ ├── AU_4_static_intensity_comb.dat │ │ │ ├── AU_5_dynamic_intensity.dat │ │ │ ├── AU_5_static_intensity.dat │ │ │ ├── AU_6_static_intensity_comb.dat │ │ │ ├── AU_7_static_intensity_comb.dat │ │ │ ├── AU_9_dynamic_intensity.dat │ │ │ └── AU_9_static_intensity.dat │ │ ├── svr_disfa │ │ │ ├── AU_12_dynamic_intensity.dat │ │ │ ├── AU_12_static_intensity.dat │ │ │ ├── AU_15_dynamic_intensity.dat │ │ │ ├── AU_15_static_intensity.dat │ │ │ ├── AU_17_dynamic_intensity.dat │ │ │ ├── AU_17_static_intensity.dat │ │ │ ├── AU_1_dynamic_intensity.dat │ │ │ ├── AU_1_static_intensity.dat │ │ │ ├── AU_20_dynamic_intensity.dat │ │ │ ├── AU_20_static_intensity.dat │ │ │ ├── AU_25_dynamic_intensity.dat │ │ │ ├── AU_25_static_intensity.dat │ │ │ ├── AU_26_dynamic_intensity.dat │ │ │ ├── AU_26_static_intensity.dat │ │ │ ├── AU_2_dynamic_intensity.dat │ │ │ ├── AU_2_static_intensity.dat │ │ │ ├── AU_4_dynamic_intensity.dat │ │ │ ├── AU_4_static_intensity.dat │ │ │ ├── AU_5_dynamic_intensity.dat │ │ │ ├── AU_5_static_intensity.dat │ │ │ ├── AU_6_dynamic_intensity.dat │ │ │ ├── AU_6_static_intensity.dat │ │ │ ├── AU_9_dynamic_intensity.dat │ │ │ └── AU_9_static_intensity.dat │ │ └── tris_68_full.txt │ ├── CMakeLists.txt │ ├── FaceAnalyser.vcxproj │ ├── FaceAnalyser.vcxproj.filters │ ├── FaceAnalyser.vcxproj.user │ ├── include │ │ ├── FaceAnalyser.h │ │ ├── FaceAnalyserParameters.h │ │ ├── Face_utils.h │ │ ├── SVM_dynamic_lin.h │ │ ├── SVM_static_lin.h │ │ ├── SVR_dynamic_lin_regressors.h │ │ ├── SVR_static_lin_regressors.h │ │ └── stdafx_fa.h │ └── src │ │ ├── FaceAnalyser.cpp │ │ ├── FaceAnalyserParameters.cpp │ │ ├── Face_utils.cpp │ │ ├── SVM_dynamic_lin.cpp │ │ ├── SVM_static_lin.cpp │ │ ├── SVR_dynamic_lin_regressors.cpp │ │ ├── SVR_static_lin_regressors.cpp │ │ └── stdafx_fa.cpp │ ├── LandmarkDetector │ ├── CMakeLists.txt │ ├── LandmarkDetector.vcxproj │ ├── LandmarkDetector.vcxproj.filters │ ├── LandmarkDetector.vcxproj.user │ ├── include │ │ ├── CCNF_patch_expert.h │ │ ├── CEN_patch_expert.h │ │ ├── CNN_utils.h │ │ ├── FaceDetectorMTCNN.h │ │ ├── LandmarkCoreIncludes.h │ │ ├── LandmarkDetectionValidator.h │ │ ├── LandmarkDetectorFunc.h │ │ ├── LandmarkDetectorModel.h │ │ ├── LandmarkDetectorParameters.h │ │ ├── LandmarkDetectorUtils.h │ │ ├── PAW.h │ │ ├── PDM.h │ │ ├── Patch_experts.h │ │ ├── SVR_patch_expert.h │ │ └── stdafx.h │ ├── model │ │ ├── cen_general.txt │ │ ├── clm_general.txt │ │ ├── clm_wild.txt │ │ ├── clnf_general.txt │ │ ├── clnf_multi_pie.txt │ │ ├── clnf_wild.txt │ │ ├── detection_validation │ │ │ ├── validator_cnn.txt │ │ │ ├── validator_cnn_68.txt │ │ │ └── validator_general_68.txt │ │ ├── early_term_cen_of.txt │ │ ├── haarAlign.txt │ │ ├── main_ceclm_general.txt │ │ ├── main_clm_general.txt │ │ ├── main_clm_wild.txt │ │ ├── main_clnf_demos.txt │ │ ├── main_clnf_general.txt │ │ ├── main_clnf_multi_pie.txt │ │ ├── main_clnf_wild.txt │ │ ├── model_eye │ │ │ ├── clnf_left_synth.txt │ │ │ ├── clnf_right_synth.txt │ │ │ ├── main_clnf_synth_left.txt │ │ │ ├── main_clnf_synth_right.txt │ │ │ ├── patch_experts │ │ │ │ ├── ccnf_patches_1.00_synth_lid_.txt │ │ │ │ ├── ccnf_patches_1.50_synth_lid_.txt │ │ │ │ ├── left_ccnf_patches_1.00_synth_lid_.txt │ │ │ │ └── left_ccnf_patches_1.50_synth_lid_.txt │ │ │ └── pdms │ │ │ │ ├── pdm_28_eye_3D_closed.txt │ │ │ │ └── pdm_28_l_eye_3D_closed.txt │ │ ├── model_inner │ │ │ ├── clnf_inner.txt │ │ │ ├── main_clnf_inner.txt │ │ │ ├── patch_experts │ │ │ │ └── ccnf_patches_1.00_inner.txt │ │ │ └── pdms │ │ │ │ └── pdm_51_inner.txt │ │ ├── mtcnn_detector │ │ │ ├── MTCNN_detector.txt │ │ │ ├── ONet.dat │ │ │ ├── PNet.dat │ │ │ └── RNet.dat │ │ ├── patch_experts │ │ │ ├── ccnf_patches_0.25_general.txt │ │ │ ├── ccnf_patches_0.25_multi_pie.txt │ │ │ ├── ccnf_patches_0.25_wild.txt │ │ │ ├── ccnf_patches_0.35_general.txt │ │ │ ├── ccnf_patches_0.35_multi_pie.txt │ │ │ ├── ccnf_patches_0.35_wild.txt │ │ │ ├── ccnf_patches_0.5_general.txt │ │ │ ├── ccnf_patches_0.5_multi_pie.txt │ │ │ ├── ccnf_patches_0.5_wild.txt │ │ │ ├── ccnf_patches_1_wild.txt │ │ │ ├── svr_patches_0.25_general.txt │ │ │ ├── svr_patches_0.25_wild.txt │ │ │ ├── svr_patches_0.35_general.txt │ │ │ ├── svr_patches_0.35_wild.txt │ │ │ ├── svr_patches_0.5_general.txt │ │ │ └── svr_patches_0.5_wild.txt │ │ ├── pdms │ │ │ ├── In-the-wild_aligned_PDM_68.txt │ │ │ ├── Multi-PIE_aligned_PDM_68.txt │ │ │ └── pdm_68_aligned_menpo.txt │ │ ├── tris_68.txt │ │ └── tris_68_full.txt │ └── src │ │ ├── CCNF_patch_expert.cpp │ │ ├── CEN_patch_expert.cpp │ │ ├── CNN_utils.cpp │ │ ├── FaceDetectorMTCNN.cpp │ │ ├── LandmarkDetectionValidator.cpp │ │ ├── LandmarkDetectorFunc.cpp │ │ ├── LandmarkDetectorModel.cpp │ │ ├── LandmarkDetectorParameters.cpp │ │ ├── LandmarkDetectorUtils.cpp │ │ ├── PAW.cpp │ │ ├── PDM.cpp │ │ ├── Patch_experts.cpp │ │ ├── SVR_patch_expert.cpp │ │ └── stdafx.cpp │ └── Utilities │ ├── CMakeLists.txt │ ├── Utilities.vcxproj │ ├── Utilities.vcxproj.filters │ ├── Utilities.vcxproj.user │ ├── include │ ├── ConcurrentQueue.h │ ├── ImageCapture.h │ ├── ImageManipulationHelpers.h │ ├── RecorderCSV.h │ ├── RecorderHOG.h │ ├── RecorderOpenFace.h │ ├── RecorderOpenFaceParameters.h │ ├── RotationHelpers.h │ ├── SequenceCapture.h │ ├── VisualizationUtils.h │ ├── Visualizer.h │ └── stdafx_ut.h │ └── src │ ├── ImageCapture.cpp │ ├── RecorderCSV.cpp │ ├── RecorderHOG.cpp │ ├── RecorderOpenFace.cpp │ ├── RecorderOpenFaceParameters.cpp │ ├── SequenceCapture.cpp │ ├── VisualizationUtils.cpp │ ├── Visualizer.cpp │ └── stdafx_ut.cpp ├── proxyPredictor.py └── textureRender ├── src ├── CMakeLists.txt ├── face.cpp ├── includes │ ├── ECRenderCamView.cpp │ ├── ECRenderCamView.h │ ├── Matrices.cpp │ ├── Matrices.h │ ├── OBJRender.cpp │ ├── OBJRender.h │ ├── Vectors.h │ ├── shader.h │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ ├── stb_truetype.h │ ├── tinyobj.cpp │ ├── tinyobj.h │ └── util.h └── shaders │ ├── OBJRender.vs │ ├── OBJRender_depth.frag │ ├── OBJRender_depth.vs │ ├── OBJRender_normal.frag │ ├── OBJRender_posiction.frag │ ├── OBJRender_project.frag │ ├── OBJRender_project.vs │ └── OBJRender_unfold.frag └── thirds ├── GLAD ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h └── lib │ ├── cmake │ └── glad │ │ ├── gladConfig.cmake │ │ ├── gladConfigVersion.cmake │ │ ├── gladTargets-release.cmake │ │ └── gladTargets.cmake │ └── glad.lib ├── glfw3 ├── include │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h └── lib │ ├── cmake │ └── glfw3 │ │ ├── glfw3Config.cmake │ │ ├── glfw3ConfigVersion.cmake │ │ ├── glfw3Targets-release.cmake │ │ └── glfw3Targets.cmake │ ├── glfw3.lib │ └── pkgconfig │ └── glfw3.pc └── glm ├── include └── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ ├── _features.hpp │ ├── _fixes.hpp │ ├── _noise.hpp │ ├── _swizzle.hpp │ ├── _swizzle_func.hpp │ ├── _vectorize.hpp │ ├── dummy.cpp │ ├── func_common.hpp │ ├── func_common.inl │ ├── func_common_simd.inl │ ├── func_exponential.hpp │ ├── func_exponential.inl │ ├── func_exponential_simd.inl │ ├── func_geometric.hpp │ ├── func_geometric.inl │ ├── func_geometric_simd.inl │ ├── func_integer.hpp │ ├── func_integer.inl │ ├── func_integer_simd.inl │ ├── func_matrix.hpp │ ├── func_matrix.inl │ ├── func_matrix_simd.inl │ ├── func_packing.hpp │ ├── func_packing.inl │ ├── func_packing_simd.inl │ ├── func_trigonometric.hpp │ ├── func_trigonometric.inl │ ├── func_trigonometric_simd.inl │ ├── func_vector_relational.hpp │ ├── func_vector_relational.inl │ ├── func_vector_relational_simd.inl │ ├── glm.cpp │ ├── precision.hpp │ ├── setup.hpp │ ├── type_float.hpp │ ├── type_gentype.hpp │ ├── type_gentype.inl │ ├── type_half.hpp │ ├── type_half.inl │ ├── type_int.hpp │ ├── type_mat.hpp │ ├── type_mat.inl │ ├── type_mat2x2.hpp │ ├── type_mat2x2.inl │ ├── type_mat2x3.hpp │ ├── type_mat2x3.inl │ ├── type_mat2x4.hpp │ ├── type_mat2x4.inl │ ├── type_mat3x2.hpp │ ├── type_mat3x2.inl │ ├── type_mat3x3.hpp │ ├── type_mat3x3.inl │ ├── type_mat3x4.hpp │ ├── type_mat3x4.inl │ ├── type_mat4x2.hpp │ ├── type_mat4x2.inl │ ├── type_mat4x3.hpp │ ├── type_mat4x3.inl │ ├── type_mat4x4.hpp │ ├── type_mat4x4.inl │ ├── type_mat4x4_simd.inl │ ├── type_vec.hpp │ ├── type_vec.inl │ ├── type_vec1.hpp │ ├── type_vec1.inl │ ├── type_vec2.hpp │ ├── type_vec2.inl │ ├── type_vec3.hpp │ ├── type_vec3.inl │ ├── type_vec4.hpp │ ├── type_vec4.inl │ └── type_vec4_simd.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ ├── bitfield.hpp │ ├── bitfield.inl │ ├── color_encoding.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── constants.hpp │ ├── constants.inl │ ├── epsilon.hpp │ ├── epsilon.inl │ ├── functions.hpp │ ├── functions.inl │ ├── integer.hpp │ ├── integer.inl │ ├── matrix_access.hpp │ ├── matrix_access.inl │ ├── matrix_integer.hpp │ ├── matrix_inverse.hpp │ ├── matrix_inverse.inl │ ├── matrix_transform.hpp │ ├── matrix_transform.inl │ ├── noise.hpp │ ├── noise.inl │ ├── packing.hpp │ ├── packing.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── quaternion_simd.inl │ ├── random.hpp │ ├── random.inl │ ├── reciprocal.hpp │ ├── reciprocal.inl │ ├── round.hpp │ ├── round.inl │ ├── type_aligned.hpp │ ├── type_precision.hpp │ ├── type_precision.inl │ ├── type_ptr.hpp │ ├── type_ptr.inl │ ├── ulp.hpp │ ├── ulp.inl │ ├── vec1.hpp │ └── vec1.inl │ ├── gtx │ ├── associated_min_max.hpp │ ├── associated_min_max.inl │ ├── bit.hpp │ ├── bit.inl │ ├── closest_point.hpp │ ├── closest_point.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── color_space_YCoCg.hpp │ ├── color_space_YCoCg.inl │ ├── common.hpp │ ├── common.inl │ ├── compatibility.hpp │ ├── compatibility.inl │ ├── component_wise.hpp │ ├── component_wise.inl │ ├── dual_quaternion.hpp │ ├── dual_quaternion.inl │ ├── euler_angles.hpp │ ├── euler_angles.inl │ ├── extend.hpp │ ├── extend.inl │ ├── extended_min_max.hpp │ ├── extended_min_max.inl │ ├── fast_exponential.hpp │ ├── fast_exponential.inl │ ├── fast_square_root.hpp │ ├── fast_square_root.inl │ ├── fast_trigonometry.hpp │ ├── fast_trigonometry.inl │ ├── float_notmalize.inl │ ├── gradient_paint.hpp │ ├── gradient_paint.inl │ ├── handed_coordinate_space.hpp │ ├── handed_coordinate_space.inl │ ├── hash.hpp │ ├── hash.inl │ ├── integer.hpp │ ├── integer.inl │ ├── intersect.hpp │ ├── intersect.inl │ ├── io.hpp │ ├── io.inl │ ├── log_base.hpp │ ├── log_base.inl │ ├── matrix_cross_product.hpp │ ├── matrix_cross_product.inl │ ├── matrix_decompose.hpp │ ├── matrix_decompose.inl │ ├── matrix_interpolation.hpp │ ├── matrix_interpolation.inl │ ├── matrix_major_storage.hpp │ ├── matrix_major_storage.inl │ ├── matrix_operation.hpp │ ├── matrix_operation.inl │ ├── matrix_query.hpp │ ├── matrix_query.inl │ ├── matrix_transform_2d.hpp │ ├── matrix_transform_2d.inl │ ├── mixed_product.hpp │ ├── mixed_product.inl │ ├── norm.hpp │ ├── norm.inl │ ├── normal.hpp │ ├── normal.inl │ ├── normalize_dot.hpp │ ├── normalize_dot.inl │ ├── number_precision.hpp │ ├── number_precision.inl │ ├── optimum_pow.hpp │ ├── optimum_pow.inl │ ├── orthonormalize.hpp │ ├── orthonormalize.inl │ ├── perpendicular.hpp │ ├── perpendicular.inl │ ├── polar_coordinates.hpp │ ├── polar_coordinates.inl │ ├── projection.hpp │ ├── projection.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── range.hpp │ ├── raw_data.hpp │ ├── raw_data.inl │ ├── rotate_normalized_axis.hpp │ ├── rotate_normalized_axis.inl │ ├── rotate_vector.hpp │ ├── rotate_vector.inl │ ├── scalar_multiplication.hpp │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── spline.hpp │ ├── spline.inl │ ├── std_based_type.hpp │ ├── std_based_type.inl │ ├── string_cast.hpp │ ├── string_cast.inl │ ├── transform.hpp │ ├── transform.inl │ ├── transform2.hpp │ ├── transform2.inl │ ├── type_aligned.hpp │ ├── type_aligned.inl │ ├── type_trait.hpp │ ├── type_trait.inl │ ├── vector_angle.hpp │ ├── vector_angle.inl │ ├── vector_query.hpp │ ├── vector_query.inl │ ├── wrap.hpp │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ ├── common.h │ ├── exponential.h │ ├── geometric.h │ ├── integer.h │ ├── matrix.h │ ├── packing.h │ ├── platform.h │ ├── trigonometric.h │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp └── lib └── cmake └── glm ├── glm-config.cmake └── glm-config.cmake~ /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/README.md -------------------------------------------------------------------------------- /src/DFDN/areas.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/areas.mat -------------------------------------------------------------------------------- /src/DFDN/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DFDN/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/models/base_model.py -------------------------------------------------------------------------------- /src/DFDN/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/models/models.py -------------------------------------------------------------------------------- /src/DFDN/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/models/networks.py -------------------------------------------------------------------------------- /src/DFDN/models/pix2pix_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/models/pix2pix_model.py -------------------------------------------------------------------------------- /src/DFDN/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DFDN/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/options/base_options.py -------------------------------------------------------------------------------- /src/DFDN/options/testsingle_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/options/testsingle_options.py -------------------------------------------------------------------------------- /src/DFDN/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DFDN/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/util/image_pool.py -------------------------------------------------------------------------------- /src/DFDN/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/DFDN/util/util.py -------------------------------------------------------------------------------- /src/emotionNet/fertrainImgLarge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/emotionNet/fertrainImgLarge.py -------------------------------------------------------------------------------- /src/facialDetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/facialDetails.py -------------------------------------------------------------------------------- /src/imgs/Supplemental_Material.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/imgs/Supplemental_Material.pdf -------------------------------------------------------------------------------- /src/imgs/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/imgs/teaser.png -------------------------------------------------------------------------------- /src/landmarkDetector/OpenFace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/OpenFace.sln -------------------------------------------------------------------------------- /src/landmarkDetector/download_libraries.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/download_libraries.ps1 -------------------------------------------------------------------------------- /src/landmarkDetector/download_models.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/download_models.ps1 -------------------------------------------------------------------------------- /src/landmarkDetector/exe/FaceLandmarkImg/FaceLandmarkImg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/exe/FaceLandmarkImg/FaceLandmarkImg.vcxproj -------------------------------------------------------------------------------- /src/landmarkDetector/exe/FaceLandmarkImg/FaceLandmarkImg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/exe/FaceLandmarkImg/FaceLandmarkImg.vcxproj.user -------------------------------------------------------------------------------- /src/landmarkDetector/exe/FaceLandmarkImg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/exe/FaceLandmarkImg/main.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/OpenBLAS_64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/OpenBLAS_64.props -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/OpenBLAS_x86.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/OpenBLAS_x86.props -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/flang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/flang.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/flangrti.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/flangrti.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/libomp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/libomp.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/openblas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x64/openblas.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libgcc_s_sjlj-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libgcc_s_sjlj-1.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libgfortran-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libgfortran-3.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libopenblas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libopenblas.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libquadmath-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/bin/x86/libquadmath-0.dll -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/include/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/include/cblas.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/include/f77blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/include/f77blas.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke_config.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke_mangling.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/include/lapacke_utils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/include/openblas_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/include/openblas_config.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/lib/x64/openblas.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/lib/x64/openblas.lib -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/lib/x86/libopenblas.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/lib/x86/libopenblas.dll.a -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/readme.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenBLAS/readme_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenBLAS/readme_2.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/calib3d.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/check.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn/dict.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn/dnn.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn/layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/dnn/layer.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/features2d.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/any.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/config.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/params.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/core.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/garg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/garg.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/gcall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/gcall.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/gmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/gapi/gmat.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/highgui.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/ml.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/ml/ml.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/ml/ml.inl.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/objdetect.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/photo.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/stitching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/stitching.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/video.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/videoio.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/include/opencv2/world.hpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/OpenCV/openCV.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/OpenCV/openCV.props -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/LICENSE.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/MANIFEST.in -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/README.md -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/README.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/dlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/dlib.props -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/algs.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any_function.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/any/any_trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/array.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/array/array_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/array/array_tools.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/array2d.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/assert.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/base64.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bayes_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bayes_utils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bigint.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bit_stream.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bits/c++config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bits/c++config.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bridge.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bridge/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bridge/bridge.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bsp.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bsp/bsp.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bsp/bsp_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/bsp/bsp_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/byte_orderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/byte_orderer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/clustering.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cmd_line_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cmd_line_parser.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/compress_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/compress_stream.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/config.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/config_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/config_reader.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/control.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/control/lspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/control/lspi.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/control/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/control/mpc.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cpp_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cpp_tokenizer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/crc32.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cpu_dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cpu_dlib.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cuda_dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cuda_dlib.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cuda_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cuda_errors.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cuda_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/cuda_utils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/gpu_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/gpu_data.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/tensor.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/tensor_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/cuda/tensor_tools.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/data_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/data_io.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/data_io/libsvm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/data_io/libsvm_io.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/data_io/mnist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/data_io/mnist.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dir_nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dir_nav.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dir_nav/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dir_nav/posix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dir_nav/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dir_nav/windows.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/directed_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/directed_graph.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/disjoint_subsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/disjoint_subsets.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/core.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/core_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/core_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/input.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/layers.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/loss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/loss.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/loss_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/loss_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/solvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/solvers.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/utilities.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/dnn/validation.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/enable_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/enable_if.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/entropy_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/entropy_decoder.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/entropy_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/entropy_encoder.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/error.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/filtering.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/float_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/float_details.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/general_hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/general_hash/hash.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/geometry.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/geometry/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/geometry/line.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/geometry/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/geometry/vector.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/graph.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/graph_cuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/graph_cuts.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/graph_utils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_core.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_core/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_core/windows.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_core/xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_core/xlib.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_widgets.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_widgets/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_widgets/fonts.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_widgets/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/gui_widgets/style.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash_map.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash_set.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/hash_table.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_io.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_keypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_keypoint.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_processing.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/image_transforms.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/iosockstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/iosockstream.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/is_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/is_kind.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/java/java_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/java/java_array.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/java/swig_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/java/swig_api.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/linker.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/logger.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lsh.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lsh/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lsh/hashes.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lz77_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lz77_buffer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lzp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/lzp_buffer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/map.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/map/map_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/map/map_kernel_1.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/map/map_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/map/map_kernel_c.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_exp.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_fft.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_fwd.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_la.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_la.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_lu.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_mat.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_op.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/matrix/matrix_qr.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/md5.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/md5/md5_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/md5/md5_kernel_1.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/memory_manager.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/metaprogramming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/metaprogramming.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/misc_api.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/misc_api/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/misc_api/posix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/misc_api/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/misc_api/windows.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/mlp.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/mlp/mlp_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/mlp/mlp_kernel_1.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/mlp/mlp_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/mlp/mlp_kernel_c.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/noncopyable.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/numeric_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/numeric_constants.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/opencv.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/opencv/cv_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/opencv/cv_image.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/opencv/to_open_cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/opencv/to_open_cv.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/optimization.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/pipe.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/pixel.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/platform.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/python.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/python/pyassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/python/pyassert.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/quantum_computing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/quantum_computing.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/queue.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/rand.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/random_forest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/random_forest.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/ref.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/reference_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/reference_counter.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/revision.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sequence.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/serialize.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/server.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set/set_compare_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set/set_compare_1.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set/set_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set/set_kernel_1.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set/set_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set/set_kernel_c.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/set_utils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd4f.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd4i.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd8f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd8f.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd8i.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/simd/simd_check.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sliding_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sliding_buffer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/smart_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/smart_pointers.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockets.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockets/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockets/posix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockets/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockets/windows.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockstreambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sockstreambuf.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sort.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sparse_vector.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sqlite.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sqlite/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sqlite/sqlite.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/stack.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/stack_trace.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/static_map.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/static_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/static_set.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/cca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/cca.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/dpca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/dpca.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/lda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/lda.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/sammon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/statistics/sammon.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/std_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/std_allocator.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/stl_checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/stl_checked.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/string.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/string/string.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/function.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kcentroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kcentroid.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kernel.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kernel_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kernel_matrix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kkmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/kkmeans.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/krls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/krls.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/krls_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/krls_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/krr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/krr_trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/null_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/null_df.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/null_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/null_trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/pegasos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/pegasos.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/ranking_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/ranking_tools.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rbf_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rbf_network.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/reduced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/reduced.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rls.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rls_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rls_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/roc_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/roc_trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rr_trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rvm.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rvm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/rvm_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/sparse_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/sparse_kernel.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/sparse_vector.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm_abstract.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm_c_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm_c_trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svm_threaded.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm/svr_trainer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/svm_threaded.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sync_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/sync_extension.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/test/checkerboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/test/checkerboard.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/test/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/test/tester.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads/async.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads/posix.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/threads/windows.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/time_this.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/time_this.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timeout.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timeout/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timeout/timeout.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timer/timer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timer/timer_heavy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timer/timer_heavy.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/timing.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/tokenizer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/tuple.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/tuple/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/tuple/tuple.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/type_safe_union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/type_safe_union.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/uintn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/uintn.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/unicode.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/unicode/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/unicode/unicode.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/unordered_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/unordered_pair.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/vectorstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/vectorstream.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/windows_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/windows_magic.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/include/dlib/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/include/dlib/xml_parser.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/lib/x64/v140/Debug/dlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/lib/x64/v140/Debug/dlib.lib -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/lib/x64/v140/Release/dlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/lib/x64/v140/Release/dlib.lib -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/lib/x86/v140/Debug/dlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/lib/x86/v140/Debug/dlib.lib -------------------------------------------------------------------------------- /src/landmarkDetector/lib/3rdParty/dlib/lib/x86/v140/Release/dlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/3rdParty/dlib/lib/x86/v140/Release/dlib.lib -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/CMakeLists.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/FaceAnalyser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/FaceAnalyser.vcxproj -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/FaceAnalyser.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/FaceAnalyser.vcxproj.user -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/include/FaceAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/include/FaceAnalyser.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/include/Face_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/include/Face_utils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/include/SVM_dynamic_lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/include/SVM_dynamic_lin.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/include/SVM_static_lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/include/SVM_static_lin.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/include/stdafx_fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/include/stdafx_fa.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/src/FaceAnalyser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/src/FaceAnalyser.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/src/Face_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/src/Face_utils.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/src/SVM_dynamic_lin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/src/SVM_dynamic_lin.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/src/SVM_static_lin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/src/SVM_static_lin.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/FaceAnalyser/src/stdafx_fa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/FaceAnalyser/src/stdafx_fa.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/CMakeLists.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/include/CNN_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/include/CNN_utils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/include/PAW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/include/PAW.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/include/PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/include/PDM.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/include/Patch_experts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/include/Patch_experts.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/include/stdafx.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/cen_general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/cen_general.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/clm_general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/clm_general.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/clm_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/clm_wild.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/clnf_general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/clnf_general.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/clnf_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/clnf_wild.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/haarAlign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/haarAlign.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/main_clm_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/main_clm_wild.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/model_eye/main_clnf_synth_left.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_left_synth.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/model_eye/main_clnf_synth_right.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_right_synth.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/model_inner/main_clnf_inner.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_inner.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/tris_68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/tris_68.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/model/tris_68_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/model/tris_68_full.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/src/CNN_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/src/CNN_utils.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/src/PAW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/src/PAW.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/src/PDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/src/PDM.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/src/Patch_experts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/src/Patch_experts.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/LandmarkDetector/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/LandmarkDetector/src/stdafx.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/Utilities.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/Utilities.vcxproj -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/Utilities.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/Utilities.vcxproj.filters -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/Utilities.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/Utilities.vcxproj.user -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/ConcurrentQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/ConcurrentQueue.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/ImageCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/ImageCapture.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/RecorderCSV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/RecorderCSV.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/RecorderHOG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/RecorderHOG.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/RecorderOpenFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/RecorderOpenFace.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/RotationHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/RotationHelpers.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/SequenceCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/SequenceCapture.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/VisualizationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/VisualizationUtils.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/Visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/Visualizer.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/include/stdafx_ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/include/stdafx_ut.h -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/ImageCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/ImageCapture.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/RecorderCSV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/RecorderCSV.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/RecorderHOG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/RecorderHOG.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/RecorderOpenFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/RecorderOpenFace.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/SequenceCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/SequenceCapture.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/VisualizationUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/VisualizationUtils.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/Visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/Visualizer.cpp -------------------------------------------------------------------------------- /src/landmarkDetector/lib/local/Utilities/src/stdafx_ut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/landmarkDetector/lib/local/Utilities/src/stdafx_ut.cpp -------------------------------------------------------------------------------- /src/proxyPredictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/proxyPredictor.py -------------------------------------------------------------------------------- /src/textureRender/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/textureRender/src/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/face.cpp -------------------------------------------------------------------------------- /src/textureRender/src/includes/ECRenderCamView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/ECRenderCamView.cpp -------------------------------------------------------------------------------- /src/textureRender/src/includes/ECRenderCamView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/ECRenderCamView.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/Matrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/Matrices.cpp -------------------------------------------------------------------------------- /src/textureRender/src/includes/Matrices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/Matrices.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/OBJRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/OBJRender.cpp -------------------------------------------------------------------------------- /src/textureRender/src/includes/OBJRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/OBJRender.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/Vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/Vectors.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/shader.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/stb_image.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/stb_image_resize.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/stb_image_write.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/stb_rect_pack.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/stb_textedit.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/stb_truetype.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/tinyobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/tinyobj.cpp -------------------------------------------------------------------------------- /src/textureRender/src/includes/tinyobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/tinyobj.h -------------------------------------------------------------------------------- /src/textureRender/src/includes/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/includes/util.h -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender.vs -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender_depth.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender_depth.frag -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender_depth.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender_depth.vs -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender_normal.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender_normal.frag -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender_posiction.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender_posiction.frag -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender_project.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender_project.frag -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender_project.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender_project.vs -------------------------------------------------------------------------------- /src/textureRender/src/shaders/OBJRender_unfold.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/src/shaders/OBJRender_unfold.frag -------------------------------------------------------------------------------- /src/textureRender/thirds/GLAD/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/GLAD/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /src/textureRender/thirds/GLAD/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/GLAD/include/glad/glad.h -------------------------------------------------------------------------------- /src/textureRender/thirds/GLAD/lib/cmake/glad/gladConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/GLAD/lib/cmake/glad/gladConfig.cmake -------------------------------------------------------------------------------- /src/textureRender/thirds/GLAD/lib/cmake/glad/gladConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/GLAD/lib/cmake/glad/gladConfigVersion.cmake -------------------------------------------------------------------------------- /src/textureRender/thirds/GLAD/lib/cmake/glad/gladTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/GLAD/lib/cmake/glad/gladTargets-release.cmake -------------------------------------------------------------------------------- /src/textureRender/thirds/GLAD/lib/cmake/glad/gladTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/GLAD/lib/cmake/glad/gladTargets.cmake -------------------------------------------------------------------------------- /src/textureRender/thirds/GLAD/lib/glad.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/GLAD/lib/glad.lib -------------------------------------------------------------------------------- /src/textureRender/thirds/glfw3/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glfw3/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glfw3/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glfw3/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glfw3/lib/cmake/glfw3/glfw3Config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /src/textureRender/thirds/glfw3/lib/cmake/glfw3/glfw3ConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glfw3/lib/cmake/glfw3/glfw3ConfigVersion.cmake -------------------------------------------------------------------------------- /src/textureRender/thirds/glfw3/lib/cmake/glfw3/glfw3Targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glfw3/lib/cmake/glfw3/glfw3Targets.cmake -------------------------------------------------------------------------------- /src/textureRender/thirds/glfw3/lib/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glfw3/lib/glfw3.lib -------------------------------------------------------------------------------- /src/textureRender/thirds/glfw3/lib/pkgconfig/glfw3.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glfw3/lib/pkgconfig/glfw3.pc -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/common.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/exponential.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/ext.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/fwd.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/geometric.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/glm.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/color_encoding.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/functions.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/functions.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/integer.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/matrix.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/packing.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/common.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/integer.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/packing.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/platform.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/vec2.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/vec3.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/vec4.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/lib/cmake/glm/glm-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/lib/cmake/glm/glm-config.cmake -------------------------------------------------------------------------------- /src/textureRender/thirds/glm/lib/cmake/glm/glm-config.cmake~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apchenstu/Facial_Details_Synthesis/HEAD/src/textureRender/thirds/glm/lib/cmake/glm/glm-config.cmake~ --------------------------------------------------------------------------------