[libcamera-devel,0/3] Add DPF tuning support for RkISP1
mbox series

Message ID 20220804141228.417211-1-fsylvestre@baylibre.com
Headers show
Series
  • Add DPF tuning support for RkISP1
Related show

Message

Florian Sylvestre Aug. 4, 2022, 2:12 p.m. UTC
This series of patches adds support for RkISP1 De-noise Pre-Filter algorithm
control. (patch 3/3)
The De-noise Pre-Filter configuration is dependent on the activation of AWB and
LSC, then an enable variable in the awb (patch 1/3) and lsc (patch 2/3)
structure in IPASessionConfiguration has been added.

Florian Sylvestre (3):
  ipa: rkisp1: Add enable field for AWB algorithm in IPA context
  ipa: rkisp1: Add enable field for LSC algorithm in IPA context
  ipa: rkisp1: Add support of De-noise Pre-Filter control

 src/ipa/rkisp1/algorithms/awb.cpp     |   2 +
 src/ipa/rkisp1/algorithms/dpf.cpp     | 279 ++++++++++++++++++++++++++
 src/ipa/rkisp1/algorithms/dpf.h       |  36 ++++
 src/ipa/rkisp1/algorithms/lsc.cpp     |  10 +
 src/ipa/rkisp1/algorithms/lsc.h       |   1 +
 src/ipa/rkisp1/algorithms/meson.build |   1 +
 src/ipa/rkisp1/data/ov5640.yaml       |  11 +
 src/ipa/rkisp1/ipa_context.cpp        |  23 +++
 src/ipa/rkisp1/ipa_context.h          |  10 +
 9 files changed, 373 insertions(+)
 create mode 100644 src/ipa/rkisp1/algorithms/dpf.cpp
 create mode 100644 src/ipa/rkisp1/algorithms/dpf.h