Closed DaveBGld closed 1 year ago
Hi @DaveBGld As mentioned in your other question at https://github.com/IntelRealSense/librealsense/issues/11982 the D405 does not have an RGB sensor component and obtains RGB from the depth sensor. There is therefore no exposure control for an RGB sensor. The RGB exposure is set by changing the depth sensor exposure. The depth sensor index is '0' instead of '1'.
Increasing the depth exposure value (which has a default value of '33000') brightens the RGB image and reducing the value darkens it. You can test this in the RealSense Viewer by enabling both the depth and color streams and changing the exposure value under the Stereo Module > Controls section of the options side-panel.
@MartyG-RealSense Thanks !
Issue Description
I have code developed for the D435i, where control of exposure is important to improve the performance of the Machine Learning Vision Pipeline.
First Problem Auto exposure fails:
Throws a exception at
VALIDATE_OPTION(options, option); inside rs2_set_option
Second Problem, Manual exposure is ignored:
It doesn't matter what value I give the exposure, the color image is too dark, even at maximum 10000, and also sometimes throws the same exception as above.
Thanks for the help!