From cfb4bee74b6dce3e9c44d3b8dedcd3ffcc11b32b Mon Sep 17 00:00:00 2001 From: David Plowman Date: Wed, 6 Dec 2023 10:38:39 +0000 Subject: ipa: rpi: awb: Add an initialValues method This allows the IPA to get reasonable default colour gains before AWB has run. This is particularly important on the PiSP platform where these numbers are helpful in programming the Front End statistics block in advance. Signed-off-by: David Plowman Reviewed-by: Naushir Patuck Signed-off-by: Kieran Bingham --- src/ipa/rpi/controller/awb_algorithm.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ipa/rpi/controller/awb_algorithm.h') diff --git a/src/ipa/rpi/controller/awb_algorithm.h b/src/ipa/rpi/controller/awb_algorithm.h index 8462c4db..6009bdac 100644 --- a/src/ipa/rpi/controller/awb_algorithm.h +++ b/src/ipa/rpi/controller/awb_algorithm.h @@ -16,6 +16,7 @@ public: AwbAlgorithm(Controller *controller) : Algorithm(controller) {} /* An AWB algorithm must provide the following: */ virtual unsigned int getConvergenceFrames() const = 0; + virtual void initialValues(double &gainR, double &gainB) = 0; virtual void setMode(std::string const &modeName) = 0; virtual void setManualGains(double manualR, double manualB) = 0; virtual void enableAuto() = 0; -- cgit v1.2.1