visualize lidar point cloud data

asked 2020-07-19 06:11:50 -0500

pnambiar gravatar image

updated 2020-07-19 18:13:55 -0500

Geoff gravatar image

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):
edit retag flag offensive close merge delete

Comments

Is there a reason rviz isn't suitable?

Geoff gravatar image Geoff  ( 2020-07-19 18:14:58 -0500 )edit