diff options
author | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-12-19 18:57:24 +0100 |
---|---|---|
committer | Stefan Klug <stefan.klug@ideasonboard.com> | 2024-12-20 17:22:42 +0100 |
commit | b1ec488f1b8e72b9bfe7a54397327b45a7caa7e0 (patch) | |
tree | da4360b0448dce0a96d85204031245b7011e0cc9 /utils/tuning/libtuning/modules/awb/__init__.py | |
parent | 731cc02e797394fb44f85329e06697b9e065fbc4 (diff) |
libtuning: Add initial AWB module
This AWB module uses the awb function from Raspberry Pi to calculate the
needed white balance gains per colour temperature. It stores these gains
in the tuning file.
Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'utils/tuning/libtuning/modules/awb/__init__.py')
-rw-r--r-- | utils/tuning/libtuning/modules/awb/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/tuning/libtuning/modules/awb/__init__.py b/utils/tuning/libtuning/modules/awb/__init__.py new file mode 100644 index 00000000..2d67f10c --- /dev/null +++ b/utils/tuning/libtuning/modules/awb/__init__.py @@ -0,0 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# +# Copyright (C) 2024, Ideas On Board + +from libtuning.modules.awb.awb import AWB +from libtuning.modules.awb.rkisp1 import AWBRkISP1 |