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

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标注图像分割(语义分割)样本_第1张图片

将所有图片标注完毕,退出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标注图像分割(语义分割)样本_第2张图片

你可能感兴趣的:(labelme标注图像分割(语义分割)样本)