-
Notifications
You must be signed in to change notification settings - Fork 127
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
AE exposure time limit, OV9282/OV9782 image quality and FPS improvements #926
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…mage quality in low-light / under high ISO (1300+)
themarpe
approved these changes
Nov 16, 2023
moratom
approved these changes
Nov 23, 2023
…t for IMX462, IMX283, IMX296, IMX214
This was referenced Dec 13, 2023
Merged
that fixed it, thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added CameraControl API:
setAutoExposureLimit(uint32_t maxExposureTimeUs);
setAutoExposureLimit(std::chrono::microseconds maxExposureTime);
Can be applied both using
initialControl
, and at runtime.Other FW changes: improved OV9282 and OV9782 image quality under low-light scenarios - high ISO (over 1300).
It got degraded (more noise) for the 800p/720p resolutions after the switch to the max-120fps configs: #620, was introduced with depthai
v2.20.0
(andv2.21.0
for socket CAM_A).Also improved maximum FPS, with new ranges per resolution of:
THE_800_P
:1.687
..129.6
fpsTHE_720_P
:1.687
..143.1
fpsTHE_400_P
:1.687
..255.7
fps(For the latter to be achievable, will need to be paired with
.setIsp3aFps(some_lower_rate)
for which some further stability fixes are needed)Related: luxonis/depthai-shared#153