Skip to main content

A unified interface to various 3D driving datasets

Project description

Introduction

Waymo sample

Tri3D facilitates the utilization of 3D driving datasets by providing:

  • A common coordinate and data encoding convention.
  • A common API to read data form various datasets.
  • Fast non-sequential access to any sensor sample at any frame index.
  • A convenient access to geometric transformations between sensors and timestamps.
  • Plotting utilities.

As of now, Tri3D supports the following datasets:

Conventions

The following conventions are adopted across all datasets :

  • An object position designates the center of its bounding box.
  • In the local coordinate system of an object, the x axis points forward, y leftward, and z updward.
  • Length, width and height are the dimensions of the object along x, y and z axes respectively.
  • In camera sensor coordinates, x points rightward, y points downward, z point forward.
  • In image coordinates, x is the pixel column index starting from the left, y is the pixel row index starting from the top, z is the depth in meters along the optical axis.
  • In lidar coordinates, x points in the same direction as the ego car, y points leftward, z points upward.

The differences with raw dataset conventions are documented in each datasets class.

Coordinates convention

Tri3D accounts for timestamps, delays and the movement of the ego car which carries the sensors. For examples, if the boxes of a given dataset are annotated at the timestamps of the LiDAR, retrieving the boxes relative to a camera sensor (ex: boxes(seq=0, frame=5, sensor="cam")) will interpolate the box trajectories at the timestamp of frame 5 for the camera, and it will also return the object poses relatively to the position of that camera at this timestamp.

Sensor timelines and track interpolation

Dataset API

All datasets implement a common interface which provides access to data samples such as:

  • Sensor frames.
  • Acquisition timestamps.
  • Sensor poses.
  • Camera images.
  • Lidar point clouds.
  • 3D box annotations.

Moreover, a powerful .alignment() function can compute the geometric transformation between any pair of frame and sensors coordinates. The tutorial notebook goes through most of these functions.

Tri3D datasets are somewhat low-level, ie. they do not enforce the notion of sweep or keyframe where a sample of each sensor around a timestamp is assembled in a tuple. Instead, datasets expose all available samples of each sensor indexed by a per-sensor frame index. Notably, some sensors may work at a higher frequency and contain more samples than others for a given recording.

When available, keyframes and timestamps are exposed so that coherent tuples of samples can be rebuilt easily. Moreover, geometric transformations and pose interpolation functions are provided to facilitate the creation of new keyframes.

Geometric transformations

Tri3D provides a small library which facilitates the creation and manipulation of typical 3D geometric transformations: translation, rotation, affine, camera projections.

Transformations have a shared interface which supports:

  • Batching: list of transformations can be grouped together, and broadcasting rules are supported.
  • Application to 3D points: applying the transformations to points, again, boadcasting rules are implemented.
  • Composition: it is possible to chain transformation together.
  • Inversion: the inverse of a transformation is readily available.

Object and sensor poses

In Tri3D, the position and orientation of objects (or sensors) in a coordinate system are stored as geometric transformation. For instance, the pose of a camera in a lidar coordinate system is formulated as the composition of the camera rotation and translation relative to the lidar. Coincidently, this is also the geometric transformation which takes points in the camera coordinate system and returns them in the lidar coordinate system.

For sensors, the sensor poses are accessible via the .poses() method. For object annotations, it is provided by the Box.transform attribute.

For example, if we have the pose of a box in lidar coordinates and the pose of the lidar in camera coordinates, then the position of a point 10 meters in front of that box is given by:

seq = 0
frame = 4

# retrieve poses
box = dataset.boxes(seq, frame, coords="lidar")[0]
box2lidar = box.transform
lidar2cam = dataset.poses(seq, sensor="camera", coords="lidar")[frame]

# compute the position of a point 10m in front of the box, in camera coordinates.
xyz = (lidar2cam @ box2lidar).apply([10., 0, 0])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tri3d-0.2.1.tar.gz (672.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tri3d-0.2.1-py3-none-any.whl (49.0 kB view details)

Uploaded Python 3

File details

Details for the file tri3d-0.2.1.tar.gz.

File metadata

  • Download URL: tri3d-0.2.1.tar.gz
  • Upload date:
  • Size: 672.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.8

File hashes

Hashes for tri3d-0.2.1.tar.gz
Algorithm Hash digest
SHA256 82dd8ee2bdad9fc0cc6293077aafb77e5ff4d81f133ba068d8f625cd99e82a88
MD5 ed77c97346c4ea79f9f269fab8007004
BLAKE2b-256 ee5b7b3d4e81574c524f19081f1f57e1486501cd007e640aa0c863a82eff3b79

See more details on using hashes here.

File details

Details for the file tri3d-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: tri3d-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 49.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.8

File hashes

Hashes for tri3d-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 be2cab8fd77a6b1bdeaf9e29d339d577a9c6526d03128a811be791e3ce2f4670
MD5 10513b55c8f042365cc5e5dd9ab530fb
BLAKE2b-256 7563238393e21e5af57b1a04b7b843304f37d925a6207a09b1d75fd72a8a8867

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page