Robotics StackExchange | Archived questions

visualize lidar point cloud data

What would be the best way to visualize lidar data? I am using cv_bridge for images.

 def __init__(self):


    self.bridge = CvBridge()

    self.depth_sub = message_filters.Subscriber("/os1_cloud_node/points",PointCloud2)
    self.image_sub = message_filters.Subscriber("/pylon_camera_node/image_rect_color",Image)

    ts=message_filters.ApproximateTimeSynchronizer([self.image_sub,self.depth_sub],10,1)**strong text**
    ts.registerCallback(self.callback)


  def callback(self,color,depth):

Asked by pnambiar on 2020-07-19 06:11:50 UTC

Comments

Is there a reason rviz isn't suitable?

Asked by Geoff on 2020-07-19 18:14:58 UTC

Answers