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'm trying to convert https://github.com/IntelRealSense/librealsense/blob/master/wrappers/python/examples/align-depth2color.py, so it will receive depth and color messages coming from the realsense2_camera_node and not from rs.pipeline().
I do not find a way for how to align depth to color. Here is a snippet of the subs self.color_sub = self.create_subscription(Image, '/color/image_raw', self.color_callback, 10) self.depth_sub = self.create_subscription(Image, '/depth/image_rect_raw', self.depth_callback, 10)
Any idea for how to align?
(please note aligned_depth_to_color topic is not available.)
Thanks
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to convert https://github.com/IntelRealSense/librealsense/blob/master/wrappers/python/examples/align-depth2color.py, so it will receive depth and color messages coming from the realsense2_camera_node and not from
rs.pipeline()
.I do not find a way for how to align depth to color. Here is a snippet of the subs
self.color_sub = self.create_subscription(Image, '/color/image_raw', self.color_callback, 10) self.depth_sub = self.create_subscription(Image, '/depth/image_rect_raw', self.depth_callback, 10)
Any idea for how to align?
(please note aligned_depth_to_color topic is not available.)
Thanks
Beta Was this translation helpful? Give feedback.
All reactions