色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

darklabel導出json

錢淋西1年前8瀏覽0評論

Darklabel是一個數據標注平臺,提供了許多方便的功能來幫助用戶快速、準確地標注數據。其中一個非常重要的功能就是導出已標注數據為JSON格式。該功能在數據處理和機器學習任務中非常有用。

要導出JSON,首先需要將標注好的數據保存為一個項目。在Darklabel中,項目就是對數據集的一個分類,可以保存多個圖片和標注信息。在項目中選中需要導出的標注信息,然后點擊“導出”按鈕,就可以選擇JSON格式進行導出。

{
"101.jpg": {
"labels": [
{
"name": "狗",
"color": "#FF0000"
},
{
"name": "人",
"color": "#0000FF"
}
],
"regions": [
{
"shape_attributes": {
"name": "polygon",
"all_points_x": [0, 100, 150, 50],
"all_points_y": [0, 0, 100, 100]
},
"region_attributes": {
"label": "狗"
}
},
{
"shape_attributes": {
"name": "rect",
"x": 150,
"y": 50,
"width": 100,
"height": 150
},
"region_attributes": {
"label": "人"
}
}
]
},
"102.jpg": {
"labels": [
{
"name": "貓",
"color": "#FF00FF"
}
],
"regions": [
{
"shape_attributes": {
"name": "circle",
"cx": 100,
"cy": 100,
"r": 50
},
"region_attributes": {
"label": "貓"
}
}
]
}
}

上面的JSON示例展示了兩張圖片的標注信息,包括標注的標簽和標注的區域。在實際應用中,需要根據具體的需求調整JSON格式和字段。