├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 17-1882-01722-registration.gif └── correspondences.png ├── configs └── test │ ├── DFLNet │ └── VOL-17-1882_CIOS_FUSION.yaml │ ├── PoseNet │ └── VOL-17-1882_CIOS_FUSION.yaml │ └── SCRNet │ └── VOL-17-1882_CIOS_FUSION.yaml ├── eval_metrics.py ├── models ├── __init__.py ├── dflnet.py ├── posenet.py ├── scrnet.py └── unet.py ├── pyproject.toml ├── run_inference.py └── utils ├── data_loading.py ├── evaluations.py ├── misc.py ├── model_helpers.py └── visualizations.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/README.md -------------------------------------------------------------------------------- /assets/17-1882-01722-registration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/assets/17-1882-01722-registration.gif -------------------------------------------------------------------------------- /assets/correspondences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/assets/correspondences.png -------------------------------------------------------------------------------- /configs/test/DFLNet/VOL-17-1882_CIOS_FUSION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/configs/test/DFLNet/VOL-17-1882_CIOS_FUSION.yaml -------------------------------------------------------------------------------- /configs/test/PoseNet/VOL-17-1882_CIOS_FUSION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/configs/test/PoseNet/VOL-17-1882_CIOS_FUSION.yaml -------------------------------------------------------------------------------- /configs/test/SCRNet/VOL-17-1882_CIOS_FUSION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/configs/test/SCRNet/VOL-17-1882_CIOS_FUSION.yaml -------------------------------------------------------------------------------- /eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/eval_metrics.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/dflnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/models/dflnet.py -------------------------------------------------------------------------------- /models/posenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/models/posenet.py -------------------------------------------------------------------------------- /models/scrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/models/scrnet.py -------------------------------------------------------------------------------- /models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/models/unet.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/run_inference.py -------------------------------------------------------------------------------- /utils/data_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/utils/data_loading.py -------------------------------------------------------------------------------- /utils/evaluations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/utils/evaluations.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/model_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/utils/model_helpers.py -------------------------------------------------------------------------------- /utils/visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pragyanstha/SCR-Registration/HEAD/utils/visualizations.py --------------------------------------------------------------------------------