labelme 多标签分类标签数据示例
时间: 2023-02-18 16:43:33 浏览: 193
将labelme格式数据转化为标准的coco数据集格式方式
5星 · 资源好评率100%
Labelme 是一个图像标注工具,它支持多标签分类。在标签数据中,每个标签都有一个唯一的名称和一个多边形的顶点坐标。例如:
```
{
"version": "4.5.6",
"flags": {},
"shapes": [
{
"label": "dog",
"points": [[10, 20], [30, 40], [50, 60]],
"group_id": null,
"shape_type": "polygon",
"flags": {}
},
{
"label": "cat",
"points": [[40, 50], [60, 70], [80, 90]],
"group_id": null,
"shape_type": "polygon",
"flags": {}
},
{
"label": "house",
"points": [[15, 25], [35, 45], [55, 65]],
"group_id": null,
"shape_type": "polygon",
"flags": {}
}
],
"imagePath": "image.jpg",
"imageData": null,
"imageHeight": 600,
"imageWidth": 800
}
```
上面这个例子中,图片中有三个标签:狗、猫和房子,每个标签都有多边形顶点坐标。
阅读全文