├── 35.mp4 ├── 38.mp4 ├── 3dVNet+liver.PNG ├── 3dVNet.png ├── 51.mp4 ├── GTvsVNet.bmp ├── LICENSE ├── LiTS ├── Vnet │ ├── __init__.py │ ├── layer.py │ ├── model_vnet3d.py │ └── util.py ├── data_input │ ├── __init__.py │ ├── dataset_input.py │ ├── puppy.jpg │ ├── puppy_mask.jpg │ ├── testimage.jpg │ ├── testmask.jpg │ ├── trainX.csv │ └── trainY.csv ├── dataprocess │ ├── getPatchImageAndMask.py │ ├── preprocessing.py │ └── utils.py ├── vnet3d_predict.py ├── vnet3d_train.py └── vnet3d_train_predict.py ├── LiTS_header.jpg ├── README.md ├── diceloss.PNG ├── liverleadboard.PNG ├── livertop30.PNG └── tumortop34.PNG /35.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/35.mp4 -------------------------------------------------------------------------------- /38.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/38.mp4 -------------------------------------------------------------------------------- /3dVNet+liver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/3dVNet+liver.PNG -------------------------------------------------------------------------------- /3dVNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/3dVNet.png -------------------------------------------------------------------------------- /51.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/51.mp4 -------------------------------------------------------------------------------- /GTvsVNet.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/GTvsVNet.bmp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LICENSE -------------------------------------------------------------------------------- /LiTS/Vnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/Vnet/__init__.py -------------------------------------------------------------------------------- /LiTS/Vnet/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/Vnet/layer.py -------------------------------------------------------------------------------- /LiTS/Vnet/model_vnet3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/Vnet/model_vnet3d.py -------------------------------------------------------------------------------- /LiTS/Vnet/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/Vnet/util.py -------------------------------------------------------------------------------- /LiTS/data_input/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LiTS/data_input/dataset_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/data_input/dataset_input.py -------------------------------------------------------------------------------- /LiTS/data_input/puppy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/data_input/puppy.jpg -------------------------------------------------------------------------------- /LiTS/data_input/puppy_mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/data_input/puppy_mask.jpg -------------------------------------------------------------------------------- /LiTS/data_input/testimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/data_input/testimage.jpg -------------------------------------------------------------------------------- /LiTS/data_input/testmask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/data_input/testmask.jpg -------------------------------------------------------------------------------- /LiTS/data_input/trainX.csv: -------------------------------------------------------------------------------- 1 | ,filename 2 | 0,puppy.jpg 3 | -------------------------------------------------------------------------------- /LiTS/data_input/trainY.csv: -------------------------------------------------------------------------------- 1 | ,filename 2 | 0,puppy_mask.jpg 3 | -------------------------------------------------------------------------------- /LiTS/dataprocess/getPatchImageAndMask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/dataprocess/getPatchImageAndMask.py -------------------------------------------------------------------------------- /LiTS/dataprocess/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/dataprocess/preprocessing.py -------------------------------------------------------------------------------- /LiTS/dataprocess/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/dataprocess/utils.py -------------------------------------------------------------------------------- /LiTS/vnet3d_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/vnet3d_predict.py -------------------------------------------------------------------------------- /LiTS/vnet3d_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/vnet3d_train.py -------------------------------------------------------------------------------- /LiTS/vnet3d_train_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS/vnet3d_train_predict.py -------------------------------------------------------------------------------- /LiTS_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/LiTS_header.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/README.md -------------------------------------------------------------------------------- /diceloss.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/diceloss.PNG -------------------------------------------------------------------------------- /liverleadboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/liverleadboard.PNG -------------------------------------------------------------------------------- /livertop30.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/livertop30.PNG -------------------------------------------------------------------------------- /tumortop34.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junqiangchen/LiTS---Liver-Tumor-Segmentation-Challenge/HEAD/tumortop34.PNG --------------------------------------------------------------------------------