What must be the scale of point cloud data to be published in costmap ?
Hello, I am new to ROS. I collected pointcloud data from an image after perspective transformation. Now I want it to be published in a cost map. I am confused with the dimensions of the pcl data. Should it be converted to meters at pointcloud stage or is there any other way. Also please let me know what is usually done to convert data from images to real world 'length'.
Thanks in advance
Asked by Sooryakiran on 2018-05-15 01:23:16 UTC
Answers
ROS uses SI units for all its messages so pointclouds should be described in meters at all times.
To answer your question about converting from image space (pixels) to world space (m) I think you'll want to know about Camera calibration. This is the process of measuring a camera lens so that you know exactly what angle a pixel represents.
Converting calibrated images to 3D information is a very large and complex area. I recommend you read up on Stereopsis and structure from motion to get a general understanding.
Asked by PeteBlackerThe3rd on 2018-05-15 04:59:27 UTC
Comments