[v7,0/3] ipa: rkisp1: Add crosstalk algorithm
mbox series

Message ID 20240611140207.520083-1-paul.elder@ideasonboard.com
Headers show
Series
  • ipa: rkisp1: Add crosstalk algorithm
Related show

Message

Paul Elder June 11, 2024, 2:02 p.m. UTC
This patch series adds the crosstalk / color correction algorithm to
the rkisp1 IPA.

Interpolating matrices is likely to be a common functionaily, as lens
shading correction also does it, and other IPAs will will want to do
both color correction and lens shading correction. Because of this, the
crosstalk is implemented using a generic matrix interpolator, which is
added to libipa, in addition to a Matrix class.

v3 mainly adds ccm offsets, and some fixes some initialization and
asserts.

v4 cleans up / optimizes the Matrix class and supports the reorganized
tuning file layout for color correction matrices.

v5 mainly adds documentation, as well as a simple cache to the matrix
interpolator.

v6 fixes documentation (again).

v7 fixes offsets initialization and adds ccm to metadata, as well as
copyright and licenses, as these classes weren't actually copied.

Paul Elder (3):
  ipa: libipa: Add Matrix class
  ipa: libipa: Add MatrixInterpolator class
  ipa: rkisp1: algorithms: Add crosstalk algorithm

 src/ipa/libipa/matrix.cpp              | 123 ++++++++++++++++++
 src/ipa/libipa/matrix.h                | 172 +++++++++++++++++++++++++
 src/ipa/libipa/matrix_interpolator.cpp | 110 ++++++++++++++++
 src/ipa/libipa/matrix_interpolator.h   | 124 ++++++++++++++++++
 src/ipa/libipa/meson.build             |   4 +
 src/ipa/rkisp1/algorithms/ccm.cpp      | 140 ++++++++++++++++++++
 src/ipa/rkisp1/algorithms/ccm.h        |  50 +++++++
 src/ipa/rkisp1/algorithms/meson.build  |   1 +
 src/ipa/rkisp1/ipa_context.h           |   5 +
 9 files changed, 729 insertions(+)
 create mode 100644 src/ipa/libipa/matrix.cpp
 create mode 100644 src/ipa/libipa/matrix.h
 create mode 100644 src/ipa/libipa/matrix_interpolator.cpp
 create mode 100644 src/ipa/libipa/matrix_interpolator.h
 create mode 100644 src/ipa/rkisp1/algorithms/ccm.cpp
 create mode 100644 src/ipa/rkisp1/algorithms/ccm.h