[ROS2] sensor_msgs/msg/PointCloud2 Message
File: sensor_msgs/msg/PointCloud2.msg
Raw Message Definition
# This message holds a collection of N-dimensional points, which may
# contain additional information such as normals, intensity, etc. The
# point data is stored as a binary blob, its layout described by the
# contents of the "fields" array.
#
# The point cloud data may be organized 2d (image-like) or 1d (unordered).
# Point clouds organized as 2d images may be produced by camera depth sensors
# such as stereo or time-of-flight.
# Time of sensor data acquisition, and the coordinate frame ID (for 3d points).
std_msgs/Header header
# 2D structure of the point cloud. If the cloud is unordered, height is
# 1 and width is the length of the point cloud.
uint32 height
uint32 width
# Describes the channels and their layout in the binary data blob.
PointField[] fields
#bool is_bigendian # Is this data bigendian?
#uint32 point_step # Length of a point in bytes
#uint32 row_step # Length of a row in bytes
#uint8[] data # Actual point data, size is (row_step*height)
#bool is_dense # True if there are no invalid points
Compact Message Definition
std_msgs/msg/Header header
uint32 height
uint32 width
sensor_msgs/msg/PointField[] fields
boolean is_bigendian
uint32 point_step
uint32 row_step
uint8[] data
boolean is_dense
uint32 height
uint32 width
sensor_msgs/msg/PointField[] fields
boolean is_bigendian
uint32 point_step
uint32 row_step
uint8[] data
boolean is_dense
autogenerated on Oct 09 2020 00:02:33
https://docs.ros2.org/foxy/api/sensor_msgs/msg/PointCloud2.html
'로보틱스' 카테고리의 다른 글
[도커/Docker] 중지된 컨테이너 한번에 삭제하는 명령어 (0) | 2024.12.23 |
---|---|
[도커/Docker] 도커 run 실행 후 실행 중인 컨테이너에 접속하는 명령어 (2) | 2024.12.23 |
[ROS2] bag 파일 열고 보는 방법 (0) | 2024.12.10 |
[ROS2] "혼자 공부하는 로봇 SW" 책을 읽으며 알게 된 기본 개념 정리 -2- (0) | 2024.12.03 |
[ROS2] "혼자 공부하는 로봇 SW" 책을 읽으며 알게 된 기본 개념 정리 -1- (1) | 2024.11.29 |