Cityscapes是一個廣泛使用的計算機視覺數(shù)據(jù)集,由清華大學(xué)等機構(gòu)合作開發(fā)。其json格式數(shù)據(jù)集中包含了很多有用的信息,可以幫助對城市場景進行分析和處理。
{ "imgHeight": 1024, "imgWidth": 2048, "objects": [ { "bbox": [837, 737, 1072, 907], "label": "car", "attributes": { "occluded": false, "truncated": false, "trafficLightColor": "none" } }, { "bbox": [1040, 727, 1192, 976], "label": "person", "attributes": { "occluded": false, "truncated": true, "wearHat": true } }, ], "scenes": [ { "weather": "sunny", "timeOfDay": "day", "sceneType": "city street" } ] }
在上述示例中,有兩個對象,一個是車輛,另一個是行人。每個對象都有一個邊界框(bounding box),它定義了對象在圖像中的位置和大小,并用"bbox"字段存儲。同時還有一個"label"字段,它說明了對象所屬的類別。對象還可以有一些屬性,如遮擋("occluded")、截斷("truncated")和交通信號燈的顏色("trafficLightColor")。這些屬性可以幫助我們更好地理解和處理對象。
此外,在json數(shù)據(jù)集中還有一些"scenes"字段,這些字段描述了整個場景,如天氣、時間和場景類型等等。這些信息有助于我們理解城市場景,并更好地將其與其他場景區(qū)分開來。