├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── cyclegan3d.py ├── dataloader.py ├── images ├── contrastremoval.gif └── cyclegan.png ├── losses.py ├── main.py ├── models.py ├── requirements_conda.txt ├── requirements_pip.txt └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/config.py -------------------------------------------------------------------------------- /cyclegan3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/cyclegan3d.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/dataloader.py -------------------------------------------------------------------------------- /images/contrastremoval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/images/contrastremoval.gif -------------------------------------------------------------------------------- /images/cyclegan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/images/cyclegan.png -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/losses.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/models.py -------------------------------------------------------------------------------- /requirements_conda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/requirements_conda.txt -------------------------------------------------------------------------------- /requirements_pip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/requirements_pip.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/PatchBased_3DCycleGAN_CT_Synthesis/HEAD/utils.py --------------------------------------------------------------------------------