├── .gitignore ├── LICENSE ├── README.md ├── configs ├── FCars.yaml └── SPair.yaml ├── datasets ├── FCars.py └── SPair.py ├── dino_mapper.py ├── extractor_dino.py ├── extractor_sd.py ├── pck_spair_pascal_sphere.py ├── sph.yaml ├── train_sph.py └── utils ├── logger.py ├── utils_correspondence.py ├── utils_flow.py └── utils_tss.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__/ 2 | exps 3 | results* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/README.md -------------------------------------------------------------------------------- /configs/FCars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/configs/FCars.yaml -------------------------------------------------------------------------------- /configs/SPair.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/configs/SPair.yaml -------------------------------------------------------------------------------- /datasets/FCars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/datasets/FCars.py -------------------------------------------------------------------------------- /datasets/SPair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/datasets/SPair.py -------------------------------------------------------------------------------- /dino_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/dino_mapper.py -------------------------------------------------------------------------------- /extractor_dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/extractor_dino.py -------------------------------------------------------------------------------- /extractor_sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/extractor_sd.py -------------------------------------------------------------------------------- /pck_spair_pascal_sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/pck_spair_pascal_sphere.py -------------------------------------------------------------------------------- /sph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/sph.yaml -------------------------------------------------------------------------------- /train_sph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/train_sph.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/utils_correspondence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/utils/utils_correspondence.py -------------------------------------------------------------------------------- /utils/utils_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/utils/utils_flow.py -------------------------------------------------------------------------------- /utils/utils_tss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VICO-UoE/SphericalMaps/HEAD/utils/utils_tss.py --------------------------------------------------------------------------------