├── CMakeLists.txt ├── LICENSE ├── README.md ├── data ├── 1422953230990561.bin └── 1423569801774536.bin ├── imgs ├── bvmatch_pipeline.jpg └── result.png ├── scripts ├── __pycache__ │ └── config.cpython-36.pyc ├── config.py ├── estimator.pkl ├── evaluate.py ├── generate_local_descriptors.py ├── generate_test_sets.py └── train_model.py └── src ├── bvftdescriptors.h ├── generate_descriptors.cpp └── match_two_scan.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/README.md -------------------------------------------------------------------------------- /data/1422953230990561.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/data/1422953230990561.bin -------------------------------------------------------------------------------- /data/1423569801774536.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/data/1423569801774536.bin -------------------------------------------------------------------------------- /imgs/bvmatch_pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/imgs/bvmatch_pipeline.jpg -------------------------------------------------------------------------------- /imgs/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/imgs/result.png -------------------------------------------------------------------------------- /scripts/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/scripts/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/scripts/config.py -------------------------------------------------------------------------------- /scripts/estimator.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/scripts/estimator.pkl -------------------------------------------------------------------------------- /scripts/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/scripts/evaluate.py -------------------------------------------------------------------------------- /scripts/generate_local_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/scripts/generate_local_descriptors.py -------------------------------------------------------------------------------- /scripts/generate_test_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/scripts/generate_test_sets.py -------------------------------------------------------------------------------- /scripts/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/scripts/train_model.py -------------------------------------------------------------------------------- /src/bvftdescriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/src/bvftdescriptors.h -------------------------------------------------------------------------------- /src/generate_descriptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/src/generate_descriptors.cpp -------------------------------------------------------------------------------- /src/match_two_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjuluolun/BVMatch/HEAD/src/match_two_scan.cpp --------------------------------------------------------------------------------