├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── common ├── CMakeLists.txt ├── Image.h ├── ImgMatch.h ├── Logger.cpp └── Logger.h ├── docs ├── .gitignore ├── screen_1.jpg ├── screen_2.jpg └── screen_3.jpg ├── imageimp ├── CMakeLists.txt ├── Image.cpp ├── OCVImage.cpp ├── OCVImage.h ├── QtImage.cpp └── QtImage.h ├── modules ├── CMakeLists.txt ├── ModOcvFeat.cpp ├── ModOcvFeat.h ├── ModScale.cpp └── ModScale.h └── qtui ├── .gitignore ├── CMakeLists.txt ├── ImgMatchUI.cpp ├── ImgMatchUI.h ├── ImgMatchUI.ui └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/README.md -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/common/Image.h -------------------------------------------------------------------------------- /common/ImgMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/common/ImgMatch.h -------------------------------------------------------------------------------- /common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/common/Logger.cpp -------------------------------------------------------------------------------- /common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/common/Logger.h -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/screen_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/docs/screen_1.jpg -------------------------------------------------------------------------------- /docs/screen_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/docs/screen_2.jpg -------------------------------------------------------------------------------- /docs/screen_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/docs/screen_3.jpg -------------------------------------------------------------------------------- /imageimp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/imageimp/CMakeLists.txt -------------------------------------------------------------------------------- /imageimp/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/imageimp/Image.cpp -------------------------------------------------------------------------------- /imageimp/OCVImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/imageimp/OCVImage.cpp -------------------------------------------------------------------------------- /imageimp/OCVImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/imageimp/OCVImage.h -------------------------------------------------------------------------------- /imageimp/QtImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/imageimp/QtImage.cpp -------------------------------------------------------------------------------- /imageimp/QtImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/imageimp/QtImage.h -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/ModOcvFeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/modules/ModOcvFeat.cpp -------------------------------------------------------------------------------- /modules/ModOcvFeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/modules/ModOcvFeat.h -------------------------------------------------------------------------------- /modules/ModScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/modules/ModScale.cpp -------------------------------------------------------------------------------- /modules/ModScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/modules/ModScale.h -------------------------------------------------------------------------------- /qtui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/qtui/.gitignore -------------------------------------------------------------------------------- /qtui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/qtui/CMakeLists.txt -------------------------------------------------------------------------------- /qtui/ImgMatchUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/qtui/ImgMatchUI.cpp -------------------------------------------------------------------------------- /qtui/ImgMatchUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/qtui/ImgMatchUI.h -------------------------------------------------------------------------------- /qtui/ImgMatchUI.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/qtui/ImgMatchUI.ui -------------------------------------------------------------------------------- /qtui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akirov/ImgMatch/HEAD/qtui/main.cpp --------------------------------------------------------------------------------