├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── copy_to_results_raw.sh ├── data ├── test.json └── val.json ├── debug_patches.ipynb ├── detect_sift_keypoints_and_extract_patches.py ├── extract_d2net.py ├── extract_delf.py ├── extract_descriptors_geodesc.py ├── extract_descriptors_hardnet.py ├── extract_descriptors_jit.py ├── extract_descriptors_l2net.py ├── extract_descriptors_logpolar.py ├── extract_descriptors_sosnet.py ├── extract_lfnet.py ├── extract_r2d2.py ├── generate_image_lists.py ├── generate_yaml.py ├── misc ├── colmap │ └── extract_colmap_feats_to_db.py └── l2net │ ├── convert_l2net_weights_matconv_pytorch.py │ ├── l2net_model.py │ └── l2net_ported_weights_lib+.pth ├── run_d2net.sh ├── run_delf.py ├── run_geodesc.sh ├── run_hardnet.sh ├── run_logpolar.sh ├── run_sosnet.sh ├── run_superpoint.sh ├── system ├── geodesc.yml ├── hardnet.yml ├── lfnet.yml └── r2d2-python3.6.yml ├── third_party ├── l2net_config │ ├── convert_l2net_weights_matconv_pytorch.py │ ├── l2net_model.py │ ├── l2net_ported_weights_lib+.pth │ ├── test_batch_img.mat │ └── test_one.mat └── superpoint_forked │ ├── LICENSE │ └── superpoint.py └── utils.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/README.md -------------------------------------------------------------------------------- /copy_to_results_raw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/copy_to_results_raw.sh -------------------------------------------------------------------------------- /data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/data/test.json -------------------------------------------------------------------------------- /data/val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/data/val.json -------------------------------------------------------------------------------- /debug_patches.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/debug_patches.ipynb -------------------------------------------------------------------------------- /detect_sift_keypoints_and_extract_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/detect_sift_keypoints_and_extract_patches.py -------------------------------------------------------------------------------- /extract_d2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_d2net.py -------------------------------------------------------------------------------- /extract_delf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_delf.py -------------------------------------------------------------------------------- /extract_descriptors_geodesc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_descriptors_geodesc.py -------------------------------------------------------------------------------- /extract_descriptors_hardnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_descriptors_hardnet.py -------------------------------------------------------------------------------- /extract_descriptors_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_descriptors_jit.py -------------------------------------------------------------------------------- /extract_descriptors_l2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_descriptors_l2net.py -------------------------------------------------------------------------------- /extract_descriptors_logpolar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_descriptors_logpolar.py -------------------------------------------------------------------------------- /extract_descriptors_sosnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_descriptors_sosnet.py -------------------------------------------------------------------------------- /extract_lfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_lfnet.py -------------------------------------------------------------------------------- /extract_r2d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/extract_r2d2.py -------------------------------------------------------------------------------- /generate_image_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/generate_image_lists.py -------------------------------------------------------------------------------- /generate_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/generate_yaml.py -------------------------------------------------------------------------------- /misc/colmap/extract_colmap_feats_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/misc/colmap/extract_colmap_feats_to_db.py -------------------------------------------------------------------------------- /misc/l2net/convert_l2net_weights_matconv_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/misc/l2net/convert_l2net_weights_matconv_pytorch.py -------------------------------------------------------------------------------- /misc/l2net/l2net_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/misc/l2net/l2net_model.py -------------------------------------------------------------------------------- /misc/l2net/l2net_ported_weights_lib+.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/misc/l2net/l2net_ported_weights_lib+.pth -------------------------------------------------------------------------------- /run_d2net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/run_d2net.sh -------------------------------------------------------------------------------- /run_delf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/run_delf.py -------------------------------------------------------------------------------- /run_geodesc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/run_geodesc.sh -------------------------------------------------------------------------------- /run_hardnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/run_hardnet.sh -------------------------------------------------------------------------------- /run_logpolar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/run_logpolar.sh -------------------------------------------------------------------------------- /run_sosnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/run_sosnet.sh -------------------------------------------------------------------------------- /run_superpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/run_superpoint.sh -------------------------------------------------------------------------------- /system/geodesc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/system/geodesc.yml -------------------------------------------------------------------------------- /system/hardnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/system/hardnet.yml -------------------------------------------------------------------------------- /system/lfnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/system/lfnet.yml -------------------------------------------------------------------------------- /system/r2d2-python3.6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/system/r2d2-python3.6.yml -------------------------------------------------------------------------------- /third_party/l2net_config/convert_l2net_weights_matconv_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/third_party/l2net_config/convert_l2net_weights_matconv_pytorch.py -------------------------------------------------------------------------------- /third_party/l2net_config/l2net_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/third_party/l2net_config/l2net_model.py -------------------------------------------------------------------------------- /third_party/l2net_config/l2net_ported_weights_lib+.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/third_party/l2net_config/l2net_ported_weights_lib+.pth -------------------------------------------------------------------------------- /third_party/l2net_config/test_batch_img.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/third_party/l2net_config/test_batch_img.mat -------------------------------------------------------------------------------- /third_party/l2net_config/test_one.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/third_party/l2net_config/test_one.mat -------------------------------------------------------------------------------- /third_party/superpoint_forked/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/third_party/superpoint_forked/LICENSE -------------------------------------------------------------------------------- /third_party/superpoint_forked/superpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/third_party/superpoint_forked/superpoint.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcg-uvic/image-matching-benchmark-baselines/HEAD/utils.py --------------------------------------------------------------------------------