Importing Data in the 3D Multi-Sensor Fusion Labeling Tool
3DMSFT Data must be in a bucket you have connected to Ango Hub through storage integrations, and Ango Hub must have read and write permissions to the bucket.
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 a cloud storage bucket you have previously connected to Ango Hub using storage integrations.
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, or from Ango Hub's File Explorer.
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:
Importing PCT data using the File Explorer
From your project, click on Add Data, then enter the File Explorer tab. Navigate to the folder containing your PCT sub-folders and data. Click on it to select it. Enable the PCT Upload toggle, then click on Upload. Your folder will be imported as PCT data.
Last updated