├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VersionInfo.rc.in ├── asserts ├── demo1.png ├── demo2.png └── opencv_path.png ├── demo.cpp ├── include ├── matcher.h └── template_matching.h ├── matcher ├── CMakeLists.txt ├── Pattern_Matching │ ├── PatternMatching.cpp │ └── PatternMatching.h ├── base_matcher │ ├── base_matcher.cpp │ └── base_matcher.h ├── matcher.cpp └── matcher_ctype.cpp └── py_demo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/README.md -------------------------------------------------------------------------------- /VersionInfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/VersionInfo.rc.in -------------------------------------------------------------------------------- /asserts/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/asserts/demo1.png -------------------------------------------------------------------------------- /asserts/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/asserts/demo2.png -------------------------------------------------------------------------------- /asserts/opencv_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/asserts/opencv_path.png -------------------------------------------------------------------------------- /demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/demo.cpp -------------------------------------------------------------------------------- /include/matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/include/matcher.h -------------------------------------------------------------------------------- /include/template_matching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/include/template_matching.h -------------------------------------------------------------------------------- /matcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/matcher/CMakeLists.txt -------------------------------------------------------------------------------- /matcher/Pattern_Matching/PatternMatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/matcher/Pattern_Matching/PatternMatching.cpp -------------------------------------------------------------------------------- /matcher/Pattern_Matching/PatternMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/matcher/Pattern_Matching/PatternMatching.h -------------------------------------------------------------------------------- /matcher/base_matcher/base_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/matcher/base_matcher/base_matcher.cpp -------------------------------------------------------------------------------- /matcher/base_matcher/base_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/matcher/base_matcher/base_matcher.h -------------------------------------------------------------------------------- /matcher/matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/matcher/matcher.cpp -------------------------------------------------------------------------------- /matcher/matcher_ctype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/matcher/matcher_ctype.cpp -------------------------------------------------------------------------------- /py_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acai66/opencv_matching/HEAD/py_demo.py --------------------------------------------------------------------------------