General Information
Model: B57-4-Color
SN: 1010836
OS: Ubuntu 20.04
ROS2 Jazzy
Ensenso SDK: 4.1.1033
ros_driver branch: master
Problem / Question
Hi, I use the goal below to retrieve color images from my B57 ROS2 node. I only request the rectified images. However the result message includes images in the depth_image
and disparity_map
fields. Is this normal?
Best regards,
Charles
RequestData.Goal(
parameter_set=self._color_settings,
request_depth_image = False,
request_disparity_map = False,
request_rectified_images = True,
include_results_in_response = True,
request_point_cloud = False,
request_normals = False
)
With self._color_settings
having the following pameters:
Parameter(key=Parameter.AUTO_EXPOSURE, bool_value=True),
Parameter(key=Parameter.AUTO_GAIN, bool_value=True),
Parameter(key=Parameter.PROJECTOR, bool_value=False),
Parameter(key=Parameter.FRONT_LIGHT, bool_value=False),
Parameter(key=Parameter.FLEX_VIEW, float_value=0.)