- Open API
- Dataset
- Create Dataset
- Edit Dataset
- Delete Dataset
- Query a single dataset
- Query the list of datasets
- Upload the dataset compressed package
- Query the processing progress of the compressed dataset
- Query the data under the dataset
- Delete multiple data
- Query a single data
- Query multiple data
- Generate presigned file upload url
- Upload file through presigned url
- Annotation
- Model
- Plugin API
Point cloud object detection
Docker Compose
Docker Compose
POST
http://localhost:8190/api/model/pointCloud/recognition
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
dataId
integer
The data ID that needs to be predicted.
minConfidence
number
Min confidence
maxConfidence
number
Max confidence
classes
array[string]
Class list
Example
{
"dataId": 0,
"minConfidence": 0,
"maxConfidence": 0,
"classes": [
"string"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8190/api/model/pointCloud/recognition' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Successful
application/json
Body
code
string
Unicode
message
string
Unified message
data
object
Response data
modelCode
string
Model code
modelDataResults
array [object {2}]
Model result
Example
{
"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
}
}
]
}
}
]
}
}
Modified at 2023-03-09 06:10:19