├── Dicom_Viewer ├── Dicom_Viewer.py └── Editable │ ├── MainWindow.py │ ├── Read_dcm.py │ ├── Run_MainWindow.ipynb │ ├── Threads.py │ ├── images.qrc │ ├── qrc │ ├── About.png │ ├── Browse.png │ ├── Exit.png │ ├── FullScreeen.png │ ├── GUI_Logo.ico │ ├── Maximized.png │ ├── file.png │ └── folder.png │ └── window.ui ├── LDCT_Denoising ├── Dataset.ipynb ├── GUI │ ├── GUI.ipynb │ ├── MainWindow.py │ ├── Read_dcm.py │ ├── ResDensenet.py │ ├── TS_Net.py │ ├── Threads.py │ ├── dataset.py │ ├── main_window.qrc │ ├── model │ │ ├── RED_CNN_MSE_epoch_30.pt │ │ ├── RED_CNN_SSIM_epoch_30.pt │ │ ├── TS_DenseNet_epoch_30.pt │ │ └── TS_Net_epoch_30.pt │ ├── qrc │ │ ├── About.png │ │ ├── Browse.png │ │ ├── Denoise.png │ │ ├── Exit.png │ │ ├── Files.png │ │ ├── FullScreeen.png │ │ ├── GUI_Logo.ico │ │ ├── Maximized.png │ │ ├── Minimized.png │ │ ├── file.png │ │ └── folder.png │ └── window_denoise.ui ├── Image_Preprocessing.ipynb └── Neural_Network │ ├── Loss_Func.py │ ├── Model_Test.py │ ├── Nets.py │ ├── One_stage_net_train_and_test.ipynb │ ├── Two_stage_net_train_and_test.ipynb │ └── dataset.py ├── LICENSE ├── README.md └── _config.yml /Dicom_Viewer/Dicom_Viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Dicom_Viewer.py -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/MainWindow.py -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/Read_dcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/Read_dcm.py -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/Run_MainWindow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/Run_MainWindow.ipynb -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/Threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/Threads.py -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/images.qrc -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/About.png -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/Browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/Browse.png -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/Exit.png -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/FullScreeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/FullScreeen.png -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/GUI_Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/GUI_Logo.ico -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/Maximized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/Maximized.png -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/file.png -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/qrc/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/qrc/folder.png -------------------------------------------------------------------------------- /Dicom_Viewer/Editable/window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/Dicom_Viewer/Editable/window.ui -------------------------------------------------------------------------------- /LDCT_Denoising/Dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Dataset.ipynb -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/GUI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/GUI.ipynb -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/MainWindow.py -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/Read_dcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/Read_dcm.py -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/ResDensenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/ResDensenet.py -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/TS_Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/TS_Net.py -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/Threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/Threads.py -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/dataset.py -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/main_window.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/main_window.qrc -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/model/RED_CNN_MSE_epoch_30.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/model/RED_CNN_MSE_epoch_30.pt -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/model/RED_CNN_SSIM_epoch_30.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/model/RED_CNN_SSIM_epoch_30.pt -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/model/TS_DenseNet_epoch_30.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/model/TS_DenseNet_epoch_30.pt -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/model/TS_Net_epoch_30.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/model/TS_Net_epoch_30.pt -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/About.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/Browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/Browse.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/Denoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/Denoise.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/Exit.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/Files.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/FullScreeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/FullScreeen.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/GUI_Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/GUI_Logo.ico -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/Maximized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/Maximized.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/Minimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/Minimized.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/file.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/qrc/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/qrc/folder.png -------------------------------------------------------------------------------- /LDCT_Denoising/GUI/window_denoise.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/GUI/window_denoise.ui -------------------------------------------------------------------------------- /LDCT_Denoising/Image_Preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Image_Preprocessing.ipynb -------------------------------------------------------------------------------- /LDCT_Denoising/Neural_Network/Loss_Func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Neural_Network/Loss_Func.py -------------------------------------------------------------------------------- /LDCT_Denoising/Neural_Network/Model_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Neural_Network/Model_Test.py -------------------------------------------------------------------------------- /LDCT_Denoising/Neural_Network/Nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Neural_Network/Nets.py -------------------------------------------------------------------------------- /LDCT_Denoising/Neural_Network/One_stage_net_train_and_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Neural_Network/One_stage_net_train_and_test.ipynb -------------------------------------------------------------------------------- /LDCT_Denoising/Neural_Network/Two_stage_net_train_and_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Neural_Network/Two_stage_net_train_and_test.ipynb -------------------------------------------------------------------------------- /LDCT_Denoising/Neural_Network/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LDCT_Denoising/Neural_Network/dataset.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyZhang-Codes/LDCT-denoising-with-Deep-Learning-and-Dicom-Viewer/HEAD/_config.yml --------------------------------------------------------------------------------