├── .gitignore ├── README ├── ccd_defs.pl ├── ccd_defs.rb ├── convert_vlsift_to_lowesift.pl ├── install-centos.sh ├── install.sh ├── patched_files └── src │ └── bundler │ └── src │ ├── KeyMatch.cpp │ ├── Makefile │ ├── keys2a.cpp │ └── keys2a.h ├── run.pl └── run.rb /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ccd_defs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/ccd_defs.pl -------------------------------------------------------------------------------- /ccd_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/ccd_defs.rb -------------------------------------------------------------------------------- /convert_vlsift_to_lowesift.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/convert_vlsift_to_lowesift.pl -------------------------------------------------------------------------------- /install-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/install-centos.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/install.sh -------------------------------------------------------------------------------- /patched_files/src/bundler/src/KeyMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/patched_files/src/bundler/src/KeyMatch.cpp -------------------------------------------------------------------------------- /patched_files/src/bundler/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/patched_files/src/bundler/src/Makefile -------------------------------------------------------------------------------- /patched_files/src/bundler/src/keys2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/patched_files/src/bundler/src/keys2a.cpp -------------------------------------------------------------------------------- /patched_files/src/bundler/src/keys2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/patched_files/src/bundler/src/keys2a.h -------------------------------------------------------------------------------- /run.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/run.pl -------------------------------------------------------------------------------- /run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwesda/BundlerTools/HEAD/run.rb --------------------------------------------------------------------------------