🪄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
Integration Services
Log into Xtreme1 platform;
Enter
Models/Create My Model, selectData TypeasLidar, and click theSavebutton to create the model;Click the newly created model to enter the details page, and click
Settingsin the panel;

Edit button in the upper right cornerFill in the service address in the URL edit box:
http://<ip>:<port>pointCloud/recognition
Click the
Test Connectionbutton, if successful, it will return the correct response.
Last updated
Was this helpful?