Main Content

AutomotiveLidarBoxes

Sensor specification for vehicle-mounted lidar that reports point cloud clustered in 3-D bounding boxes

Since R2024b

    Description

    An AutomotiveLidarBoxes object contains a sensor specification for a vehicle-mounted lidar that reports point cloud clusters in 3-D bounding boxes. You can use the AutomotiveLidarBoxes object as an input to multiSensorTargetTracker.

    Creation

    To create an AutomotiveLidarBoxes object, use the trackerSensorSpec function with the "automotive", "lidar", and "bounding-boxes" input arguments. For example:

    spec = trackerSensorSpec("automotive","lidar","bounding-boxes")

    Properties

    expand all

    Reference coordinate frame, specified as "ego" or "global".

    When you specify this property as

    "ego" — The origin of the coordinate system is fixed to an ego vehicle, and the position and orientation of the target are modeled with respect to this ego vehicle. To account for a moving ego vehicle, ego motion compensation is used. This ego motion information must be provided as the last input to the tracker. See the More About section and dataFormat function for more information.

    "global" — The origin of the coordinate system is fixed to a stationary global reference frame, and the position and orientation of the target is modeled with respect to this stationary frame. See the More About section and dataFormat function for more information on how to provide ego pose.

    Tip

    Choose "global" reference frame if either of the following is true.

    • All sensors are mounted on the same ego vehicle, and you know the position and orientation of that ego vehicle in some global reference frame. Additionally, you want the tracks described in that same global reference frame.

    • Sensors are mounted on different ego vehicles, which can be either stationary or moving.

    You may need to change the YawLimits property of your target specification to account for the yaw of the vehicle in global reference frame. For example,

    targetSpec.YawLimits = egoYaw + [-10 10];

    Note

    You must use the same ReferenceFrame on each target specification and sensor specification to initialize a tracker.

    Example: "global"

    Data Types: char | string

    Maximum number of the measurements the sensor can detect in one scan, specified as a positive integer.

    Example: 20

    Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

    Sensor location on the ego vehicle, specified as a 1-by-3 real-valued vector of form [xm ym zm]. This property defines the coordinates of the sensor with respect to the ego vehicle origin. The default value specifies that the sensor origin is at the origin of its ego vehicle. Units are in meters.

    Example: [1.25 -0.1 0.8]

    Data Types: single | double

    Orientation of the sensor with respect to the ego vehicle, specified as a 1-by-3 real-valued vector of form [zyaw ypitch xroll]. Each element of the vector corresponds to an intrinsic Euler angle rotation that carries the body axes of the ego vehicle to the sensor axes. The three elements describe the rotations around the z-, y-, and x-axis sequentially. Units are in degrees.

    Data Types: single | double

    Azimuth limits of lidar coverage, specified as a 1-by-2 real-valued vector. Units are in degrees.

    Example: [-90 90]

    Data Types: single | double

    Elevation limits of lidar coverage, specified as a 1-by-2 real-valued vector. Units are in degrees.

    Example: [-30 30]

    Data Types: single | double

    Maximum detection range of the sensor, specified as a positive scalar. The sensor does not detect targets that are outside this range. Units are in meters.

    Example: 110

    Data Types: single | double

    Standard deviation of measurement errors in bounding box center reported by the detector, specified as a positive scalar. Units are in meters.

    Example: 2

    Data Types: single | double

    Standard deviation of the measurement errors in the bounding box height reported by the detector, specified as a positive scalar. Units are in meters.

    Example: 2

    Data Types: single | double

    Standard deviation of the measurement errors in the bounding box orientation reported by the detector, specified as a positive scalar. Units are in degrees.

    Example: 2

    Data Types: single | double

    Probability of detecting a target inside the coverage limits, specified as a scalar in the range (0, 1].

    Example: 0.75

    Data Types: single | double

    Expected number of new targets entering the sensor's field of view per scan, specified as a positive scalar.

    Example: 3.5

    Data Types: single | double

    Average number of false positives per scan, specified as a positive scalar.

    Example: 3.5

    Data Types: single | double

    Object Functions

    dataFormatStructure for data format required by task-oriented tracker

    More About

    expand all

    Version History

    Introduced in R2024b