summaryrefslogtreecommitdiff
path: root/src/ipa/libipa/awb.cpp
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2025-02-23 23:12:40 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2025-02-24 18:22:25 +0200
commit7115b81310af235b6d12bdd1cd561be80c517bfa (patch)
tree8a8ecb07574813b45b0d736dc63440c1660dc277 /src/ipa/libipa/awb.cpp
parent704a3aa5d012e44a22f3d02009d04e206554289c (diff)
libipa: awb: Follow function names with '()' in doxygen documentation
Function names are followed by parentheses in doxygen documentation blocks as convention in libcamera. Add missing parentheses in the AwbAlgorithm documentation. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
Diffstat (limited to 'src/ipa/libipa/awb.cpp')
-rw-r--r--src/ipa/libipa/awb.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ipa/libipa/awb.cpp b/src/ipa/libipa/awb.cpp
index dc672f12..1adefa5b 100644
--- a/src/ipa/libipa/awb.cpp
+++ b/src/ipa/libipa/awb.cpp
@@ -49,7 +49,7 @@ namespace ipa {
*/
/**
- * \fn AwbStats::computeColourError
+ * \fn AwbStats::computeColourError()
* \brief Compute an error value for when the given gains would be applied
* \param[in] gains The gains to apply
*
@@ -65,7 +65,7 @@ namespace ipa {
*/
/**
- * \fn AwbStats::getRGBMeans
+ * \fn AwbStats::getRGBMeans()
* \brief Get RGB means of the statistics
*
* Fetch the RGB means from the statistics. The values of each channel are
@@ -85,7 +85,7 @@ namespace ipa {
*/
/**
- * \fn AwbAlgorithm::init
+ * \fn AwbAlgorithm::init()
* \brief Initialize the algorithm with the given tuning data
* \param[in] tuningData The tuning data to use for the algorithm
*
@@ -93,7 +93,7 @@ namespace ipa {
*/
/**
- * \fn AwbAlgorithm::calculateAwb
+ * \fn AwbAlgorithm::calculateAwb()
* \brief Calculate AWB data from the given statistics
* \param[in] stats The statistics to use for the calculation
* \param[in] lux The lux value of the scene
@@ -106,7 +106,7 @@ namespace ipa {
*/
/**
- * \fn AwbAlgorithm::gainsFromColourTemperature
+ * \fn AwbAlgorithm::gainsFromColourTemperature()
* \brief Compute white balance gains from a colour temperature
* \param[in] colourTemperature The colour temperature in Kelvin
*
@@ -118,14 +118,14 @@ namespace ipa {
*/
/**
- * \fn AwbAlgorithm::controls
+ * \fn AwbAlgorithm::controls()
* \brief Get the controls info map for this algorithm
*
* \return The controls info map
*/
/**
- * \fn AwbAlgorithm::handleControls
+ * \fn AwbAlgorithm::handleControls()
* \param[in] controls The controls to handle
* \brief Handle the controls supplied in a request
*/