recordedSensorData
Syntax
Description
Create GPSData
Object
creates a gpsData
= recordedSensorData("gps"
,timestamps
,latitude
,longitude
,altitude
)GPSData
object, gpsData
, with the Timestamps
,
Latitude
, Longitude
, and
Altitude
properties set by the timestamps
,
latitude
, longitude
, and
altitude
arguments, respectively. Additionally, this syntax sets
the SampleRate
, SampleTime
,
Duration
, and NumSamples
properties.
Create Trajectory
Object
creates an empty trajectory
= recordedSensorData("trajectory"
)Trajectory
object, trajectory
.
creates a trajectory
= recordedSensorData("trajectory"
,timestamps
,x
,y
,z
)Trajectory
object, trajectory
, using the specified timestamps
timestamps
and the xyz-coordinates of the
corresponding waypoints. x
, y
, and
z
specify the first, second, and third columns of the
Position
property, respectively.
creates a trajectory object, trajectory
= recordedSensorData("trajectory"
,timestamps
,waypoints
)trajectory
, using the specified timestamps
timestamps
and the corresponding waypoints
waypoints
. The waypoints
argument specifies
the Position
property.
Create CameraData
Object
creates an empty camData
= recordedSensorData("camera"
)CameraData
object, camData
.
creates a camData
= recordedSensorData("camera"
,timestamps
,frames
)CameraData
object, camData
, with the Timestamps
and
Frames
properties set by the timestamps
and
frames
arguments, respectively. Additionally, this syntax sets the
SampleRate
, SampleTime
,
Duration
, and NumSamples
properties.
creates a camData
= recordedSensorData("camera"
,video
)CameraData
object, camData
, containing image data extracted from the specified
video video
.
Create LidarData
Object
creates a lidarData
= recordedSensorData("lidar"
,timestamps
,pointClouds
)LidarData
object, lidarData
, with the Timestamps
and
PointClouds
properties set by the timestamps
and pointClouds
arguments, respectively. Additionally, this syntax
sets the SampleRate
, SampleTime
,
Duration
, and NumSamples
properties.
Specify Property Values
___ = recordedSensorData(___,
sets properties of the output sensor data object, in addition to any combination of
arguments from previous syntaxes. varargin
)varargin
represents a
variable-length name-value argument list for the corresponding sensor data object. For
example, Name="sensor1"
specifies the Name
property of the output sensor as "sensor1"
.
Note
This function requires the Scenario Builder for Automated Driving Toolbox™ support package. You can install the Scenario Builder for Automated Driving Toolbox support package from the Add-On Explorer. For more information about installing add-ons, see Get and Manage Add-Ons.
Examples
Input Arguments
Output Arguments
Version History
Introduced in R2024b
See Also
GPSData
| Trajectory
| CameraData
| LidarData