libcamera
v0.3.2+116-83c5ad0f
Supporting cameras in Linux since 2019
|
A mean-based auto-exposure algorithm. More...
Classes | |
struct | AgcConstraint |
The boundaries and target for an AeConstraintMode constraint. More... | |
Public Member Functions | |
int | parseTuningData (const YamlObject &tuningData) |
Parse tuning data for AeConstraintMode and AeExposureMode controls. More... | |
void | setLimits (utils::Duration minShutter, utils::Duration maxShutter, double minGain, double maxGain) |
Set the ExposureModeHelper limits for this class. More... | |
std::map< int32_t, std::vector< AgcConstraint > > | constraintModes () |
Get the constraint modes that have been parsed from tuning data. | |
std::map< int32_t, std::shared_ptr< ExposureModeHelper > > | exposureModeHelpers () |
Get the ExposureModeHelpers that have been parsed from tuning data. | |
ControlInfoMap::Map | controls () |
Get the controls that have been generated after parsing tuning data. | |
std::tuple< utils::Duration, double, double > | calculateNewEv (uint32_t constraintModeIndex, uint32_t exposureModeIndex, const Histogram &yHist, utils::Duration effectiveExposureValue) |
Calculate the new exposure value and splut it between shutter time and gain. More... | |
void | resetFrameCount () |
Reset the frame counter. More... | |
A mean-based auto-exposure algorithm.
This algorithm calculates a shutter time, analogue and digital gain such that the normalised mean luminance value of an image is driven towards a target, which itself is discovered from tuning data. The algorithm is a two-stage process.
In the first stage, an initial gain value is derived by iteratively comparing the gain-adjusted mean luminance across the entire image against a target, and selecting a value which pushes it as closely as possible towards the target.
In the second stage we calculate the gain required to drive the average of a section of a histogram to a target value, where the target and the boundaries of the section of the histogram used in the calculation are taken from the values defined for the currently configured AeConstraintMode within the tuning data. This class provides a helper function to parse those tuning data to discover the constraints, and so requires a specific format for those data which is described in parseTuningData(). The gain from the first stage is then clamped to the gain from this stage.
The final gain is used to adjust the effective exposure value of the image, and that new exposure value is divided into shutter time, analogue gain and digital gain according to the selected AeExposureMode. This class uses the ExposureModeHelper class to assist in that division, and expects the data needed to initialise that class to be present in tuning data in a format described in parseTuningData().
In order to be able to use this algorithm an IPA module needs to be able to do the following:
IPA modules that want to use this class to implement their AEGC algorithm should derive it and provide an overriding estimateLuminance() function for this class to use. They must call parseTuningData() in init(), and must also call setLimits() and resetFrameCounter() in configure(). They may then use calculateNewEv() in process(). If the limits passed to setLimits() change for any reason (for example, in response to a FrameDurationLimit control being passed in queueRequest()) then setLimits() must be called again with the new values.
std::tuple< utils::Duration, double, double > libcamera::ipa::AgcMeanLuminance::calculateNewEv | ( | uint32_t | constraintModeIndex, |
uint32_t | exposureModeIndex, | ||
const Histogram & | yHist, | ||
utils::Duration | effectiveExposureValue | ||
) |
Calculate the new exposure value and splut it between shutter time and gain.
[in] | constraintModeIndex | The index of the current constraint mode |
[in] | exposureModeIndex | The index of the current exposure mode |
[in] | yHist | A Histogram from the ISP statistics to use in constraining the calculated gain |
[in] | effectiveExposureValue | The EV applied to the frame from which the statistics in use derive |
Calculate a new exposure value to try to obtain the target. The calculated exposure value is filtered to prevent rapid changes from frame to frame, and divided into shutter time, analogue and digital gain.
int libcamera::ipa::AgcMeanLuminance::parseTuningData | ( | const YamlObject & | tuningData | ) |
Parse tuning data for AeConstraintMode and AeExposureMode controls.
[in] | tuningData | the YamlObject representing the tuning data |
This function parses tuning data to build the list of allowed values for the AeConstraintMode and AeExposureMode controls. Those tuning data must provide the data in a specific format; the Agc algorithm's tuning data should contain a dictionary called AeConstraintMode containing per-mode setting dictionaries with the key being a value from controls::AeConstraintModeNameValueMap. Each mode dict may contain either a "lower" or "upper" key or both, for example:
For the AeExposureMode control the data should contain a dictionary called AeExposureMode containing per-mode setting dictionaries with the key being a value from controls::AeExposureModeNameValueMap. Each mode dict should contain an array of shutter times with the key "shutter" and an array of gain values with the key "gain", in this format:
|
inline |
Reset the frame counter.
This function resets the internal frame counter, which exists to help the algorithm decide whether it should respond instantly or not. The expectation is for derived classes to call this function before each camera start call in their configure() function.
void libcamera::ipa::AgcMeanLuminance::setLimits | ( | utils::Duration | minShutter, |
utils::Duration | maxShutter, | ||
double | minGain, | ||
double | maxGain | ||
) |
Set the ExposureModeHelper limits for this class.
[in] | minShutter | Minimum shutter time to allow |
[in] | maxShutter | Maximum shutter time to allow |
[in] | minGain | Minimum gain to allow |
[in] | maxGain | Maximum gain to allow |
This function calls ExposureModeHelper::setLimits() for each ExposureModeHelper that has been created for this class.