libcamera: software_isp: Add CCM algorithm
This patch adds color correction matrix (CCM) algorithm to software ISP. It is based on the corresponding algorithm in rkisp1. The primary difference against hardware pipelines is that applying the CCM is optional. Applying CCM causes a significant slowdown, time needed to process a frame raises by 40-90% on tested platforms. If CCM is really needed, it can be applied, if not, it's better to stick without it. This can be configured by presence or omission of Ccm algorithm in the tuning file. CCM is changed only if the determined temperature changes by at least 100 K (an arbitrarily selected value), to avoid recomputing the matrices and lookup tables all the time. Since the CCM is float, rather than double, to use the same type as in the rkisp1 pipeline, the type of color gains is changed from double to float. The outputs of the algorithm are not used yet, they will be enabled in followup patches. Signed-off-by: Milan Zamazal <mzamazal@redhat.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Milan Zamazal <mzamazal@redhat.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
23dfd69081
commit
38ec74fb40
6 changed files with 133 additions and 4 deletions
74
src/ipa/simple/algorithms/ccm.cpp
Normal file
74
src/ipa/simple/algorithms/ccm.cpp
Normal file
|
@ -0,0 +1,74 @@
|
|||
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
/*
|
||||
* Copyright (C) 2024, Ideas On Board
|
||||
* Copyright (C) 2024-2025, Red Hat Inc.
|
||||
*
|
||||
* Color correction matrix
|
||||
*/
|
||||
|
||||
#include "ccm.h"
|
||||
|
||||
#include <libcamera/base/log.h>
|
||||
#include <libcamera/base/utils.h>
|
||||
|
||||
#include <libcamera/control_ids.h>
|
||||
|
||||
namespace {
|
||||
|
||||
constexpr unsigned int kTemperatureThreshold = 100;
|
||||
|
||||
}
|
||||
|
||||
namespace libcamera {
|
||||
|
||||
namespace ipa::soft::algorithms {
|
||||
|
||||
LOG_DEFINE_CATEGORY(IPASoftCcm)
|
||||
|
||||
int Ccm::init([[maybe_unused]] IPAContext &context, const YamlObject &tuningData)
|
||||
{
|
||||
int ret = ccm_.readYaml(tuningData["ccms"], "ct", "ccm");
|
||||
if (ret < 0) {
|
||||
LOG(IPASoftCcm, Error)
|
||||
<< "Failed to parse 'ccm' parameter from tuning file.";
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Ccm::prepare(IPAContext &context, const uint32_t frame,
|
||||
IPAFrameContext &frameContext, [[maybe_unused]] DebayerParams *params)
|
||||
{
|
||||
const unsigned int ct = context.activeState.awb.temperatureK;
|
||||
|
||||
/* Change CCM only on bigger temperature changes. */
|
||||
if (frame > 0 &&
|
||||
utils::abs_diff(ct, lastCt_) < kTemperatureThreshold) {
|
||||
frameContext.ccm.ccm = context.activeState.ccm.ccm;
|
||||
context.activeState.ccm.changed = false;
|
||||
return;
|
||||
}
|
||||
|
||||
lastCt_ = ct;
|
||||
Matrix<float, 3, 3> ccm = ccm_.getInterpolated(ct);
|
||||
|
||||
context.activeState.ccm.ccm = ccm;
|
||||
frameContext.ccm.ccm = ccm;
|
||||
context.activeState.ccm.changed = true;
|
||||
}
|
||||
|
||||
void Ccm::process([[maybe_unused]] IPAContext &context,
|
||||
[[maybe_unused]] const uint32_t frame,
|
||||
IPAFrameContext &frameContext,
|
||||
[[maybe_unused]] const SwIspStats *stats,
|
||||
ControlList &metadata)
|
||||
{
|
||||
metadata.set(controls::ColourCorrectionMatrix, frameContext.ccm.ccm.data());
|
||||
}
|
||||
|
||||
REGISTER_IPA_ALGORITHM(Ccm, "Ccm")
|
||||
|
||||
} /* namespace ipa::soft::algorithms */
|
||||
|
||||
} /* namespace libcamera */
|
Loading…
Add table
Add a link
Reference in a new issue