├── .gitignore ├── LICENSE ├── README.md ├── animate ├── assets ├── 4DCT_sorting_artefacts.png └── XCATSimulation.gif ├── evaluation.py ├── generateData.py ├── generate_surrogate_signals.py ├── plot_phantom_images.py ├── runSupremo ├── run_surrogate_driven_method.sh ├── run_surrogate_free_method.sh └── run_surrogate_optimized_method.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/README.md -------------------------------------------------------------------------------- /animate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/animate -------------------------------------------------------------------------------- /assets/4DCT_sorting_artefacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/assets/4DCT_sorting_artefacts.png -------------------------------------------------------------------------------- /assets/XCATSimulation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/assets/XCATSimulation.gif -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/evaluation.py -------------------------------------------------------------------------------- /generateData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/generateData.py -------------------------------------------------------------------------------- /generate_surrogate_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/generate_surrogate_signals.py -------------------------------------------------------------------------------- /plot_phantom_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/plot_phantom_images.py -------------------------------------------------------------------------------- /runSupremo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/runSupremo -------------------------------------------------------------------------------- /run_surrogate_driven_method.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/run_surrogate_driven_method.sh -------------------------------------------------------------------------------- /run_surrogate_free_method.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/run_surrogate_free_method.sh -------------------------------------------------------------------------------- /run_surrogate_optimized_method.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuliang-Huang/4DCT-irregular-motion/HEAD/run_surrogate_optimized_method.sh --------------------------------------------------------------------------------