项目作者: devbruce

项目描述 :
ISBI2012 Segmentation with U-Net using PyTorch
高级语言: Python
项目地址: git://github.com/devbruce/Segmentation-UNet-PyTorch.git
创建时间: 2020-05-04T01:43:23Z
项目社区:https://github.com/devbruce/Segmentation-UNet-PyTorch

开源协议:

下载


ISBI2012 Segmentation with PyTorch


Basic Info

Dataset

ISBI2012: http://brainiac2.mit.edu/isbi_challenge



Backbone Network

U-Net: Convolutional Networks for Biomedical Image Segmentation \<arxiv link>

  1. @misc{ronneberger2015unet,
  2. title={U-Net: Convolutional Networks for Biomedical Image Segmentation},
  3. author={Olaf Ronneberger and Philipp Fischer and Thomas Brox},
  4. year={2015},
  5. eprint={1505.04597},
  6. archivePrefix={arXiv},
  7. primaryClass={cs.CV}
  8. }



Data Preprocessing

  1. # ROOT Directory
  2. ISBI2012
  3. ├── train-volume.tif
  4. ├── train-labels.tif
  5. └── test-volume.tif --> (Not Necessary)


Train

  1. $ python train.py


Test

  1. $ python eval.py

Then, you can see result images from ./test_results



Reference