diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-08-02 03:26:20 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2022-08-09 22:46:19 +0300 |
commit | 639d14e5d3e8be39961abf9d2f74c428f454965f (patch) | |
tree | 46958591e781db775bcd28e266dc34bed69a9262 /src/ipa | |
parent | 56555b22c3b0f7d2cba398fb1adfd026abf11617 (diff) |
ipa: ipu3: Add an uncalibrated.yaml tuning data file
Add a tuning data file for uncalibrated sensors, picked by the pipeline
handler when no sensor-specific tuning file is available. The file lists
the 5 algorithms currently instantiated by the IPA module.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/ipa')
-rw-r--r-- | src/ipa/ipu3/data/meson.build | 8 | ||||
-rw-r--r-- | src/ipa/ipu3/data/uncalibrated.yaml | 11 | ||||
-rw-r--r-- | src/ipa/ipu3/meson.build | 1 |
3 files changed, 20 insertions, 0 deletions
diff --git a/src/ipa/ipu3/data/meson.build b/src/ipa/ipu3/data/meson.build new file mode 100644 index 00000000..1f50b630 --- /dev/null +++ b/src/ipa/ipu3/data/meson.build @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: CC0-1.0 + +conf_files = files([ + 'uncalibrated.yaml', +]) + +install_data(conf_files, + install_dir : ipa_data_dir / 'ipu3') diff --git a/src/ipa/ipu3/data/uncalibrated.yaml b/src/ipa/ipu3/data/uncalibrated.yaml new file mode 100644 index 00000000..794ab3ed --- /dev/null +++ b/src/ipa/ipu3/data/uncalibrated.yaml @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: CC0-1.0 +%YAML 1.1 +--- +version: 1 +algorithms: + - Af: + - Agc: + - Awb: + - BlackLevelCorrection: + - ToneMapping: +... diff --git a/src/ipa/ipu3/meson.build b/src/ipa/ipu3/meson.build index 3194111a..658e7c9b 100644 --- a/src/ipa/ipu3/meson.build +++ b/src/ipa/ipu3/meson.build @@ -1,6 +1,7 @@ # SPDX-License-Identifier: CC0-1.0 subdir('algorithms') +subdir('data') ipa_name = 'ipa_ipu3' |