mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 12:06:58 +03:00
limit auto exposure values to range -2 to +2
This commit is contained in:
@@ -175,6 +175,7 @@ bool CCamera::SetBrightnessContrastSaturation(int _brightness, int _contrast, in
|
|||||||
_brightness = min(2, max(-2, _brightness));
|
_brightness = min(2, max(-2, _brightness));
|
||||||
_contrast = min(2, max(-2, _contrast));
|
_contrast = min(2, max(-2, _contrast));
|
||||||
_saturation = min(2, max(-2, _saturation));
|
_saturation = min(2, max(-2, _saturation));
|
||||||
|
_autoExposureLevel = min(2, max(-2, _autoExposureLevel));
|
||||||
|
|
||||||
sensor_t * s = esp_camera_sensor_get();
|
sensor_t * s = esp_camera_sensor_get();
|
||||||
if (s) {
|
if (s) {
|
||||||
|
|||||||
Reference in New Issue
Block a user