You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to convert ROS point cloud to pcl format using ros_to_pcl under Exercise-2/sensor_stick/scripts/pcl_helper.py and show the result in rviz. The original point cloud looks like this:
After ros_to_pcl and pcl_to_ros, lots of points are missing,
And if I remove skip_nans=True in ros_to_pcl, the color becomes strange,
Is this a problem with read_points function or caused by some problems in my code? Here is my code for republishing the topic:
I tried to convert ROS point cloud to pcl format using
ros_to_pclunderExercise-2/sensor_stick/scripts/pcl_helper.pyand show the result in rviz. The original point cloud looks like this:After
ros_to_pclandpcl_to_ros, lots of points are missing,And if I remove
skip_nans=Trueinros_to_pcl, the color becomes strange,Is this a problem with
read_pointsfunction or caused by some problems in my code? Here is my code for republishing the topic: