├── README.md ├── U-net(2D) ├── medicaltorch_localdata.py ├── medicaltorch_localdata_16.py ├── medicaltorch_localdata_16_512.py ├── model_test.ipynb └── model_test_512.ipynb ├── V-net(3D) └── V_net │ ├── loss │ ├── Dice_loss.py │ ├── Focal_loss.py │ └── __pycache__ │ │ └── Dice_loss.cpython-36.pyc │ ├── net │ ├── DenseVnet.py │ ├── __pycache__ │ │ └── DialResUNet.cpython-36.pyc │ └── simpleVnet.py │ ├── plot_v.ipynb │ ├── train_ds.py │ ├── val.py │ └── val_vote.py └── 数据预处理 └── sort_nii.ipynb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /U-net(2D)/medicaltorch_localdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/U-net(2D)/medicaltorch_localdata.py -------------------------------------------------------------------------------- /U-net(2D)/medicaltorch_localdata_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/U-net(2D)/medicaltorch_localdata_16.py -------------------------------------------------------------------------------- /U-net(2D)/medicaltorch_localdata_16_512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/U-net(2D)/medicaltorch_localdata_16_512.py -------------------------------------------------------------------------------- /U-net(2D)/model_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/U-net(2D)/model_test.ipynb -------------------------------------------------------------------------------- /U-net(2D)/model_test_512.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/U-net(2D)/model_test_512.ipynb -------------------------------------------------------------------------------- /V-net(3D)/V_net/loss/Dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/loss/Dice_loss.py -------------------------------------------------------------------------------- /V-net(3D)/V_net/loss/Focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/loss/Focal_loss.py -------------------------------------------------------------------------------- /V-net(3D)/V_net/loss/__pycache__/Dice_loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/loss/__pycache__/Dice_loss.cpython-36.pyc -------------------------------------------------------------------------------- /V-net(3D)/V_net/net/DenseVnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/net/DenseVnet.py -------------------------------------------------------------------------------- /V-net(3D)/V_net/net/__pycache__/DialResUNet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/net/__pycache__/DialResUNet.cpython-36.pyc -------------------------------------------------------------------------------- /V-net(3D)/V_net/net/simpleVnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/net/simpleVnet.py -------------------------------------------------------------------------------- /V-net(3D)/V_net/plot_v.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/plot_v.ipynb -------------------------------------------------------------------------------- /V-net(3D)/V_net/train_ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/train_ds.py -------------------------------------------------------------------------------- /V-net(3D)/V_net/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/val.py -------------------------------------------------------------------------------- /V-net(3D)/V_net/val_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/V-net(3D)/V_net/val_vote.py -------------------------------------------------------------------------------- /数据预处理/sort_nii.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyx736/Liver-cancer-segmentation/HEAD/数据预处理/sort_nii.ipynb --------------------------------------------------------------------------------