Download Given DatasetIds labels

Download labels of datasetIds

URL

POST https://tools.deepen.ai/api/v2/clients/{clientId}/labels_of_dataset_ids?labelSetId=default

Request

Path parameters

Parameter name

Parameter type

Description

clientId

string

Client Id of the dataset

Request body

Property name

Property type

Description

dataset_ids

list

List of dataset Ids of the particular client for which labels needed to be downloaded.

Example body

{ "dataset_ids": ['dataset_id1', 'dataset_id2', 'dataset_id3'] }

Response

Returns a json with field ‘labels’ that represents an array of all the labels in given datasetIds.

Example

all_labels: [{'file_id': '20190412_092019_002Img1_338613.pcd', 'label_category_id': 'car', 'label_id': 'car:4', 'label_type': '3d_bbox', 'stage_id': 'QA', 'create_time_millis': 1589965718592, 'label_set_id': 'default', 'labeller_email': 'vishal@deepen.ai', 'sensor_id': 'lidar', 'three_d_bbox': {'cx': 4.664568330379911, 'cy': 6.061948311705668, 'cz': 1.0518338639631983, 'h': 2.25, 'l': 2.25, 'w': 2.25, 'rot_z': 0}, 'update_time_millis': 1589965718592, 'version': 1}]

Last updated