GET http://{{host}}/v1/dataset/{{dataset_id}}/metakeys?sensor=camera_0
Content-Type: application/json
T-key: {{T-key}}
Response:
{
"code": "",
"msg": "",
"data": {
"items": {
"k": 8,
"k1": 7
}
}
}
GET http://{{host}}/v1/dataset/{{dataset_id}}/metakeystat/{key_name}?sensor=camera_0
Content-Type: application/json
T-key: {{T-key}}
Response:
{
"code": "",
"msg": "",
"data": {
"items": [
{
"value": "v",
"count": 8
}
]
}
}
GET http://{{host}}/v1/dataset/{{dataset_id}}/labels
Content-Type: application/json
T-key: {{T-key}}
Response:
{
"code": "",
"msg": "",
"data": {
"items": [
{
"label": "car",
"count": "1"
},
{
"label": "person",
"count": "1"
}
]
}
}