├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── doc └── image_matches.png ├── examples ├── CMakeLists.txt ├── match.cc └── realtime_demo.cc ├── include ├── InterpolateSparse2d.h ├── XFModel.h └── XFeat.h ├── project_setup.sh ├── ref.png ├── src ├── CMakeLists.txt ├── InterpolateSparse2d.cc ├── XFModel.cc └── XFeat.cc ├── tgt.png └── weights └── xfeat.pt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/README.md -------------------------------------------------------------------------------- /doc/image_matches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/doc/image_matches.png -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/examples/match.cc -------------------------------------------------------------------------------- /examples/realtime_demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/examples/realtime_demo.cc -------------------------------------------------------------------------------- /include/InterpolateSparse2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/include/InterpolateSparse2d.h -------------------------------------------------------------------------------- /include/XFModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/include/XFModel.h -------------------------------------------------------------------------------- /include/XFeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/include/XFeat.h -------------------------------------------------------------------------------- /project_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/project_setup.sh -------------------------------------------------------------------------------- /ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/ref.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/InterpolateSparse2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/src/InterpolateSparse2d.cc -------------------------------------------------------------------------------- /src/XFModel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/src/XFModel.cc -------------------------------------------------------------------------------- /src/XFeat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/src/XFeat.cc -------------------------------------------------------------------------------- /tgt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/tgt.png -------------------------------------------------------------------------------- /weights/xfeat.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaysankar01/xfeat_cpp/HEAD/weights/xfeat.pt --------------------------------------------------------------------------------