rosbag2_image_loader 0.1.1

Data loader for rosbag2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Get the std_msgs/msg/Header information
/// Header has data as below
///
/// | the index of topic data | topic data      |
/// | ----------------------- | --------------- |
/// |                         | uint32 seq      |
/// |                         | time stamp      |
/// | 12 .. header_data_size  | string frame_id |
pub struct TopicHeaderInfo {
    pub frame_id: String,
    pub size: usize,
}

impl TopicHeaderInfo {}