Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ykamikawa/tf-keras-SegNet
SegNet including indices pooling for Semantic Segmentation with tensorflow and keras
https://github.com/ykamikawa/tf-keras-SegNet
Last synced: 3 months ago
JSON representation
SegNet including indices pooling for Semantic Segmentation with tensorflow and keras
- Host: GitHub
- URL: https://github.com/ykamikawa/tf-keras-SegNet
- Owner: ykamikawa
- Created: 2017-10-26T02:11:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T14:55:43.000Z (over 4 years ago)
- Last Synced: 2024-05-19T23:36:36.282Z (6 months ago)
- Language: Python
- Homepage:
- Size: 428 KB
- Stars: 178
- Watchers: 8
- Forks: 81
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SegNet
SegNet is a model of semantic segmentation based on Fully Comvolutional Network.
This repository contains the implementation of learning and testing in keras and tensorflow.
Also included is a custom layer implementation of index pooling, a new property of segnet.## architecture
- encoder decoder architecture
- fully convolutional network
- indices pooling![indicespooling](https://user-images.githubusercontent.com/27678705/33704612-81053eec-db70-11e7-9822-01dd48d68314.png)
## description
This repository is SegNet architecture for Semantic Segmentation.
The repository of other people's segmentation, pooling with indices not implemented.But In this repository we implemented pooling layer and unpooling layer with indices at MyLayers.py.Segnet architecture is early Semantic Segmentation model,so acccuracy is low but fast.
In the future, we plan to implement models with high accuracy.(UNet,PSPNet,Pix2Pix ect..)## Usage
### train
`python SegNet.py [--options your dataset]`