ipa: rpi: ccm: Implement "manual" CCM mode

The CCM algorithm will now let an explicit colour matrix be set when
AWB is in manual mode.

We must handle any controls that can cause the AWB to be enabled or
disabled first, so that we know the AWB's state correctly when we come
to set the CCM.

Signed-off-by: David Plowman <david.plowman@raspberrypi.com>
Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
[Kieran: Remove duplicated Matrix3x3 from ccm.cpp]
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
David Plowman
2025-08-04 15:48:04 +01:00
committed by Kieran Bingham
parent 17ae86986e
commit 3f509744ab
5 changed files with 172 additions and 51 deletions
+138 -46
View File
@@ -94,6 +94,7 @@ const ControlInfoMap::Map ipaColourControls{
{ &controls::AwbEnable, ControlInfo(false, true) },
{ &controls::AwbMode, ControlInfo(controls::AwbModeValues) },
{ &controls::ColourGains, ControlInfo(0.0f, 32.0f) },
{ &controls::ColourCorrectionMatrix, ControlInfo(0.0f, 8.0f) },
{ &controls::ColourTemperature, ControlInfo(100, 100000) },
{ &controls::Saturation, ControlInfo(0.0f, 32.0f, 1.0f) },
};
@@ -126,7 +127,7 @@ namespace ipa::RPi {
IpaBase::IpaBase()
: controller_(), frameLengths_(FrameLengthsQueueSize, 0s), statsMetadataOutput_(false),
stitchSwapBuffers_(false), frameCount_(0), mistrustCount_(0), lastRunTimestamp_(0),
firstStart_(true), flickerState_({ 0, 0s })
firstStart_(true), flickerState_({ 0, 0s }), awbEnabled_(true)
{
}
@@ -821,6 +822,102 @@ void IpaBase::applyControls(const ControlList &controls)
}
}
/*
* We must also handle any AWB on/off changes first, so that the CCM algorithm
* knows its state correctly.
*/
const auto awbEnable = controls.get(controls::AwbEnable);
if (awbEnable)
do {
/* Silently ignore this control for a mono sensor. */
if (monoSensor_)
break;
RPiController::AwbAlgorithm *awb = dynamic_cast<RPiController::AwbAlgorithm *>(
controller_.getAlgorithm("awb"));
if (!awb) {
LOG(IPARPI, Warning)
<< "Could not set AWB_ENABLE - no AWB algorithm";
break;
}
awbEnabled_ = *awbEnable;
if (!awbEnabled_)
awb->disableAuto();
else {
awb->enableAuto();
/* The CCM algorithm must go back to auto as well. */
RPiController::CcmAlgorithm *ccm = dynamic_cast<RPiController::CcmAlgorithm *>(
controller_.getAlgorithm("ccm"));
if (ccm)
ccm->enableAuto();
}
libcameraMetadata_.set(controls::AwbEnable, awbEnabled_);
} while (false);
const auto colourGains = controls.get(controls::ColourGains);
if (colourGains)
do {
/* Silently ignore this control for a mono sensor. */
if (monoSensor_)
break;
auto gains = *colourGains;
RPiController::AwbAlgorithm *awb = dynamic_cast<RPiController::AwbAlgorithm *>(
controller_.getAlgorithm("awb"));
if (!awb) {
LOG(IPARPI, Warning)
<< "Could not set COLOUR_GAINS - no AWB algorithm";
break;
}
awb->setManualGains(gains[0], gains[1]);
if (gains[0] != 0.0f && gains[1] != 0.0f) {
/* A gain of 0.0f will switch back to auto mode. */
libcameraMetadata_.set(controls::ColourGains,
{ gains[0], gains[1] });
awbEnabled_ = false; /* doing this puts AWB into manual mode */
} else {
awbEnabled_ = true; /* doing this puts AWB into auto mode */
/* The CCM algorithm must go back to auto as well. */
RPiController::CcmAlgorithm *ccm = dynamic_cast<RPiController::CcmAlgorithm *>(
controller_.getAlgorithm("ccm"));
if (ccm)
ccm->enableAuto();
}
/* This metadata will get reported back automatically. */
break;
} while (false);
const auto colourTemperature = controls.get(controls::ColourTemperature);
if (colourTemperature)
do {
/* Silently ignore this control for a mono sensor. */
if (monoSensor_)
break;
auto temperatureK = *colourTemperature;
RPiController::AwbAlgorithm *awb = dynamic_cast<RPiController::AwbAlgorithm *>(
controller_.getAlgorithm("awb"));
if (!awb) {
LOG(IPARPI, Warning)
<< "Could not set COLOUR_TEMPERATURE - no AWB algorithm";
break;
}
awb->setColourTemperature(temperatureK);
awbEnabled_ = false; /* doing this puts AWB into manual mode */
/* This metadata will get reported back automatically. */
break;
} while (false);
/* Iterate over controls */
for (auto const &ctrl : controls) {
LOG(IPARPI, Debug) << "Request ctrl: "
@@ -1037,25 +1134,7 @@ void IpaBase::applyControls(const ControlList &controls)
}
case controls::AWB_ENABLE: {
/* Silently ignore this control for a mono sensor. */
if (monoSensor_)
break;
RPiController::AwbAlgorithm *awb = dynamic_cast<RPiController::AwbAlgorithm *>(
controller_.getAlgorithm("awb"));
if (!awb) {
LOG(IPARPI, Warning)
<< "Could not set AWB_ENABLE - no AWB algorithm";
break;
}
if (ctrl.second.get<bool>() == false)
awb->disableAuto();
else
awb->enableAuto();
libcameraMetadata_.set(controls::AwbEnable,
ctrl.second.get<bool>());
/* We handled this one above. */
break;
}
@@ -1080,47 +1159,60 @@ void IpaBase::applyControls(const ControlList &controls)
LOG(IPARPI, Error) << "AWB mode " << idx
<< " not recognised";
}
break;
}
case controls::COLOUR_GAINS: {
/* Silently ignore this control for a mono sensor. */
if (monoSensor_)
break;
auto gains = ctrl.second.get<Span<const float>>();
RPiController::AwbAlgorithm *awb = dynamic_cast<RPiController::AwbAlgorithm *>(
controller_.getAlgorithm("awb"));
if (!awb) {
LOG(IPARPI, Warning)
<< "Could not set COLOUR_GAINS - no AWB algorithm";
break;
}
awb->setManualGains(gains[0], gains[1]);
if (gains[0] != 0.0f && gains[1] != 0.0f)
/* A gain of 0.0f will switch back to auto mode. */
libcameraMetadata_.set(controls::ColourGains,
{ gains[0], gains[1] });
/* We handled this one above. */
break;
}
case controls::COLOUR_TEMPERATURE: {
/* Silently ignore this control for a mono sensor. */
/* We handled this one above. */
break;
}
case controls::COLOUR_CORRECTION_MATRIX: {
if (monoSensor_)
break;
auto temperatureK = ctrl.second.get<int32_t>();
RPiController::AwbAlgorithm *awb = dynamic_cast<RPiController::AwbAlgorithm *>(
controller_.getAlgorithm("awb"));
if (!awb) {
auto floats = ctrl.second.get<Span<const float>>();
RPiController::CcmAlgorithm *ccm = dynamic_cast<RPiController::CcmAlgorithm *>(
controller_.getAlgorithm("ccm"));
if (!ccm) {
LOG(IPARPI, Warning)
<< "Could not set COLOUR_TEMPERATURE - no AWB algorithm";
<< "Could not set COLOUR_CORRECTION_MATRIX - no CCM algorithm";
break;
}
awb->setColourTemperature(temperatureK);
/* This metadata will get reported back automatically. */
RPiController::AwbAlgorithm *awb = dynamic_cast<RPiController::AwbAlgorithm *>(
controller_.getAlgorithm("awb"));
if (awb && awbEnabled_) {
LOG(IPARPI, Warning)
<< "Could not set COLOUR_CORRECTION_MATRIX - AWB is active";
break;
}
/* We are guaranteed this control contains 9 values. Nevertheless: */
assert(floats.size() == 9);
Matrix<double, 3, 3> matrix;
for (std::size_t i = 0; i < 3; ++i)
for (std::size_t j = 0; j < 3; ++j)
matrix[i][j] = static_cast<double>(floats[i * 3 + j]);
ccm->setCcm(matrix);
/*
* But if AWB is running, go back to auto mode. The CCM gets remembered,
* which avoids the race between setting the CCM and disabling AWB in
* the same set of controls.
*/
if (awbEnabled_)
ccm->enableAuto();
/* This metadata will be reported back automatically. */
break;
}
+2
View File
@@ -140,6 +140,8 @@ private:
int32_t mode;
utils::Duration manualPeriod;
} flickerState_;
bool awbEnabled_;
};
} /* namespace ipa::RPi */
+6
View File
@@ -6,16 +6,22 @@
*/
#pragma once
#include "libcamera/internal/matrix.h"
#include "algorithm.h"
namespace RPiController {
using Matrix3x3 = libcamera::Matrix<double, 3, 3>;
class CcmAlgorithm : public Algorithm
{
public:
CcmAlgorithm(Controller *controller) : Algorithm(controller) {}
/* A CCM algorithm must provide the following: */
virtual void enableAuto() = 0;
virtual void setSaturation(double saturation) = 0;
virtual void setCcm(Matrix3x3 const &matrix) = 0;
};
} /* namespace RPiController */
+22 -4
View File
@@ -29,10 +29,11 @@ LOG_DEFINE_CATEGORY(RPiCcm)
#define NAME "rpi.ccm"
using Matrix3x3 = Matrix<double, 3, 3>;
Ccm::Ccm(Controller *controller)
: CcmAlgorithm(controller), saturation_(1.0) {}
: CcmAlgorithm(controller), enableAuto_(true), saturation_(1.0),
manualCcm_({ 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0 })
{
}
char const *Ccm::name() const
{
@@ -78,11 +79,22 @@ int Ccm::read(const libcamera::YamlObject &params)
return 0;
}
void Ccm::enableAuto()
{
enableAuto_ = true;
}
void Ccm::setSaturation(double saturation)
{
saturation_ = saturation;
}
void Ccm::setCcm(Matrix3x3 const &matrix)
{
enableAuto_ = false;
manualCcm_ = matrix;
}
void Ccm::initialise()
{
}
@@ -151,7 +163,13 @@ void Ccm::prepare(Metadata *imageMetadata)
LOG(RPiCcm, Warning) << "no colour temperature found";
if (!luxOk)
LOG(RPiCcm, Warning) << "no lux value found";
Matrix3x3 ccm = calculateCcm(config_.ccms, awb.temperatureK);
Matrix3x3 ccm;
if (enableAuto_)
ccm = calculateCcm(config_.ccms, awb.temperatureK);
else
ccm = manualCcm_;
double saturation = saturation_;
struct CcmStatus ccmStatus;
ccmStatus.saturation = saturation;
+4 -1
View File
@@ -8,7 +8,6 @@
#include <vector>
#include "libcamera/internal/matrix.h"
#include <libipa/pwl.h>
#include "../ccm_algorithm.h"
@@ -33,13 +32,17 @@ public:
Ccm(Controller *controller = NULL);
char const *name() const override;
int read(const libcamera::YamlObject &params) override;
void enableAuto() override;
void setSaturation(double saturation) override;
void setCcm(Matrix3x3 const &matrix) override;
void initialise() override;
void prepare(Metadata *imageMetadata) override;
private:
CcmConfig config_;
bool enableAuto_;
double saturation_;
Matrix3x3 manualCcm_;
};
} /* namespace RPiController */