labelme生成的json格式
时间: 2023-11-11 12:18:55 浏览: 131
{
"version": "4.5.9",
"flags": {},
"shapes": [
{
"label": "person",
"points": [
[
10,
20
],
[
30,
40
],
[
50,
60
]
],
"group_id": null,
"shape_type": "polygon",
"flags": {}
},
{
"label": "car",
"points": [
[
100,
200
],
[
300,
400
]
],
"group_id": null,
"shape_type": "rectangle",
"flags": {}
}
],
"imagePath": "example.jpg",
"imageData": null,
"imageHeight": 480,
"imageWidth": 640
}
上面是一个示例JSON格式,其中包含两个形状(一个多边形和一个矩形),分别标记为“人”和“汽车”。这个JSON格式包括以下字段:
- version:标注工具的版本号
- flags:标注工具的标志(如果有的话)
- shapes:形状的列表,每个形状都包括标签、坐标点、组ID、形状类型和标志
- imagePath:图像路径
- imageData:图像数据(如果有的话)
- imageHeight:图像高度
- imageWidth:图像宽度
这是一种常用的JSON格式,用于描述图像中的目标。
阅读全文