BasicAI CE Open & Plugin API
  1. Model
BasicAI CE Open & Plugin API
  • 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
      • Get data and result information
      • Download dataset annotation results
    • Model
      • Image object detection
        POST
      • Point cloud object detection
        POST
  • Plugin API
    • Model
      • Point cloud object detection
      • Image object detection
  1. Model

Image object detection

Docker Compose
http://localhost:8190/api
Docker Compose
http://localhost:8190/api
POST
http://localhost:8190/api
/model/image/recognition

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "dataId": 0,
    "minConfidence": 0,
    "maxConfidence": 0,
    "classes": [
        "string"
    ]
}

Request Code 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/image/recognition' \
--header 'Content-Type: application/json' \
--data-raw '{
    "dataId": 0,
    "minConfidence": 0,
    "maxConfidence": 0,
    "classes": [
        "string"
    ]
}'

Responses

🟢200Successful
application/json
Body

Example
{}
Modified at 2023-01-04 10:37:26
Previous
Download dataset annotation results
Next
Point cloud object detection
Built with