🪄Model Integration Guide

Xtreme1 Point Cloud Object Detection Model Integration Guide

Model Service Interface

Request

POST

http://ip:port/pointCloud/recognition

Parameters

{
 # A request can contain multiple pieces of data
     "datas": [
     # Each frame of data contains one point cloud file
 {
     "id": 1, # UUID
     "pointCloudUrl": "https://path/to/000001.pcd", # url of the point cloud file
     "imageUrls": 
     [
         "https://path/to/image0/000001.jpg",
         ...
     ],
         "cameraConfigUrl": "https://path/to/camera_config/000001.json"
         }
     ]
}

Responses

Development Services

Point Cloud Object Detection Service

Write a service script

An example: pcdet_demo_service.py

Integration Services

Start Service

Testing Service

Note: replace <ip> and <port>

Integration Services

  • Log into Xtreme1 platform;

  • Enter Models/Create My Model, select Data Type as Lidar, and click the Save button to create the model;

  • Click the newly created model to enter the details page, and click Settings in the panel;

Click the Edit button in the upper right corner
  • Fill in the service address in the URL edit box:

http://<ip>:<port>pointCloud/recognition

Note: You need to ensure that the machine where the Xtreme1 service is deployed can access this address.

  • Click the Test Connection button, if successful, it will return the correct response.

Last updated

Was this helpful?