diff options
Diffstat (limited to 'utils/tuning/libtuning/modules/agc/rkisp1.py')
-rw-r--r-- | utils/tuning/libtuning/modules/agc/rkisp1.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/tuning/libtuning/modules/agc/rkisp1.py b/utils/tuning/libtuning/modules/agc/rkisp1.py index 7147028a..1a4dbe7b 100644 --- a/utils/tuning/libtuning/modules/agc/rkisp1.py +++ b/utils/tuning/libtuning/modules/agc/rkisp1.py @@ -47,9 +47,9 @@ class AGCRkISP1(AGC): } def _generate_exposure_modes(self) -> dict: - normal = {'shutter': [100, 10000, 30000, 60000, 120000], + normal = {'exposure-time': [100, 10000, 30000, 60000, 120000], 'gain': [2.0, 4.0, 6.0, 6.0, 6.0]} - short = {'shutter': [100, 5000, 10000, 20000, 120000], + short = {'exposure-time': [100, 5000, 10000, 20000, 120000], 'gain': [2.0, 4.0, 6.0, 6.0, 6.0]} return {'ExposureNormal': normal, 'ExposureShort': short} |