diff options
author | Florian Sylvestre <fsylvestre@baylibre.com> | 2022-07-27 10:38:19 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-07-28 14:55:04 +0300 |
commit | 5b07fa200334bd4932f7b0506cc38bd331ca84f4 (patch) | |
tree | e79fdd0a43acb18dd2c34c6d60bebd1ccaa4492a /src/ipa/rkisp1/ipa_context.cpp | |
parent | 7a80e01b4ab3f8982fbbbd1746025da2dc5e1390 (diff) |
ipa: rkisp1: Add support of ColorProcessing control
Add ColorProcessing algorithm that is in charge to manage brightness,
contrast and saturation controls. These controls are currently based on
user controls.
Signed-off-by: Florian Sylvestre <fsylvestre@baylibre.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/ipa/rkisp1/ipa_context.cpp')
-rw-r--r-- | src/ipa/rkisp1/ipa_context.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ipa/rkisp1/ipa_context.cpp b/src/ipa/rkisp1/ipa_context.cpp index 4b117186..ef8bb8e9 100644 --- a/src/ipa/rkisp1/ipa_context.cpp +++ b/src/ipa/rkisp1/ipa_context.cpp @@ -137,6 +137,23 @@ namespace libcamera::ipa::rkisp1 { */ /** + * \var IPAFrameContext::cproc + * \brief Context for the Color Processing algorithm + * + * \struct IPAFrameContext::cproc.brightness + * \brief Brightness level + * + * \var IPAFrameContext::cproc.contrast + * \brief Contrast level + * + * \var IPAFrameContext::cproc.saturation + * \brief Saturation level + * + * \var IPAFrameContext::cproc.updateParams + * \brief Indicates if ISP parameters need to be updated + */ + +/** * \var IPAFrameContext::filter * \brief Context for the Filter algorithm * |