Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 860 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 860 Bytes

U-Net for RGB Semantic Segmentation

Introduction

More details of U-Net architecture can be found on U-Net: Convolutional Networks for Biomedical Image Segmentation. The code was derived from UNet with additional supprt for RGB images.

Dependencies

The following dependencies are needed:

  • Numpy
  • Tensorflow-gpu
  • Keras
  • Scikit-image

Usage

  1. Install dependencies:
conda env create -f env.yml
  1. Configure paths and parameters with config.py
  2. Train the model with train.py
  3. Test the trained model with test.py

Results