欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

labelme标注图像分割(语义分割)样本

程序员文章站 2022-05-30 13:25:17
...

1、下载:pip install labelme

2、将需要标注的图像存入images目录,cd到images目录的父目录

3、新建labels.txt文件,ansi编码,其中录入类别

__ignore__
_background_
aeroplane
bicycle
bird
boat
bottle
bus
car
cat
chair
cow
diningtable
dog
horse
motorbike
person
potted plant
sheep
sofa
train
tv/monitor

4、命令行启动labelme

labelme images --labels labels.txt --nodata

labelme标注图像分割(语义分割)样本

将所有图片标注完毕,退出labelme

5、下载批量转换py代码

进入https://github.com/wkentaro/labelme/tree/master/examples/semantic_segmentation页面,下载labelme2voc.py

6、转换

python.exe ./labelme2voc.py images data_dataset_voc --labels ./labels.txt

转换后效果如下图:

labelme标注图像分割(语义分割)样本