diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-06-19 20:47:36 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-06-29 17:21:13 +0300 |
commit | f2869a41674e2dd920be548669196e08d42e4596 (patch) | |
tree | 4da3d7a8ac74fc5c105ee3ceca6271d24b14a798 /src/ipa/rkisp1/data | |
parent | ad57d2c51d3fa0bbdb28f704cc01a035b96dee32 (diff) |
ipa: rkisp1: Add IMX219 tuning file
Add a skeleton for the IMX219 tuning file, with data for the BLC
algorithm.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Diffstat (limited to 'src/ipa/rkisp1/data')
-rw-r--r-- | src/ipa/rkisp1/data/imx219.yaml | 13 | ||||
-rw-r--r-- | src/ipa/rkisp1/data/meson.build | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/ipa/rkisp1/data/imx219.yaml b/src/ipa/rkisp1/data/imx219.yaml new file mode 100644 index 00000000..232d8ae8 --- /dev/null +++ b/src/ipa/rkisp1/data/imx219.yaml @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: CC0-1.0 +%YAML 1.2 +--- +version: 1 +algorithms: + - Agc: + - Awb: + - BlackLevelCorrection: + R: 256 + Gr: 256 + Gb: 256 + B: 256 +... diff --git a/src/ipa/rkisp1/data/meson.build b/src/ipa/rkisp1/data/meson.build index e5b94596..53ef7fe2 100644 --- a/src/ipa/rkisp1/data/meson.build +++ b/src/ipa/rkisp1/data/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 conf_files = files([ + 'imx219.yaml', 'uncalibrated.yaml', ]) |