├── CMakeLists.txt ├── README.md ├── cmake_uninstall.cmake.in ├── config.cmake.in ├── src ├── CMakeLists.txt ├── cpu.h ├── fbow.cpp ├── fbow.h ├── fbow_exports.h ├── vocabulary_creator.cpp └── vocabulary_creator.h ├── tests ├── CMakeLists.txt ├── README_DBOW2 ├── dbow2 │ ├── BowVector.h │ ├── CMakeLists.txt │ ├── FClass.h │ ├── FORB.cpp │ ├── FORB.h │ ├── FeatureVector.h │ ├── ScoringObject.cpp │ ├── ScoringObject.h │ └── TemplatedVocabulary.h ├── dbow2fbow.cpp ├── test_cpu_x86.cpp ├── test_dbow2VSfbow.cpp └── test_flann.cpp ├── utils ├── CMakeLists.txt ├── ImageMatching.py ├── dirreader.h ├── fbow_create_voc_step0.cpp ├── fbow_create_voc_step0_list.cpp ├── fbow_create_voc_step1.cpp ├── fbow_create_voc_step1_opencv.cpp ├── fbow_transform.cpp └── image_matching.cpp └── vocabularies └── orb_mur.fbow /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/README.md -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/config.cmake.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/fbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/src/fbow.cpp -------------------------------------------------------------------------------- /src/fbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/src/fbow.h -------------------------------------------------------------------------------- /src/fbow_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/src/fbow_exports.h -------------------------------------------------------------------------------- /src/vocabulary_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/src/vocabulary_creator.cpp -------------------------------------------------------------------------------- /src/vocabulary_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/src/vocabulary_creator.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/README_DBOW2: -------------------------------------------------------------------------------- 1 | DBOW2 version extracted from ORBSLAM2 and removed DLIB dependency 2 | -------------------------------------------------------------------------------- /tests/dbow2/BowVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/BowVector.h -------------------------------------------------------------------------------- /tests/dbow2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/CMakeLists.txt -------------------------------------------------------------------------------- /tests/dbow2/FClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/FClass.h -------------------------------------------------------------------------------- /tests/dbow2/FORB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/FORB.cpp -------------------------------------------------------------------------------- /tests/dbow2/FORB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/FORB.h -------------------------------------------------------------------------------- /tests/dbow2/FeatureVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/FeatureVector.h -------------------------------------------------------------------------------- /tests/dbow2/ScoringObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/ScoringObject.cpp -------------------------------------------------------------------------------- /tests/dbow2/ScoringObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/ScoringObject.h -------------------------------------------------------------------------------- /tests/dbow2/TemplatedVocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2/TemplatedVocabulary.h -------------------------------------------------------------------------------- /tests/dbow2fbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/dbow2fbow.cpp -------------------------------------------------------------------------------- /tests/test_cpu_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/test_cpu_x86.cpp -------------------------------------------------------------------------------- /tests/test_dbow2VSfbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/test_dbow2VSfbow.cpp -------------------------------------------------------------------------------- /tests/test_flann.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/tests/test_flann.cpp -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/ImageMatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/ImageMatching.py -------------------------------------------------------------------------------- /utils/dirreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/dirreader.h -------------------------------------------------------------------------------- /utils/fbow_create_voc_step0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/fbow_create_voc_step0.cpp -------------------------------------------------------------------------------- /utils/fbow_create_voc_step0_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/fbow_create_voc_step0_list.cpp -------------------------------------------------------------------------------- /utils/fbow_create_voc_step1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/fbow_create_voc_step1.cpp -------------------------------------------------------------------------------- /utils/fbow_create_voc_step1_opencv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/fbow_create_voc_step1_opencv.cpp -------------------------------------------------------------------------------- /utils/fbow_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/fbow_transform.cpp -------------------------------------------------------------------------------- /utils/image_matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/utils/image_matching.cpp -------------------------------------------------------------------------------- /vocabularies/orb_mur.fbow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsalinas/fbow/HEAD/vocabularies/orb_mur.fbow --------------------------------------------------------------------------------