├── .gitignore ├── ConveyorBeltTearingDetector ├── ConveyorBeltTearingDetector.cpp ├── ConveyorBeltTearingDetector.vcxproj ├── ConveyorBeltTearingDetector.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ImageMagic ├── ImageHandler.cpp ├── ImageHandler.h ├── ImageMagic.cpp ├── ImageMagic.h ├── ImageMagic.ico ├── ImageMagic.rc ├── ImageMagic.vcxproj ├── ImageMagic.vcxproj.filters ├── ReadMe.txt ├── resource.h ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── MachineVisionLib.sln ├── MachineVisionLib ├── CPU-GPU配置切换.txt ├── FaceRecognition.cpp ├── FaceRecognition.h ├── ImagePreprocess.cpp ├── ImagePreprocess.h ├── MVLVideo.cpp ├── MVLVideo.h ├── MachineVisionLib.cpp ├── MachineVisionLib.h ├── MachineVisionLib.vcxproj ├── MachineVisionLib.vcxproj.filters ├── MachineVisionLib.vcxproj.user ├── MathAlgorithmLib.cpp ├── MathAlgorithmLib.h ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── 配置caffe注意问题.docx ├── ObjectClassifier ├── ObjectClassifier.vcxproj ├── ObjectClassifier.vcxproj.filters ├── ObjectClassifier.vcxproj.user ├── ObjectDetector.cpp ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── WhoYouAre ├── ReadMe.txt ├── WhoYouAre.cpp ├── WhoYouAre.h ├── WhoYouAre.vcxproj ├── WhoYouAre.vcxproj.filters ├── WhoYouAre.vcxproj.user ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── WhoYouAreByVideo ├── ReadMe.txt ├── WhoYouAreByVideo.cpp ├── WhoYouAreByVideo.h ├── WhoYouAreByVideo.vcxproj ├── WhoYouAreByVideo.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── _config.yml ├── common_lib ├── ReadMe.txt ├── common_lib.cpp ├── common_lib.h ├── common_lib.vcxproj ├── common_lib.vcxproj.filters ├── common_lib.vcxproj.user ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── examples ├── EX-CV-FileStorage.cpp ├── EX-CV-features2d-Found-box_in_scene.cpp ├── EX-CV-features2d-box-to-box_in_scene.cpp ├── EX-CV-keypoints-FREAK.cpp ├── EX-LFACE-FaceLandmark.cpp ├── EX-matchTemplate.cpp ├── EX-watershed-mouse.cpp ├── LibFaceFeature2DLibUse.cpp ├── data │ ├── box.png │ ├── box_in_scene.png │ ├── tea-box-in-scene.jpg │ └── tea-box.jpg └── watershed-coins-recognition-python │ ├── contour_only.py │ ├── images │ ├── coins_01.png │ ├── coins_02.png │ ├── coins_03.png │ ├── pills_01.png │ └── pills_02.png │ ├── readme.txt │ └── watershed.py └── x64 └── bin ├── BELT-PICS ├── belt-1.jpg ├── belt-2.jpg ├── belt-5.jpg └── belt.jpg ├── FACE-PICS ├── Glass-Boy.jpg ├── HuangXuHua-1.jpg ├── HuangXuHua-2.jpg ├── HuangXuHua-3.jpg ├── HuangXuHua-4.jpg ├── HuangXuHua-5.jpg ├── HuangXuHua.jpg ├── ImogenMorris-1.jpg ├── ImogenMorris-2.jpg ├── ImogenMorris-3.jpg ├── ImogenMorris-4.jpg ├── ImogenMorris-5.jpg ├── ImogenMorris-6.jpg ├── ImogenMorris.jpg ├── LenaHeadey-1.jpg ├── LenaHeadey-2.jpg ├── LenaHeadey-3.jpg ├── LenaHeadey-4.jpg ├── LenaHeadey-5.jpg ├── LenaHeadey-6.jpg ├── LenaHeadey.jpg ├── MegaMindGirl.jpg ├── YuanLongPing-1.jpg ├── YuanLongPing-2.jpg ├── YuanLongPing-3.jpg ├── YuanLongPing-4.jpg ├── YuanLongPing-5.jpg ├── YuanLongPing-6.jpg ├── YuanLongPing-7.jpg ├── YuanLongPing.jpg ├── ZhouZhiHua-1.jpg ├── ZhouZhiHua-2.jpg ├── ZhouZhiHua-3.jpg ├── ZhouZhiHua-4.jpg ├── ZhouZhiHua-5.jpg └── ZhouZhiHua.jpg └── TEST-PICS ├── 5yuan.jpg └── box_in_scene.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/.gitignore -------------------------------------------------------------------------------- /ConveyorBeltTearingDetector/ConveyorBeltTearingDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ConveyorBeltTearingDetector/ConveyorBeltTearingDetector.cpp -------------------------------------------------------------------------------- /ConveyorBeltTearingDetector/ConveyorBeltTearingDetector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ConveyorBeltTearingDetector/ConveyorBeltTearingDetector.vcxproj -------------------------------------------------------------------------------- /ConveyorBeltTearingDetector/ConveyorBeltTearingDetector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ConveyorBeltTearingDetector/ConveyorBeltTearingDetector.vcxproj.filters -------------------------------------------------------------------------------- /ConveyorBeltTearingDetector/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ConveyorBeltTearingDetector/ReadMe.txt -------------------------------------------------------------------------------- /ConveyorBeltTearingDetector/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ConveyorBeltTearingDetector/stdafx.cpp -------------------------------------------------------------------------------- /ConveyorBeltTearingDetector/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ConveyorBeltTearingDetector/stdafx.h -------------------------------------------------------------------------------- /ConveyorBeltTearingDetector/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ConveyorBeltTearingDetector/targetver.h -------------------------------------------------------------------------------- /ImageMagic/ImageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageHandler.cpp -------------------------------------------------------------------------------- /ImageMagic/ImageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageHandler.h -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageMagic.cpp -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageMagic.h -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageMagic.ico -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageMagic.rc -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageMagic.vcxproj -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ImageMagic.vcxproj.filters -------------------------------------------------------------------------------- /ImageMagic/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/ReadMe.txt -------------------------------------------------------------------------------- /ImageMagic/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/resource.h -------------------------------------------------------------------------------- /ImageMagic/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/small.ico -------------------------------------------------------------------------------- /ImageMagic/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/stdafx.cpp -------------------------------------------------------------------------------- /ImageMagic/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/stdafx.h -------------------------------------------------------------------------------- /ImageMagic/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ImageMagic/targetver.h -------------------------------------------------------------------------------- /MachineVisionLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib.sln -------------------------------------------------------------------------------- /MachineVisionLib/CPU-GPU配置切换.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/CPU-GPU配置切换.txt -------------------------------------------------------------------------------- /MachineVisionLib/FaceRecognition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/FaceRecognition.cpp -------------------------------------------------------------------------------- /MachineVisionLib/FaceRecognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/FaceRecognition.h -------------------------------------------------------------------------------- /MachineVisionLib/ImagePreprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/ImagePreprocess.cpp -------------------------------------------------------------------------------- /MachineVisionLib/ImagePreprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/ImagePreprocess.h -------------------------------------------------------------------------------- /MachineVisionLib/MVLVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MVLVideo.cpp -------------------------------------------------------------------------------- /MachineVisionLib/MVLVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MVLVideo.h -------------------------------------------------------------------------------- /MachineVisionLib/MachineVisionLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MachineVisionLib.cpp -------------------------------------------------------------------------------- /MachineVisionLib/MachineVisionLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MachineVisionLib.h -------------------------------------------------------------------------------- /MachineVisionLib/MachineVisionLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MachineVisionLib.vcxproj -------------------------------------------------------------------------------- /MachineVisionLib/MachineVisionLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MachineVisionLib.vcxproj.filters -------------------------------------------------------------------------------- /MachineVisionLib/MachineVisionLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MachineVisionLib.vcxproj.user -------------------------------------------------------------------------------- /MachineVisionLib/MathAlgorithmLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MathAlgorithmLib.cpp -------------------------------------------------------------------------------- /MachineVisionLib/MathAlgorithmLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/MathAlgorithmLib.h -------------------------------------------------------------------------------- /MachineVisionLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/ReadMe.txt -------------------------------------------------------------------------------- /MachineVisionLib/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/dllmain.cpp -------------------------------------------------------------------------------- /MachineVisionLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/stdafx.cpp -------------------------------------------------------------------------------- /MachineVisionLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/stdafx.h -------------------------------------------------------------------------------- /MachineVisionLib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/targetver.h -------------------------------------------------------------------------------- /MachineVisionLib/配置caffe注意问题.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/MachineVisionLib/配置caffe注意问题.docx -------------------------------------------------------------------------------- /ObjectClassifier/ObjectClassifier.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/ObjectClassifier.vcxproj -------------------------------------------------------------------------------- /ObjectClassifier/ObjectClassifier.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/ObjectClassifier.vcxproj.filters -------------------------------------------------------------------------------- /ObjectClassifier/ObjectClassifier.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/ObjectClassifier.vcxproj.user -------------------------------------------------------------------------------- /ObjectClassifier/ObjectDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/ObjectDetector.cpp -------------------------------------------------------------------------------- /ObjectClassifier/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/ReadMe.txt -------------------------------------------------------------------------------- /ObjectClassifier/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/stdafx.cpp -------------------------------------------------------------------------------- /ObjectClassifier/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/stdafx.h -------------------------------------------------------------------------------- /ObjectClassifier/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/ObjectClassifier/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/README.md -------------------------------------------------------------------------------- /WhoYouAre/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/ReadMe.txt -------------------------------------------------------------------------------- /WhoYouAre/WhoYouAre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/WhoYouAre.cpp -------------------------------------------------------------------------------- /WhoYouAre/WhoYouAre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/WhoYouAre.h -------------------------------------------------------------------------------- /WhoYouAre/WhoYouAre.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/WhoYouAre.vcxproj -------------------------------------------------------------------------------- /WhoYouAre/WhoYouAre.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/WhoYouAre.vcxproj.filters -------------------------------------------------------------------------------- /WhoYouAre/WhoYouAre.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/WhoYouAre.vcxproj.user -------------------------------------------------------------------------------- /WhoYouAre/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/stdafx.cpp -------------------------------------------------------------------------------- /WhoYouAre/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/stdafx.h -------------------------------------------------------------------------------- /WhoYouAre/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAre/targetver.h -------------------------------------------------------------------------------- /WhoYouAreByVideo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/ReadMe.txt -------------------------------------------------------------------------------- /WhoYouAreByVideo/WhoYouAreByVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/WhoYouAreByVideo.cpp -------------------------------------------------------------------------------- /WhoYouAreByVideo/WhoYouAreByVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/WhoYouAreByVideo.h -------------------------------------------------------------------------------- /WhoYouAreByVideo/WhoYouAreByVideo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/WhoYouAreByVideo.vcxproj -------------------------------------------------------------------------------- /WhoYouAreByVideo/WhoYouAreByVideo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/WhoYouAreByVideo.vcxproj.filters -------------------------------------------------------------------------------- /WhoYouAreByVideo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/stdafx.cpp -------------------------------------------------------------------------------- /WhoYouAreByVideo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/stdafx.h -------------------------------------------------------------------------------- /WhoYouAreByVideo/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/WhoYouAreByVideo/targetver.h -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/_config.yml -------------------------------------------------------------------------------- /common_lib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/ReadMe.txt -------------------------------------------------------------------------------- /common_lib/common_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/common_lib.cpp -------------------------------------------------------------------------------- /common_lib/common_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/common_lib.h -------------------------------------------------------------------------------- /common_lib/common_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/common_lib.vcxproj -------------------------------------------------------------------------------- /common_lib/common_lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/common_lib.vcxproj.filters -------------------------------------------------------------------------------- /common_lib/common_lib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/common_lib.vcxproj.user -------------------------------------------------------------------------------- /common_lib/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/dllmain.cpp -------------------------------------------------------------------------------- /common_lib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/stdafx.cpp -------------------------------------------------------------------------------- /common_lib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/stdafx.h -------------------------------------------------------------------------------- /common_lib/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/common_lib/targetver.h -------------------------------------------------------------------------------- /examples/EX-CV-FileStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/EX-CV-FileStorage.cpp -------------------------------------------------------------------------------- /examples/EX-CV-features2d-Found-box_in_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/EX-CV-features2d-Found-box_in_scene.cpp -------------------------------------------------------------------------------- /examples/EX-CV-features2d-box-to-box_in_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/EX-CV-features2d-box-to-box_in_scene.cpp -------------------------------------------------------------------------------- /examples/EX-CV-keypoints-FREAK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/EX-CV-keypoints-FREAK.cpp -------------------------------------------------------------------------------- /examples/EX-LFACE-FaceLandmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/EX-LFACE-FaceLandmark.cpp -------------------------------------------------------------------------------- /examples/EX-matchTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/EX-matchTemplate.cpp -------------------------------------------------------------------------------- /examples/EX-watershed-mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/EX-watershed-mouse.cpp -------------------------------------------------------------------------------- /examples/LibFaceFeature2DLibUse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/LibFaceFeature2DLibUse.cpp -------------------------------------------------------------------------------- /examples/data/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/data/box.png -------------------------------------------------------------------------------- /examples/data/box_in_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/data/box_in_scene.png -------------------------------------------------------------------------------- /examples/data/tea-box-in-scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/data/tea-box-in-scene.jpg -------------------------------------------------------------------------------- /examples/data/tea-box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/data/tea-box.jpg -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/contour_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/contour_only.py -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/images/coins_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/images/coins_01.png -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/images/coins_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/images/coins_02.png -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/images/coins_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/images/coins_03.png -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/images/pills_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/images/pills_01.png -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/images/pills_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/images/pills_02.png -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/readme.txt -------------------------------------------------------------------------------- /examples/watershed-coins-recognition-python/watershed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/examples/watershed-coins-recognition-python/watershed.py -------------------------------------------------------------------------------- /x64/bin/BELT-PICS/belt-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/BELT-PICS/belt-1.jpg -------------------------------------------------------------------------------- /x64/bin/BELT-PICS/belt-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/BELT-PICS/belt-2.jpg -------------------------------------------------------------------------------- /x64/bin/BELT-PICS/belt-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/BELT-PICS/belt-5.jpg -------------------------------------------------------------------------------- /x64/bin/BELT-PICS/belt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/BELT-PICS/belt.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/Glass-Boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/Glass-Boy.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/HuangXuHua-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/HuangXuHua-1.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/HuangXuHua-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/HuangXuHua-2.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/HuangXuHua-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/HuangXuHua-3.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/HuangXuHua-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/HuangXuHua-4.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/HuangXuHua-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/HuangXuHua-5.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/HuangXuHua.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/HuangXuHua.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ImogenMorris-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ImogenMorris-1.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ImogenMorris-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ImogenMorris-2.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ImogenMorris-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ImogenMorris-3.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ImogenMorris-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ImogenMorris-4.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ImogenMorris-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ImogenMorris-5.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ImogenMorris-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ImogenMorris-6.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ImogenMorris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ImogenMorris.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/LenaHeadey-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/LenaHeadey-1.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/LenaHeadey-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/LenaHeadey-2.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/LenaHeadey-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/LenaHeadey-3.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/LenaHeadey-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/LenaHeadey-4.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/LenaHeadey-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/LenaHeadey-5.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/LenaHeadey-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/LenaHeadey-6.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/LenaHeadey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/LenaHeadey.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/MegaMindGirl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/MegaMindGirl.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing-1.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing-2.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing-3.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing-4.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing-5.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing-6.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing-7.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/YuanLongPing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/YuanLongPing.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ZhouZhiHua-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ZhouZhiHua-1.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ZhouZhiHua-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ZhouZhiHua-2.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ZhouZhiHua-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ZhouZhiHua-3.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ZhouZhiHua-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ZhouZhiHua-4.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ZhouZhiHua-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ZhouZhiHua-5.jpg -------------------------------------------------------------------------------- /x64/bin/FACE-PICS/ZhouZhiHua.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/FACE-PICS/ZhouZhiHua.jpg -------------------------------------------------------------------------------- /x64/bin/TEST-PICS/5yuan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/TEST-PICS/5yuan.jpg -------------------------------------------------------------------------------- /x64/bin/TEST-PICS/box_in_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo-T/MachineVisionLib/HEAD/x64/bin/TEST-PICS/box_in_scene.png --------------------------------------------------------------------------------