├── .gitignore ├── CMakeLists.txt ├── DetectDemo.cc ├── FlowDemo.cc ├── MatchDemo.cc ├── README.md ├── assets ├── detect_output.png └── match_output.png ├── data ├── 1.png └── 2.png ├── model ├── xfeat_640x640.onnx └── xfeat_800x576.onnx └── src ├── Matcher.cc ├── Matcher.h ├── OnnxHelper.cc ├── OnnxHelper.h ├── Timer.h ├── XFeat.cc └── XFeat.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DetectDemo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/DetectDemo.cc -------------------------------------------------------------------------------- /FlowDemo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/FlowDemo.cc -------------------------------------------------------------------------------- /MatchDemo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/MatchDemo.cc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/README.md -------------------------------------------------------------------------------- /assets/detect_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/assets/detect_output.png -------------------------------------------------------------------------------- /assets/match_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/assets/match_output.png -------------------------------------------------------------------------------- /data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/data/1.png -------------------------------------------------------------------------------- /data/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/data/2.png -------------------------------------------------------------------------------- /model/xfeat_640x640.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/model/xfeat_640x640.onnx -------------------------------------------------------------------------------- /model/xfeat_800x576.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/model/xfeat_800x576.onnx -------------------------------------------------------------------------------- /src/Matcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/src/Matcher.cc -------------------------------------------------------------------------------- /src/Matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/src/Matcher.h -------------------------------------------------------------------------------- /src/OnnxHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/src/OnnxHelper.cc -------------------------------------------------------------------------------- /src/OnnxHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/src/OnnxHelper.h -------------------------------------------------------------------------------- /src/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/src/Timer.h -------------------------------------------------------------------------------- /src/XFeat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/src/XFeat.cc -------------------------------------------------------------------------------- /src/XFeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meyiao/xfeatc/HEAD/src/XFeat.h --------------------------------------------------------------------------------