Importing Data in the 3D Multi-Sensor Fusion Labeling Tool
The Point Cloud (LiDAR) labeling tool is currently in the alpha testing phase and not yet available to be used in production. Thank you for your patience.
To import assets into the Ango Hub 3D multi-sensor fusion (3DMSF) tool , you will need to prepare a folder for each asset you wish to import. This folder must adhere to the format outlined on this page and must be located in cloud storage.
You will then place the link to that folder in a JSON you will upload onto the Ango Hub platform, either by dragging and dropping it from the UI, or from the SDK.
JSON Format
Here is a sample JSON used to import one 3DMSFT asset:
The only difference from a standard import JSON is the fact that you must add the editorType
property and set it to pct
, and that the data URL is to a folder rather than a single file.
Folder Format
LiDAR Data (Required)
LiDAR data in the .las format must be placed in a subfolder named lidar
. In the following example, and from now on for the rest of this section, we will create an example folder for an asset with two frames.
The 3DMST only supports point cloud (Radar, LiDAR) files in the .las format.
Image Data
You can add corresponding image data, in either the .jpg or .png format.
With the exception of the file extension, the images must have the same filename as their corresponding .las file.
Please place your image files in subfolders with the follow names:
Calibration Data
If calibration data is available, you may provide it in two ways:
When calibration information is the same for all frames
Create a subfolder named calibration
and within it, add calibration information in a file named calibration.json
:
When calibration information is different for each frame
Create a subdolder called calibration
and provide calibration .json data using the same filenames as their respective .las files:
Calibration Data Format
The following is a sample calibration .json file in the format accepted by the 3DMST:
Ego Vehicle Data
If present, you may include velocity data about the ego vehicle. This will enable the 3DMST "Merge Point Cloud" functionality, allowing you to see all frames at once.
Ego vehicle data must be placed in a .json file in a subfolder named ego_data
. Each file must have the same filename as the related .las file.
Ego Vehicle Data Format
The following is a sample ego vehicle data .json file in the format accepted by the 3DMST:
And the following is an explanation of each field in the ego vehicle .json file to provide:
A folder with all optional data included would therefore look like the following:
Last updated