├── .gitignore ├── CMakeLists.txt ├── README.md ├── daisy_keypoints.cpp ├── image ├── a.png ├── b.png ├── church1.jpg ├── church2.jpg ├── effel.jpg └── result.png ├── keypoints.cpp ├── matcher.cpp ├── py ├── .gitignore ├── README.md ├── daisy.py └── matcher.py ├── robust_matcher.cpp ├── robust_matcher_vfc.cpp ├── vfc.cpp └── vfc.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/README.md -------------------------------------------------------------------------------- /daisy_keypoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/daisy_keypoints.cpp -------------------------------------------------------------------------------- /image/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/image/a.png -------------------------------------------------------------------------------- /image/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/image/b.png -------------------------------------------------------------------------------- /image/church1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/image/church1.jpg -------------------------------------------------------------------------------- /image/church2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/image/church2.jpg -------------------------------------------------------------------------------- /image/effel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/image/effel.jpg -------------------------------------------------------------------------------- /image/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/image/result.png -------------------------------------------------------------------------------- /keypoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/keypoints.cpp -------------------------------------------------------------------------------- /matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/matcher.cpp -------------------------------------------------------------------------------- /py/.gitignore: -------------------------------------------------------------------------------- 1 | ./swig* 2 | -------------------------------------------------------------------------------- /py/README.md: -------------------------------------------------------------------------------- 1 | # Keypoint detector with Python 2 | -------------------------------------------------------------------------------- /py/daisy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/py/daisy.py -------------------------------------------------------------------------------- /py/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/py/matcher.py -------------------------------------------------------------------------------- /robust_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/robust_matcher.cpp -------------------------------------------------------------------------------- /robust_matcher_vfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/robust_matcher_vfc.cpp -------------------------------------------------------------------------------- /vfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/vfc.cpp -------------------------------------------------------------------------------- /vfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpkuse/robust_feature_matching/HEAD/vfc.h --------------------------------------------------------------------------------