Open wenmingxiaohuo opened 20 hours ago
Hi @wenmingxiaohuo It looks as though the problem is not with the RGB image's colors but rather that it has very low brightness. A workaround for increasing RGB brightness with RealSense MATLAB wrapper code by disabling auto-exposure and setting a high RGB manual exposure value can be found at https://github.com/IntelRealSense/librealsense/issues/7102#issuecomment-673623848`
If you are using the camera indoors, where the artificial lighting level will likely be consistent through the day, then it should be okay to have auto-exposure disabled and use a fixed exposure value.
If you need auto-exposure to be enabled then you could try directly maximizing the value of the RGB brightness option by replacing the last line of the script at the link above with the following line.
sensors{1}{2}.set_option(realsense.option.brightness,64);
The supported raneg of brightness values is -64 (lowest) to 64 (highest).
Before opening a new issue, we wanted to provide you with some useful suggestions (Click "Preview" above for a better view):
All users are welcomed to report bugs, ask questions, suggest or request enhancements and generally feel free to open new issue, even if they haven't followed any of the suggestions above :) ``
Issue Description
<Describe your issue / question / feature request / etc..>
matlab
`function RGB_example() % Make Pipeline object to manage streaming
end`