Label sets

Label sets

Create new label set in a dataset

URL

POST https://tools.deepen.ai/api/v2/datasets/{datasetId}/label_sets

Request

Path parameters

Request body

Example body

{
 "labelSetId": "Golden labelset",
}

Response

Returns an empty response on successful completion.

Get all label sets in a dataset

URL

GET https://tools.deepen.ai/api/v2/datasets/{datasetId}/label_sets

Request

Path parameters

Response

Returns a json object ‘additional_label_sets_config’ which contains all the label set ids.

Delete a label set in a dataset

URL

DELETE https://tools.deepen.ai/api/v2/datasets/{datasetId}/label_sets

Request

Path parameters

Request body

Example body

Response

Returns an empty response on successful completion.

Copy labels between label sets

URL

POST https://tools.deepen.ai/api/v2/datasets/{datasetId}/copy_labels

Request

Path parameters

Request body

Example body

Response

Returns an empty response on successful completion.

Compare labels between label sets

This returns a comparison of labels count only for the 3D bounding box.

URL

GET https://tools.deepen.ai/api/v2/datasets/{datasetId}/compare_label_sets

Request

Path parameters

Request body

Example body

Response

Returns a json object “compared_dict” which contains the comparison result of the two label sets.

Embedded Viewer

URL

GET https://tools.deepen.ai/api/v2/datasets/{datasetId}/embedded_viewers

Request

Path parameters

Response

Returns a json EmbeddedViewerDataResource object.

URL

POST https://tools.deepen.ai/api/v2/datasets/{datasetId}/embedded_viewers

Request

Path parameters

Request body

{

“enable_camera_view”: true,

“launching_frame_index”: 1,

“title”:”test123”

}

Response

Returns an empty json object on successful creation of embedded url.

URL

GET https://tools.deepen.ai/api/v2/embedded_viewers/{embeddedViewerid}

Request

Path parameters

Response

Returns a json EmbeddedViewerDataResource object.

URL

DELETE https://tools.deepen.ai/api/v2/embedded_viewers/{embeddedViewerid}

Request

Path parameters

Response

Returns an empty json on the deletion of EmbeddedViewerDataResource object.

Last updated