pcl coordinate system orientation
I am aware that ros uses the positive coordinate system in which x=forward, y=left, and z=up, but can anyone tell me what pcl data uses?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
I am aware that ros uses the positive coordinate system in which x=forward, y=left, and z=up, but can anyone tell me what pcl data uses?
The same, in whatever frame of reference the PointCloud2 message specifies.
Asked: 2013-02-21 17:28:14 -0500
Seen: 3,275 times
Last updated: Feb 22 '13
detect/extract a "small" sphere using PCL
ICP taking long time to converge
pcl beginner tutorial not running [closed]
Function for unpacking RGB point field from point in point cloud?
How to know which points pcl::PassThrough and pcl::StatisticalOutlierRemoval removes?
Decomposing objects into their structural components in pcl
Navigation planning based on kinect data in 2.5D?
is there a python equivalent of fromROSMsg/toROSMsg (pcl stack)
joq, that's what I thought until I used the function pcl::fromROSMsg() and a pcl passthrough filter. The PCL z parameter pertained to forward direction and y pertainted to the upward direction. I'm speaking in terms of the pcl namespace. Is this correct?
Check the
header.frame_id
field in the message. It may be using an "optical" frame by mistake. See: http://www.ros.org/reps/rep-0103.html#coordinate-frame-conventionsThanks for the help!