[7/9] libcamera: software_isp: Add an example CCM to uncalibrated.yaml
diff mbox series

Message ID 20241120180104.1221846-8-mzamazal@redhat.com
State New
Headers show
Series
  • Software ISP support for CCM
Related show

Commit Message

Milan Zamazal Nov. 20, 2024, 6:01 p.m. UTC
For performance reasons, color correction matrix (CCM) is not applied by
default in software ISP.  But let's add a commented out example how to
define it to the default tuning file.

Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
---
 src/ipa/simple/data/uncalibrated.yaml | 7 +++++++
 1 file changed, 7 insertions(+)

Patch
diff mbox series

diff --git a/src/ipa/simple/data/uncalibrated.yaml b/src/ipa/simple/data/uncalibrated.yaml
index 3f1471121..8df3cd4ea 100644
--- a/src/ipa/simple/data/uncalibrated.yaml
+++ b/src/ipa/simple/data/uncalibrated.yaml
@@ -5,6 +5,13 @@  version: 1
 algorithms:
   - BlackLevel:
   - Awb:
+  # Color correction matrices can be defined here:
+  # - Ccm:
+  #     ccms:
+  #       - ct: 6500
+  #         ccm: [ 1, 0, 0,
+  #                0, 1, 0,
+  #                0, 0, 1]
   - Lut:
   - Agc:
 ...