├── .gitignore ├── LICENSE ├── README.md ├── custom_demo.py ├── eth ├── benchmark.py ├── download.sh └── prepare_dataset.sh ├── local-feature-evaluation ├── benchmark.py ├── compare_reconstructions.py └── download.sh ├── multi-view-refinement ├── CMakeLists.txt ├── cost.cc ├── graph.cc ├── graph.h └── solve.cc ├── reconstruction-scripts ├── colmap_utils.py ├── reconstruction_pipeline.py └── triangulation_pipeline.py ├── two-view-refinement ├── checkpoint.pth ├── compute_match_graph.py ├── feature_matchers.py ├── model.py └── refinement.py ├── types.proto └── utils ├── create_exhaustive_matching_list.py ├── create_image_list_file.py ├── create_sequential_matching_list.py ├── create_starting_database.py ├── create_starting_database_eth.py ├── extract_features_sift.py └── extract_features_surf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/README.md -------------------------------------------------------------------------------- /custom_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/custom_demo.py -------------------------------------------------------------------------------- /eth/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/eth/benchmark.py -------------------------------------------------------------------------------- /eth/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/eth/download.sh -------------------------------------------------------------------------------- /eth/prepare_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/eth/prepare_dataset.sh -------------------------------------------------------------------------------- /local-feature-evaluation/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/local-feature-evaluation/benchmark.py -------------------------------------------------------------------------------- /local-feature-evaluation/compare_reconstructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/local-feature-evaluation/compare_reconstructions.py -------------------------------------------------------------------------------- /local-feature-evaluation/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/local-feature-evaluation/download.sh -------------------------------------------------------------------------------- /multi-view-refinement/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/multi-view-refinement/CMakeLists.txt -------------------------------------------------------------------------------- /multi-view-refinement/cost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/multi-view-refinement/cost.cc -------------------------------------------------------------------------------- /multi-view-refinement/graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/multi-view-refinement/graph.cc -------------------------------------------------------------------------------- /multi-view-refinement/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/multi-view-refinement/graph.h -------------------------------------------------------------------------------- /multi-view-refinement/solve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/multi-view-refinement/solve.cc -------------------------------------------------------------------------------- /reconstruction-scripts/colmap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/reconstruction-scripts/colmap_utils.py -------------------------------------------------------------------------------- /reconstruction-scripts/reconstruction_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/reconstruction-scripts/reconstruction_pipeline.py -------------------------------------------------------------------------------- /reconstruction-scripts/triangulation_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/reconstruction-scripts/triangulation_pipeline.py -------------------------------------------------------------------------------- /two-view-refinement/checkpoint.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/two-view-refinement/checkpoint.pth -------------------------------------------------------------------------------- /two-view-refinement/compute_match_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/two-view-refinement/compute_match_graph.py -------------------------------------------------------------------------------- /two-view-refinement/feature_matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/two-view-refinement/feature_matchers.py -------------------------------------------------------------------------------- /two-view-refinement/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/two-view-refinement/model.py -------------------------------------------------------------------------------- /two-view-refinement/refinement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/two-view-refinement/refinement.py -------------------------------------------------------------------------------- /types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/types.proto -------------------------------------------------------------------------------- /utils/create_exhaustive_matching_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/utils/create_exhaustive_matching_list.py -------------------------------------------------------------------------------- /utils/create_image_list_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/utils/create_image_list_file.py -------------------------------------------------------------------------------- /utils/create_sequential_matching_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/utils/create_sequential_matching_list.py -------------------------------------------------------------------------------- /utils/create_starting_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/utils/create_starting_database.py -------------------------------------------------------------------------------- /utils/create_starting_database_eth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/utils/create_starting_database_eth.py -------------------------------------------------------------------------------- /utils/extract_features_sift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/utils/extract_features_sift.py -------------------------------------------------------------------------------- /utils/extract_features_surf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihaidusmanu/local-feature-refinement/HEAD/utils/extract_features_surf.py --------------------------------------------------------------------------------