├── .gitignore ├── LICENSE ├── README.md ├── demo.py ├── media ├── 02085496_6952371977.jpg ├── 02928139_3448003521.jpg └── teaser.png ├── pretrained_models ├── nefsac_E_kitti.pt ├── nefsac_E_phototourism.pt ├── nefsac_F_kitti.pt └── nefsac_F_phototourism.pt ├── source ├── __init__.py ├── data.py ├── model.py ├── ransac │ ├── __init__.py │ ├── core.py │ ├── essential_matrix_estimator.py │ ├── fundamental_matrix_estimator.py │ ├── msac_score.py │ └── samplers.py ├── trainer.py └── utils.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/demo.py -------------------------------------------------------------------------------- /media/02085496_6952371977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/media/02085496_6952371977.jpg -------------------------------------------------------------------------------- /media/02928139_3448003521.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/media/02928139_3448003521.jpg -------------------------------------------------------------------------------- /media/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/media/teaser.png -------------------------------------------------------------------------------- /pretrained_models/nefsac_E_kitti.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/pretrained_models/nefsac_E_kitti.pt -------------------------------------------------------------------------------- /pretrained_models/nefsac_E_phototourism.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/pretrained_models/nefsac_E_phototourism.pt -------------------------------------------------------------------------------- /pretrained_models/nefsac_F_kitti.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/pretrained_models/nefsac_F_kitti.pt -------------------------------------------------------------------------------- /pretrained_models/nefsac_F_phototourism.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/pretrained_models/nefsac_F_phototourism.pt -------------------------------------------------------------------------------- /source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/data.py -------------------------------------------------------------------------------- /source/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/model.py -------------------------------------------------------------------------------- /source/ransac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/ransac/__init__.py -------------------------------------------------------------------------------- /source/ransac/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/ransac/core.py -------------------------------------------------------------------------------- /source/ransac/essential_matrix_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/ransac/essential_matrix_estimator.py -------------------------------------------------------------------------------- /source/ransac/fundamental_matrix_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/ransac/fundamental_matrix_estimator.py -------------------------------------------------------------------------------- /source/ransac/msac_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/ransac/msac_score.py -------------------------------------------------------------------------------- /source/ransac/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/ransac/samplers.py -------------------------------------------------------------------------------- /source/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/trainer.py -------------------------------------------------------------------------------- /source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/source/utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavalli1234/NeFSAC/HEAD/train.py --------------------------------------------------------------------------------