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>
This commit is contained in:
Laurent Pinchart 2022-08-02 03:26:20 +03:00
parent 56555b22c3
commit 639d14e5d3
3 changed files with 20 additions and 0 deletions

View file

@ -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')

View file

@ -0,0 +1,11 @@
# SPDX-License-Identifier: CC0-1.0
%YAML 1.1
---
version: 1
algorithms:
- Af:
- Agc:
- Awb:
- BlackLevelCorrection:
- ToneMapping:
...

View file

@ -1,6 +1,7 @@
# SPDX-License-Identifier: CC0-1.0 # SPDX-License-Identifier: CC0-1.0
subdir('algorithms') subdir('algorithms')
subdir('data')
ipa_name = 'ipa_ipu3' ipa_name = 'ipa_ipu3'