I'm using Camera2 API to modify Camera shutter speed.
So I have to set CONTROL_AE_MODE
to AE_MODE_OFF
.
Then auto-exposure algorithm will not override SENSOR_SENSITIVITY
value.
But after shutter speed changed, sensitivity value become not suitable. the preview become too dark or white.
My question is: How to change SENSOR_SENSITIVITY
(ISO value) automatically when AE_MODE
is OFF
.
I know in iOS camera, they have exposureTargetOffset
value to decide whether iso value suitable.
But I have not found in android camera2 api.
Any suggestion will be appreciated.