ipa: ipu3: Use centralised libipa helpers

Use the centralised libipa helpers instead of open coding common
functions.

Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Milan Zamazal <mzamazal@redhat.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Daniel Scally
2024-11-15 07:46:24 +00:00
parent b1439c87d1
commit edfe10997b
3 changed files with 6 additions and 34 deletions

View File

@@ -17,6 +17,7 @@
#include <libcamera/ipa/core_ipa_interface.h>
#include "libipa/colours.h"
#include "libipa/histogram.h"
/**
@@ -185,9 +186,9 @@ double Agc::estimateLuminance(double gain) const
blueSum += std::min(std::get<2>(rgbTriples_[i]) * gain, 255.0);
}
double ySum = redSum * rGain_ * 0.299
+ greenSum * gGain_ * 0.587
+ blueSum * bGain_ * 0.114;
double ySum = rec601LuminanceFromRGB(redSum * rGain_,
greenSum * gGain_,
blueSum * bGain_);
return ySum / (bdsGrid_.height * bdsGrid_.width) / 255;
}

View File

@@ -13,6 +13,8 @@
#include <libcamera/control_ids.h>
#include "libipa/colours.h"
/**
* \file awb.h
*/
@@ -301,36 +303,6 @@ void Awb::prepare(IPAContext &context,
params->use.acc_ccm = 1;
}
/**
* The function estimates the correlated color temperature using
* from RGB color space input.
* In physics and color science, the Planckian locus or black body locus is
* the path or locus that the color of an incandescent black body would take
* in a particular chromaticity space as the blackbody temperature changes.
*
* If a narrow range of color temperatures is considered (those encapsulating
* daylight being the most practical case) one can approximate the Planckian
* locus in order to calculate the CCT in terms of chromaticity coordinates.
*
* More detailed information can be found in:
* https://en.wikipedia.org/wiki/Color_temperature#Approximation
*/
uint32_t Awb::estimateCCT(double red, double green, double blue)
{
/* Convert the RGB values to CIE tristimulus values (XYZ) */
double X = (-0.14282) * (red) + (1.54924) * (green) + (-0.95641) * (blue);
double Y = (-0.32466) * (red) + (1.57837) * (green) + (-0.73191) * (blue);
double Z = (-0.68202) * (red) + (0.77073) * (green) + (0.56332) * (blue);
/* Calculate the normalized chromaticity values */
double x = X / (X + Y + Z);
double y = Y / (X + Y + Z);
/* Calculate CCT */
double n = (x - 0.3320) / (0.1858 - y);
return 449 * n * n * n + 3525 * n * n + 6823.3 * n + 5520.33;
}
/* Generate an RGB vector with the average values for each zone */
void Awb::generateZones()
{

View File

@@ -75,7 +75,6 @@ private:
void generateAwbStats(const ipu3_uapi_stats_3a *stats);
void clearAwbStats();
void awbGreyWorld();
uint32_t estimateCCT(double red, double green, double blue);
static constexpr uint16_t threshold(float value);
static constexpr uint16_t gainValue(double gain);