├── .gitignore ├── README.md └── ShapeMatchTest ├── ShapeMatchTest.sln ├── ShapeMatchTest.v11.suo ├── ShapeMatchTest ├── ReadMe.txt ├── ShapeMatch.cpp ├── ShapeMatch.h ├── ShapeMatchTest.vcxproj ├── ShapeMatchTest.vcxproj.user ├── main.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── TestImage ├── 1.bmp ├── 2.bmp ├── 3.bmp ├── 4.bmp ├── 5.bmp ├── 6.bmp ├── 7.bmp ├── a.bmp ├── b.bmp ├── c.bmp ├── d.bmp ├── e.bmp ├── f.bmp ├── g.bmp ├── h.bmp ├── i.bmp ├── j.bmp ├── k.bmp ├── l.bmp ├── mixed_01.bmp ├── mixed_02.bmp ├── mixed_03.bmp └── mixed_04.bmp ├── bin └── TestImage │ ├── 1.bmp │ ├── 2.bmp │ ├── 3.bmp │ ├── 4.bmp │ ├── 5.bmp │ ├── 6.bmp │ ├── 7.bmp │ ├── a.bmp │ ├── b.bmp │ ├── c.bmp │ ├── d.bmp │ ├── e.bmp │ ├── f.bmp │ ├── g.bmp │ ├── h.bmp │ ├── i.bmp │ ├── j.bmp │ ├── mixed_01.bmp │ ├── mixed_02.bmp │ ├── mixed_03.bmp │ └── mixed_04.bmp ├── include ├── opencv │ ├── cv.h │ ├── cv.hpp │ ├── cvaux.h │ ├── cvaux.hpp │ ├── cvwimage.h │ ├── cxcore.h │ ├── cxcore.hpp │ ├── cxeigen.hpp │ ├── cxmisc.h │ ├── highgui.h │ └── ml.h └── opencv2 │ ├── calib3d │ └── calib3d.hpp │ ├── contrib │ ├── contrib.hpp │ ├── detection_based_tracker.hpp │ ├── hybridtracker.hpp │ ├── openfabmap.hpp │ └── retina.hpp │ ├── core │ ├── affine.hpp │ ├── core.hpp │ ├── core_c.h │ ├── cuda_devptrs.hpp │ ├── devmem2d.hpp │ ├── eigen.hpp │ ├── gpumat.hpp │ ├── internal.hpp │ ├── mat.hpp │ ├── opengl_interop.hpp │ ├── opengl_interop_deprecated.hpp │ ├── operations.hpp │ ├── types_c.h │ ├── version.hpp │ └── wimage.hpp │ ├── features2d │ └── features2d.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 │ ├── hdf5.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 │ ├── gpu │ ├── device │ │ ├── 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 │ │ ├── static_check.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 │ ├── devmem2d.hpp │ ├── gpu.hpp │ ├── gpumat.hpp │ └── stream_accessor.hpp │ ├── highgui │ ├── cap_ios.h │ ├── highgui.hpp │ ├── highgui_c.h │ └── ios.h │ ├── imgproc │ ├── imgproc.hpp │ ├── imgproc_c.h │ └── types_c.h │ ├── legacy │ ├── blobtrack.hpp │ ├── compat.hpp │ ├── legacy.hpp │ └── streams.hpp │ ├── ml │ └── ml.hpp │ ├── nonfree │ ├── features2d.hpp │ ├── gpu.hpp │ ├── nonfree.hpp │ └── ocl.hpp │ ├── objdetect │ └── objdetect.hpp │ ├── ocl │ ├── matrix_operations.hpp │ └── ocl.hpp │ ├── opencv.hpp │ ├── opencv_modules.hpp │ ├── photo │ ├── photo.hpp │ └── photo_c.h │ ├── stitching │ ├── detail │ │ ├── autocalib.hpp │ │ ├── blenders.hpp │ │ ├── camera.hpp │ │ ├── exposure_compensate.hpp │ │ ├── matchers.hpp │ │ ├── motion_estimators.hpp │ │ ├── seam_finders.hpp │ │ ├── util.hpp │ │ ├── util_inl.hpp │ │ ├── warpers.hpp │ │ └── warpers_inl.hpp │ ├── stitcher.hpp │ └── warpers.hpp │ ├── superres │ ├── optical_flow.hpp │ └── superres.hpp │ ├── ts │ ├── gpu_perf.hpp │ ├── gpu_test.hpp │ ├── ts.hpp │ ├── ts_gtest.h │ └── ts_perf.hpp │ ├── video │ ├── background_segm.hpp │ ├── tracking.hpp │ └── video.hpp │ └── videostab │ ├── deblurring.hpp │ ├── fast_marching.hpp │ ├── fast_marching_inl.hpp │ ├── frame_source.hpp │ ├── global_motion.hpp │ ├── inpainting.hpp │ ├── log.hpp │ ├── motion_stabilizing.hpp │ ├── optical_flow.hpp │ ├── stabilizer.hpp │ └── videostab.hpp └── lib ├── OpenCVConfig.cmake ├── OpenCVModules-debug.cmake ├── OpenCVModules-release.cmake └── OpenCVModules.cmake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/README.md -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest.sln -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest.v11.suo -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/ReadMe.txt -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/ShapeMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/ShapeMatch.cpp -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/ShapeMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/ShapeMatch.h -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/ShapeMatchTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/ShapeMatchTest.vcxproj -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/ShapeMatchTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/ShapeMatchTest.vcxproj.user -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/main.cpp -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/stdafx.cpp -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/stdafx.h -------------------------------------------------------------------------------- /ShapeMatchTest/ShapeMatchTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/ShapeMatchTest/targetver.h -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/1.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/2.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/3.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/4.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/5.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/6.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/7.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/a.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/b.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/c.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/c.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/d.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/e.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/f.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/f.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/g.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/g.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/h.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/h.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/i.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/i.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/j.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/j.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/k.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/k.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/l.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/mixed_01.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/mixed_01.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/mixed_02.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/mixed_02.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/mixed_03.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/mixed_03.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/TestImage/mixed_04.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/TestImage/mixed_04.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/1.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/2.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/3.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/4.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/5.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/6.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/7.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/a.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/b.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/c.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/c.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/d.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/d.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/e.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/f.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/f.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/g.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/g.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/h.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/h.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/i.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/i.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/j.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/j.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/mixed_01.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/mixed_01.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/mixed_02.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/mixed_02.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/mixed_03.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/mixed_03.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/bin/TestImage/mixed_04.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/bin/TestImage/mixed_04.bmp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cv.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cv.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cvaux.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cxcore.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/highgui.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv/ml.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/contrib/contrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/contrib/contrib.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/contrib/detection_based_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/contrib/detection_based_tracker.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/contrib/hybridtracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/contrib/hybridtracker.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/contrib/openfabmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/contrib/openfabmap.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/contrib/retina.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/contrib/retina.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/cuda_devptrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/cuda_devptrs.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/devmem2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/devmem2d.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/gpumat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/gpumat.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/internal.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/opengl_interop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/opengl_interop.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/opengl_interop_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/opengl_interop_deprecated.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/any.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/config.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/defines.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/hierarchical_clustering_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/hierarchical_clustering_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/kdtree_single_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/kdtree_single_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/lsh_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/lsh_table.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/miniflann.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/params.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/block.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/border_interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/border_interpolate.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/color.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/common.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/datamov_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/datamov_utils.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/detail/color_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/detail/color_detail.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/detail/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/detail/reduce.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/detail/reduce_key_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/detail/reduce_key_val.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/detail/transform_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/detail/transform_detail.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/detail/type_traits_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/detail/type_traits_detail.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/detail/vec_distance_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/detail/vec_distance_detail.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/dynamic_smem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/dynamic_smem.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/emulation.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/filters.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/funcattrib.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/functional.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/limits.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/reduce.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/saturate_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/saturate_cast.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/scan.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/simd_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/simd_functions.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/static_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/static_check.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/transform.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/type_traits.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/utility.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/vec_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/vec_distance.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/vec_math.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/vec_traits.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/warp.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/warp_reduce.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/device/warp_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/device/warp_shuffle.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/devmem2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/devmem2d.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/gpu.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/gpumat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/gpumat.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/gpu/stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/gpu/stream_accessor.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/highgui/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/highgui/cap_ios.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/highgui/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/highgui/ios.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/legacy/blobtrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/legacy/blobtrack.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/legacy/compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/legacy/compat.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/legacy/legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/legacy/legacy.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/legacy/streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/legacy/streams.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/nonfree/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/nonfree/features2d.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/nonfree/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/nonfree/gpu.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/nonfree/nonfree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/nonfree/nonfree.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/nonfree/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/nonfree/ocl.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ocl/matrix_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ocl/matrix_operations.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ocl/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ocl/ocl.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/photo/photo_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/photo/photo_c.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/autocalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/autocalib.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/blenders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/blenders.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/camera.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/exposure_compensate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/exposure_compensate.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/matchers.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/motion_estimators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/motion_estimators.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/seam_finders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/seam_finders.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/util.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/util_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/util_inl.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/warpers.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/detail/warpers_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/detail/warpers_inl.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/stitcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/stitcher.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/stitching/warpers.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/superres/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/superres/optical_flow.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/superres/superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/superres/superres.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ts/gpu_perf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ts/gpu_perf.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ts/gpu_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ts/gpu_test.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ts/ts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ts/ts.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ts/ts_gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ts/ts_gtest.h -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/ts/ts_perf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/ts/ts_perf.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/video/video.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/deblurring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/deblurring.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/fast_marching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/fast_marching.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/fast_marching_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/fast_marching_inl.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/frame_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/frame_source.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/global_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/global_motion.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/inpainting.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/log.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/motion_stabilizing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/motion_stabilizing.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/optical_flow.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/stabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/stabilizer.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/include/opencv2/videostab/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/include/opencv2/videostab/videostab.hpp -------------------------------------------------------------------------------- /ShapeMatchTest/lib/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/lib/OpenCVConfig.cmake -------------------------------------------------------------------------------- /ShapeMatchTest/lib/OpenCVModules-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/lib/OpenCVModules-debug.cmake -------------------------------------------------------------------------------- /ShapeMatchTest/lib/OpenCVModules-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/lib/OpenCVModules-release.cmake -------------------------------------------------------------------------------- /ShapeMatchTest/lib/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmccskylove/ShapeMatch/HEAD/ShapeMatchTest/lib/OpenCVModules.cmake --------------------------------------------------------------------------------