├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── environment.yml ├── extract_d2_net.py ├── extract_r2d2.py ├── extract_superglue.py ├── extract_superpoint.py ├── run_baselines.sh └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/environment.yml -------------------------------------------------------------------------------- /extract_d2_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/extract_d2_net.py -------------------------------------------------------------------------------- /extract_r2d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/extract_r2d2.py -------------------------------------------------------------------------------- /extract_superglue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/extract_superglue.py -------------------------------------------------------------------------------- /extract_superpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/extract_superpoint.py -------------------------------------------------------------------------------- /run_baselines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/run_baselines.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmwenzel/mlad-benchmark-baselines/HEAD/utils.py --------------------------------------------------------------------------------