Skip to main content

View an uploaded scene

Once a scene has been created, and we have processed it, it is possible to view it in the annotation tool (without annotation capabilities).

Every scene has a view link that allows it to be viewed in the annotation tool, without any annotation capabilities. You can find the scene again either in the Kognic Platform or via the Python client:

Use the get_scenes_by_uuids method to get the scene object, and then access its view_link attribute, which is populated once the scene is ready.

scene = client.scene.get_scenes_by_uuids([scene_uuid])[0]
print(f"View the scene at {scene.view_link}")

Check calibration of 3D scenes

3D scenes (those with LiDAR/RADAR) require a calibration, which can be checked for accuracy when viewing the scene. Start by opening the scene view link as described above.

In the 2D view you can overlay the projected pointcloud onto the camera images.

  • Click on the "2D" button at the top left of the scene view
  • Open the "View" menu, then "Pointcloud overlay" and then "Depth"
  • Compare the overlaid points with the features of the image.
Calibrations are immutable

If you detect a calibration error this way, it is necessary to recreate the scene with a corrected calibration. It is therefore a good idea to check a few scenes before uploading a large dataset that all use the same calibration.