├── README.md ├── data ├── save_deformed │ ├── Liver1InitialVolumeSource_000.ply30.ply │ ├── Liver2InitialVolumeSource_001.ply30.ply │ └── Liver3InitialVolumeSource_002.ply30.ply ├── source │ ├── Liver1InitialVolumeSource_000.ply │ ├── Liver2InitialVolumeSource_001.ply │ └── Liver3InitialVolumeSource_002.ply └── target │ ├── Liver1PartialSurfaceTarget_000.ply │ ├── Liver2PartialSurfaceTarget_001.ply │ └── Liver3PartialSurfaceTarget_002.ply ├── fig ├── ICLR25_poster.pdf └── ICLR_Teaser.png ├── model ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ └── model.cpython-39.pyc └── model.py ├── requirements.txt ├── src └── test_OAR.py └── utils2 ├── LLR.py ├── __init__.py ├── __pycache__ ├── LLR.cpython-39.pyc ├── __init__.cpython-39.pyc ├── loss_functions.cpython-39.pyc ├── normalize_pointcloud.cpython-39.pyc └── tiktok.cpython-39.pyc ├── loss_functions.py └── normalize_pointcloud.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/README.md -------------------------------------------------------------------------------- /data/save_deformed/Liver1InitialVolumeSource_000.ply30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/save_deformed/Liver1InitialVolumeSource_000.ply30.ply -------------------------------------------------------------------------------- /data/save_deformed/Liver2InitialVolumeSource_001.ply30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/save_deformed/Liver2InitialVolumeSource_001.ply30.ply -------------------------------------------------------------------------------- /data/save_deformed/Liver3InitialVolumeSource_002.ply30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/save_deformed/Liver3InitialVolumeSource_002.ply30.ply -------------------------------------------------------------------------------- /data/source/Liver1InitialVolumeSource_000.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/source/Liver1InitialVolumeSource_000.ply -------------------------------------------------------------------------------- /data/source/Liver2InitialVolumeSource_001.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/source/Liver2InitialVolumeSource_001.ply -------------------------------------------------------------------------------- /data/source/Liver3InitialVolumeSource_002.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/source/Liver3InitialVolumeSource_002.ply -------------------------------------------------------------------------------- /data/target/Liver1PartialSurfaceTarget_000.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/target/Liver1PartialSurfaceTarget_000.ply -------------------------------------------------------------------------------- /data/target/Liver2PartialSurfaceTarget_001.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/target/Liver2PartialSurfaceTarget_001.ply -------------------------------------------------------------------------------- /data/target/Liver3PartialSurfaceTarget_002.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/data/target/Liver3PartialSurfaceTarget_002.ply -------------------------------------------------------------------------------- /fig/ICLR25_poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/fig/ICLR25_poster.pdf -------------------------------------------------------------------------------- /fig/ICLR_Teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/fig/ICLR_Teaser.png -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/model/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/model/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/model/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/test_OAR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/src/test_OAR.py -------------------------------------------------------------------------------- /utils2/LLR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/LLR.py -------------------------------------------------------------------------------- /utils2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils2/__pycache__/LLR.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/__pycache__/LLR.cpython-39.pyc -------------------------------------------------------------------------------- /utils2/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /utils2/__pycache__/loss_functions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/__pycache__/loss_functions.cpython-39.pyc -------------------------------------------------------------------------------- /utils2/__pycache__/normalize_pointcloud.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/__pycache__/normalize_pointcloud.cpython-39.pyc -------------------------------------------------------------------------------- /utils2/__pycache__/tiktok.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/__pycache__/tiktok.cpython-39.pyc -------------------------------------------------------------------------------- /utils2/loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/loss_functions.py -------------------------------------------------------------------------------- /utils2/normalize_pointcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zikai1/OAReg/HEAD/utils2/normalize_pointcloud.py --------------------------------------------------------------------------------