-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto exposure limit seems to have a wrong description and error message #10771
Comments
Hi @cansik Do you still experience an error with these instructions if you use int values instead of floats (such as 0 instead of 0.0) like in #9018 In that case there was also a problem reported in Python with rs.option.auto_exposure_limit that resulted in the error |
@MartyG-RealSense Using a |
What happens if it is set like this:
|
@MartyG-RealSense I already tried first enabling the auto-exposure. But it does not seem to work. Your code results in the same exception:
|
Does setting it to almost zero (1 instead of 0) achieve the desired effect? |
@MartyG-RealSense Thank you for your efforts and I don't mean to be rude, but I'm not sure that trying these things will make any difference. The desired effect would be that if the option is set to You can even check it out in the RealSense viewer that the auto-exposure-range limit is not from In my opinion just the documentation is wrong, not the code itself. Since |
Thanks very much for your detailed feedback. As you already have a solution, the best approach is likely to be to keep this case open and assign it a Documentation label so that it can be reviewed at a future date by a RealSense team member responsible for documentation. Thanks again! |
RealSense Camera:
D455
Firmware Version:
05.13.00.50
pyrealsense2 Version:
2.50.0.3812
Option:
option.auto_exposure_limit
It seems that auto-exposure limit seems to work differently from the documentation. If I request the description of it, the framework tells me:
But the
option_range
tells me that0
is not included:And if
0.0
is set, a wrong error message is shown (this is not about the Auto Exposure Mode):Here a code snippet to test it out yourself:
It seems like a copy-paste error when implementing this option: https://github.com/IntelRealSense/librealsense/blob/master/src/ds5/ds5-options.cpp#L672
Update
Same problem happens with
auto_gain_limit
.The text was updated successfully, but these errors were encountered: