Skip to content

Commit

Permalink
Add example of semantic_segmentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Mar 29, 2018
1 parent a8c1292 commit 43c442d
Show file tree
Hide file tree
Showing 20 changed files with 1,454 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions examples/semantic_segmentation/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Semantic Segmentation Example

## Annotation

```bash
labelme data_annotated --labels="$(tr '\n' , < labels.txt)" --nodata
```

![](.readme/annotation.jpg)


## Convert to VOC-like Dataset

```bash
# It generates:
# - data_dataset_voc/JPEGImages
# - data_dataset_voc/SegmentationClass
# - data_dataset_voc/SegmentationClassVisualization
./labelme2voc.py labels.txt data_annotated data_dataset_voc
```

<img src="data_dataset/JPEGImages/2011_000003.jpg" width="33%" /> <img src="data_dataset/SegmentationClass/2011_000003.png" width="33%" /> <img src="data_dataset/SegmentationClassVisualization/2011_000003.jpg" width="33%" />

Fig 1. JPEG image (left), PNG label (center), JPEG label visualization (right)
*Note that the reason why the label file is mostly black is it contains only very low label values (ex. `-1, 0, 4, 14`).*
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 43c442d

Please sign in to comment.