The DriveWorks SDK defines multiple coordinate systems, given by dwCoordinateSystem
. The following sections describe the conventions for each coordinate system.
Vehicle coordinate systems are used to determine vehicle parameters, sensor placement and pose of objects in the environment relative to the vehicle. Coordinate systems for a set of rigid bodies of a vehicle are described below.
The Base Vehicle Coordinate System is the coordinate system attached to the primary vehicle body supported by suspension. The axis system is fixed in the body such that, in nominal resting condition on horizontal ground, the X axis is horizontal, parallel to the vehicle's longitudinal plane of symmetry and pointing forwards. The Y axis is horizontal, perpendicular to the X axis and pointing to the left, and the Z axis is vertical, perpendicular to both X and Y and pointing upwards. The origin is fixed in the body and chosen as the mid-point of the (virtual) rear-axle, projected onto ground. See ISO8855:2011(2.10, 2.12).
Currently, the Base Vehicle Coordinate System is the one that dwRig relies on to describe all sensor positions. Future extensions will allow placement of sensors relative to other vehicle bodies.
Quantities like sensor rotations are often described as Euler angles (yaw, pitch, roll) relating the orientation of a given sensor to the Front-Left-Up (FLU) / base vehicle rig system.
There are many possible definitions of Euler angles; the definition used in Driveworks is as follows:
To rotate a point \(p_{sensor}\) in sensor reference frame to the \(rig\) reference frame equivalent \(p_{rig}\) using the Euler angles \((r,p,y)=(roll,pitch,yaw)\) defined in a rig file in nominalSensor2Rig_FLU
we use a rotation matrix defined as follows (where \(c_x\) is \(cos(x)\) and \(s_x\) is \(sin(x)\))
\[ \begin{align*} p_{rig} &= \bm{R}_z(yaw) \bm{R}_y(pitch) \bm{R}_x(roll)\: p_{sensor} \\ &= \begin{bmatrix} c_y & -s_y & 0\\ s_y & c_y & 0\\ 0 & 0 & 1 \end{bmatrix} \begin{bmatrix} c_p & 0 & s_p\\ 0 & 1 & 0\\ -s_p & 0 & c_p \end{bmatrix} \begin{bmatrix} 1 & 0 & 0\\ 0 & c_r & -s_r\\ 0 & s_r & c_r \end{bmatrix} p_{sensor} \\ &= \begin{bmatrix} c_y c_p & c_y s_p s_r - s_y c_r & c_y s_p c_r + s_y s_r \\ s_y c_p & s_y s_p s_r + c_y c_r & s_y s_p c_r - c_y s_r \\ -s_p & c_p s_r & c_p c_r \end{bmatrix} \begin{bmatrix} p_{x,sensor}\\ p_{y,sensor}\\ p_{z,sensor} \end{bmatrix} \end{align*} \]
the implementation of this functionality can be found in:
getRotationMatrix
in samples/framework/MathUtils.cpp
rotationFromRollPitchYaw
in dwshared/dwgeometry/dw/math/RollPitchYawUtils.hpp
This Euler angle convention is also known as Tait-Bryan angles. The following two examples provide useful common interpretations of these angles (all operations right-handed):
sensor
coordinate frame from rig
coordinate frame: (1) yaw coordinate system about rig $z$ axis, then (2) pitch about resulting $y'$ axis, then (3) roll about resulting $x''$ axis.sensor
coordinate to a rig
coordinate: (1) rotate the coordinate by roll
about fixed rig $x$ axis, (2) pitch about the fixed rig $y$ axis, (3) yaw about the fixed rig $z$ axis.The Vehicle Cabin Coordinate System is the coordinate system attached to the cabin body suspended above the primary vehicle body (see Base Vehicle Coordinate System). The axis system is fixed in the cabin body such that, in nominal resting condition, the X axis is horizontal, parallel to the cabin's longitudinal plane of symmetry and pointing forwards. The Y axis is horizontal, perpendicular to the X axis and pointing to the left, and the Z axis is vertical, perpendicular to both X and Y and pointing upwards. The cabin origin is fixed in the body and chosen such that it coincides with the origin of DW_COORDINATE_SYSTEM_VEHICLE_BASE in nominal resting conditions. See ISO8855:2011(2.18, 2.19).
The Vehicle Trailer Coordinate System is the coordinate system attached to each of the vehicle units towed by a leading vehicle. Axis systems and origins are defined by the same logic as applied for the Base Vehicle Coordinate System. See ISO8855:2011(3.2).
Various World Coordinate Systems are used depending on context and are described below.
The Roadplane Coordinate System is the coordinate system attached to the plane approximating the surface supporting the primary vehicle unit. The axis system is fixed in the plane such that X and Y are aligned with the projection onto the plane of axes X and Y of the primary vehicle unit (see Base Vehicle Coordinate System). The Z axis is perpendicular to the plane and pointing upwards. The road plane origin is chosen such that it coincides with the projection of the origin of the Base Vehicle Coordinate System onto the plane.
The Local Coordinate System is a coordinate system with origin at an arbitrary point in the world. The axis system is defined by the local vertical, local horizontal (LVLH) and is arbitrarily rotated relative to ENU. Origin and axis are typically defined by the vehicle position and heading at a particular point in time, e.g. at initialization.
The World Coordinate System is used for map/earth coordinates and is defined by the World Geodetic System 1984 (WGS84) and East-North-Up (ENU) axis conventions.
The origin is defined at an arbitrary point on the Earth surface. X, Y and Z axes are defined tangent to the plane at origin point such that (X, Y, Z) corresponds to (East, North, Up).
The NVIDIA® DriveWorks maps module provides helper functions to transform into local Cartesian coordinates.
The sensor coordinate system refers to the local coordinate system defined for each sensor. Conventions used in the SDK vary from sensor to sensor and are described below.
The Image Coordinate System describes the position of points in the image space, and the Camera Coordinate System describes the corresponding point in 3D space. The intrinsics of the camera are used to transform a point between the two coordinate systems.
The Image Coordinate System originates at the top-left of the image. The u- and v-axes, in pixel units, are aligned with the way pixels are stored in memory.
The Camera Coordinate System has its origin at the optical center of the camera. The x-axis points to the right of the image plane and the y-axis points to the bottom of the image plane. The z-axis points forward, along the optical axis. The x- and y-axes point in the same direction as the image u- and v-axes, respectively. The camera coordinate axes are in metric units.
DriveWorks IMU Coordinate Systems are dependent on the IMU manufacturer and model, see below. Associated GPS positions need to be provided as a 3D position vector expressed in IMU Coordinate System.
The Continental IMU Coordinate System is centered as in the figure below. The x-axis points in the direction opposite of the connector / plug. The z-axis points towards the top of the sensor. The y-axis is oriented such that it completes an orthogonal right-handed coordinate system.
The Novatel IMU Coordinate System is centered as in the figure below. The y-axis points in the direction opposite of the connector / plug. The z-axis points towards the top of the sensor. The x-axis is oriented such that it completes an orthogonal right-handed coordinate system.
The Xsens IMU Coordinate System is centered as in the figure below. The x-axis points in the direction opposite of the connector / plug. The z-axis points towards the top of the sensor. The y-axis is oriented such that it completes an orthogonal right-handed coordinate system.
DriveWorks LIDAR Coordinate Systems are dependent on the LIDAR manufacturer and model.
The HESAI Lidar Coordinate System is centered at the geometric center of the sensor's receptor. The x-axis points in the direction opposite of the connector / plug. The z-axis is collinear with the sensor's spinning axis, pointing in direction of the top of the sensor. The y-axis is oriented such that it completes an orthogonal right-handed coordinate system.
The Velodyne Lidar Coordinate System is centered at the geometric center of the sensor's receptor. The y-axis points in the direction of the connector / plug. The z-axis is collinear with the sensor's spinning axis, pointing in direction of the top of the sensor. The x-axis is oriented such that it completes an orthogonal right-handed coordinate system.
The Radar Coordinate System is centered at the geometric center of the radar's receptor. The x-axis points in sensing direction. The y-axis points in the direction of the connector / plug and the z-axis is oriented such that it completes an orthogonal right-handed coordinate system.
The Custom Coordinate System represents any arbitrary coordinate system that the developer wants to use. It is the developer's responsibility to keep other users informed of the relations between this coordinate system and any of the DriveWorks-defined coordinate systems.