├── HomographyError.txt ├── .gitattributes ├── .gitignore ├── AlgorithmEstimation.cpp ├── AlgorithmEstimation.hpp ├── CMakeLists.txt ├── CollectedStatistics.cpp ├── CollectedStatistics.hpp ├── Comparetext327 ├── HomographyError.jpg ├── HomographyError.txt ├── MatchingRatio.jpg ├── MatchingRatio.txt ├── MeanDistance.jpg ├── MeanDistance.txt ├── PSNR.jpg ├── PercentOfCorrectMatches.jpg ├── PercentOfCorrectMatches.txt ├── PercentOfMatches.jpg ├── PercentOfMatches.txt ├── Performance.txt ├── Precision.txt ├── Recall.txt ├── compare.docx └── performance.jpg ├── Debug ├── opencv3_.87A5552B.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── opencv3_FeatCompare.lastbuildstate ├── opencv3_FeatCompare.Build.CppClean.log ├── opencv3_FeatCompare.log ├── vc120.idb └── vc120.pdb ├── Feat_Compare.m ├── FeatureAlgorithm.cpp ├── FeatureAlgorithm.hpp ├── ImageTransformation.cpp ├── ImageTransformation.hpp ├── LICENSE.md ├── MatchingRatio.txt ├── MeanDistance.txt ├── PercentOfCorrectMatches.txt ├── PercentOfMatches.txt ├── Performance.txt ├── Precision.txt ├── Psnr.txt ├── README.md ├── Recall.txt ├── Release ├── opencv3_.87A5552B.tlog │ ├── cl.command.1.tlog │ ├── opencv3_FeatCompare.lastbuildstate │ └── unsuccessfulbuild ├── opencv3_FeatCompare.log └── vc120.pdb ├── compare3lostFREAK ├── HomographyError.jpg ├── MatchingRatio.jpg ├── MeanDistance.jpg ├── PSNR.jpg ├── PercentOfCorrectMatches.jpg ├── Precision.jpg ├── REcall.jpg ├── correctMatchesPercent.jpg ├── percentOfMatches.jpg └── performance.jpg ├── img1.pgm ├── img1.ppm ├── img2.pgm ├── img2.ppm ├── img3.pgm ├── img3.ppm ├── img4.pgm ├── img4.ppm ├── img5.pgm ├── img5.ppm ├── img6.pgm ├── img6.ppm ├── kaze.cpp ├── kaze.h ├── kaze_config.cpp ├── kaze_config.h ├── kaze_features.cpp ├── kaze_features.h ├── kaze_ipoint.cpp ├── kaze_ipoint.h ├── kaze_nldiffusion_functions.cpp ├── kaze_nldiffusion_functions.h ├── kaze_utils.cpp ├── kaze_utils.h ├── main.cpp ├── opencv3_FeatCompare.vcxproj ├── opencv3_FeatCompare.vcxproj.filters └── opencv3_FeatCompare.vcxproj.user / HomographyError.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/ HomographyError.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/.gitignore -------------------------------------------------------------------------------- /AlgorithmEstimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/AlgorithmEstimation.cpp -------------------------------------------------------------------------------- /AlgorithmEstimation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/AlgorithmEstimation.hpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CollectedStatistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/CollectedStatistics.cpp -------------------------------------------------------------------------------- /CollectedStatistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/CollectedStatistics.hpp -------------------------------------------------------------------------------- /Comparetext327/HomographyError.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/HomographyError.jpg -------------------------------------------------------------------------------- /Comparetext327/HomographyError.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/HomographyError.txt -------------------------------------------------------------------------------- /Comparetext327/MatchingRatio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/MatchingRatio.jpg -------------------------------------------------------------------------------- /Comparetext327/MatchingRatio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/MatchingRatio.txt -------------------------------------------------------------------------------- /Comparetext327/MeanDistance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/MeanDistance.jpg -------------------------------------------------------------------------------- /Comparetext327/MeanDistance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/MeanDistance.txt -------------------------------------------------------------------------------- /Comparetext327/PSNR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/PSNR.jpg -------------------------------------------------------------------------------- /Comparetext327/PercentOfCorrectMatches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/PercentOfCorrectMatches.jpg -------------------------------------------------------------------------------- /Comparetext327/PercentOfCorrectMatches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/PercentOfCorrectMatches.txt -------------------------------------------------------------------------------- /Comparetext327/PercentOfMatches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/PercentOfMatches.jpg -------------------------------------------------------------------------------- /Comparetext327/PercentOfMatches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/PercentOfMatches.txt -------------------------------------------------------------------------------- /Comparetext327/Performance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/Performance.txt -------------------------------------------------------------------------------- /Comparetext327/Precision.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/Precision.txt -------------------------------------------------------------------------------- /Comparetext327/Recall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/Recall.txt -------------------------------------------------------------------------------- /Comparetext327/compare.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/compare.docx -------------------------------------------------------------------------------- /Comparetext327/performance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Comparetext327/performance.jpg -------------------------------------------------------------------------------- /Debug/opencv3_.87A5552B.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_.87A5552B.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Debug/opencv3_.87A5552B.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_.87A5552B.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Debug/opencv3_.87A5552B.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_.87A5552B.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /Debug/opencv3_.87A5552B.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_.87A5552B.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Debug/opencv3_.87A5552B.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_.87A5552B.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Debug/opencv3_.87A5552B.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_.87A5552B.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Debug/opencv3_.87A5552B.tlog/opencv3_FeatCompare.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_.87A5552B.tlog/opencv3_FeatCompare.lastbuildstate -------------------------------------------------------------------------------- /Debug/opencv3_FeatCompare.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_FeatCompare.Build.CppClean.log -------------------------------------------------------------------------------- /Debug/opencv3_FeatCompare.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/opencv3_FeatCompare.log -------------------------------------------------------------------------------- /Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/vc120.idb -------------------------------------------------------------------------------- /Debug/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Debug/vc120.pdb -------------------------------------------------------------------------------- /Feat_Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Feat_Compare.m -------------------------------------------------------------------------------- /FeatureAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/FeatureAlgorithm.cpp -------------------------------------------------------------------------------- /FeatureAlgorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/FeatureAlgorithm.hpp -------------------------------------------------------------------------------- /ImageTransformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/ImageTransformation.cpp -------------------------------------------------------------------------------- /ImageTransformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/ImageTransformation.hpp -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MatchingRatio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/MatchingRatio.txt -------------------------------------------------------------------------------- /MeanDistance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/MeanDistance.txt -------------------------------------------------------------------------------- /PercentOfCorrectMatches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/PercentOfCorrectMatches.txt -------------------------------------------------------------------------------- /PercentOfMatches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/PercentOfMatches.txt -------------------------------------------------------------------------------- /Performance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Performance.txt -------------------------------------------------------------------------------- /Precision.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Precision.txt -------------------------------------------------------------------------------- /Psnr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Psnr.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/README.md -------------------------------------------------------------------------------- /Recall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Recall.txt -------------------------------------------------------------------------------- /Release/opencv3_.87A5552B.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Release/opencv3_.87A5552B.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /Release/opencv3_.87A5552B.tlog/opencv3_FeatCompare.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Release/opencv3_.87A5552B.tlog/opencv3_FeatCompare.lastbuildstate -------------------------------------------------------------------------------- /Release/opencv3_.87A5552B.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Release/opencv3_FeatCompare.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Release/opencv3_FeatCompare.log -------------------------------------------------------------------------------- /Release/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/Release/vc120.pdb -------------------------------------------------------------------------------- /compare3lostFREAK/HomographyError.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/HomographyError.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/MatchingRatio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/MatchingRatio.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/MeanDistance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/MeanDistance.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/PSNR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/PSNR.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/PercentOfCorrectMatches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/PercentOfCorrectMatches.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/Precision.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/Precision.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/REcall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/REcall.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/correctMatchesPercent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/correctMatchesPercent.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/percentOfMatches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/percentOfMatches.jpg -------------------------------------------------------------------------------- /compare3lostFREAK/performance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/compare3lostFREAK/performance.jpg -------------------------------------------------------------------------------- /img1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img1.pgm -------------------------------------------------------------------------------- /img1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img1.ppm -------------------------------------------------------------------------------- /img2.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img2.pgm -------------------------------------------------------------------------------- /img2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img2.ppm -------------------------------------------------------------------------------- /img3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img3.pgm -------------------------------------------------------------------------------- /img3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img3.ppm -------------------------------------------------------------------------------- /img4.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img4.pgm -------------------------------------------------------------------------------- /img4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img4.ppm -------------------------------------------------------------------------------- /img5.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img5.pgm -------------------------------------------------------------------------------- /img5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img5.ppm -------------------------------------------------------------------------------- /img6.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img6.pgm -------------------------------------------------------------------------------- /img6.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/img6.ppm -------------------------------------------------------------------------------- /kaze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze.cpp -------------------------------------------------------------------------------- /kaze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze.h -------------------------------------------------------------------------------- /kaze_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_config.cpp -------------------------------------------------------------------------------- /kaze_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_config.h -------------------------------------------------------------------------------- /kaze_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_features.cpp -------------------------------------------------------------------------------- /kaze_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_features.h -------------------------------------------------------------------------------- /kaze_ipoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_ipoint.cpp -------------------------------------------------------------------------------- /kaze_ipoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_ipoint.h -------------------------------------------------------------------------------- /kaze_nldiffusion_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_nldiffusion_functions.cpp -------------------------------------------------------------------------------- /kaze_nldiffusion_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_nldiffusion_functions.h -------------------------------------------------------------------------------- /kaze_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_utils.cpp -------------------------------------------------------------------------------- /kaze_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/kaze_utils.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/main.cpp -------------------------------------------------------------------------------- /opencv3_FeatCompare.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/opencv3_FeatCompare.vcxproj -------------------------------------------------------------------------------- /opencv3_FeatCompare.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/opencv3_FeatCompare.vcxproj.filters -------------------------------------------------------------------------------- /opencv3_FeatCompare.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcg1942/Opencv3_FeatCompare/HEAD/opencv3_FeatCompare.vcxproj.user --------------------------------------------------------------------------------