select
Select subset of messages to read from Ibeo Data Container (IDC) file
Since R2021a
Syntax
Description
Use select
object function to specify a subset of messages to
read from the IDC file based on message type, message ID or device ID. The
select
method returns an ibeoMessageReader
object which can be used to read the selected messages, from the IDC file. The supported
values for message type and message ID are listed below. A Lidar Toolbox™ license is required to read scan
and
pointCloudPlane
messages.
Message Type | Message ID | Ibeo® Data Type Name |
---|---|---|
'scan' | '0x2205' | Ibeo FUSION SYSTEM/ECU scan data |
'pointCloudPlane' | '0x7510' | Ibeo point cloud plane |
'image' | '0x2403' | Ibeo FUSION SYSTEM/ECU image |
'object' | '0x2281' | Ibeo FUSION SYSTEM/ECU object data |
'vehicleState' | '0x2808' | Ibeo FUSION SYSTEM/ECU vehicle state |
'measurementList' | '0x2821' | Ibeo FUSION SYSTEM/ECU measurement list |
'CAN' | '0x1002' | Ibeo FUSION SYSTEM/ECU CAN messages |
creates an msgReader
= select(ibeoReader
,msgType
)ibeoMessageReader
object, msgReader
, that can read all
messages of type, msgType
, present in an ibeoFileReader
object, ibeoReader
.
creates an msgReader
= select(ibeoReader
,msgID
)ibeoMessageReader
object, msgReader
. that can read all
messages with ID, msgID
, present in an ibeoFileReader
object.
specifies a time range within which the msgReader
= select(___,timeRange
)ibeoMessageReader
object can read messages, in addition to any combination of
arguments from previous syntaxes.
specifies a device ID corresponding to which the msgReader
= select(___,'DeviceID',deviceID
)ibeoMessageReader
object can read messages, in addition to any combination of
arguments from previous syntaxes.
Examples
Input Arguments
Output Arguments
Version History
Introduced in R2021a
See Also
ibeoFileReader
| ibeoMessageReader
| readMessages
| readNextMessage