Authorization: Bearer ********************
{
"dataId": 0,
"minConfidence": 0,
"maxConfidence": 0,
"classes": [
"string"
]
}
curl --location --request POST 'http://localhost:8190/api/model/pointCloud/recognition' \
--header 'Content-Type: application/json' \
--data-raw '{
"dataId": 0,
"minConfidence": 0,
"maxConfidence": 0,
"classes": [
"string"
]
}'
{
"code": "string",
"message": "string",
"data": {
"modelCode": "string",
"modelDataResults": [
{
"dataId": 0,
"modelResult": {
"code": 0,
"dataId": 0,
"message": "string",
"objects": [
{
"size3D": {
"x": 0,
"y": 0,
"z": 0
},
"objType": "string",
"center3D": {
"x": 0,
"y": 0,
"z": 0
},
"confidence": 0,
"modelClass": "string",
"rotation3D": {
"x": 0,
"y": 0,
"z": 0
}
}
]
}
}
]
}
}