ded9004e91
Add new CAC, HDR, Saturation and Tonemapping algorithms. Add a new Denoise algorithm that handles spatial/temporal/colour denoise through one interface. With this change, the old SDN algorithm is now considered deprecated and a warning message will be displayed if it is enabled. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
36 lines
808 B
Meson
36 lines
808 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
rpi_ipa_controller_sources = files([
|
|
'algorithm.cpp',
|
|
'controller.cpp',
|
|
'device_status.cpp',
|
|
'histogram.cpp',
|
|
'pwl.cpp',
|
|
'rpi/af.cpp',
|
|
'rpi/agc.cpp',
|
|
'rpi/agc_channel.cpp',
|
|
'rpi/alsc.cpp',
|
|
'rpi/awb.cpp',
|
|
'rpi/black_level.cpp',
|
|
'rpi/cac.cpp',
|
|
'rpi/ccm.cpp',
|
|
'rpi/contrast.cpp',
|
|
'rpi/denoise.cpp',
|
|
'rpi/dpc.cpp',
|
|
'rpi/geq.cpp',
|
|
'rpi/hdr.cpp',
|
|
'rpi/lux.cpp',
|
|
'rpi/noise.cpp',
|
|
'rpi/saturation.cpp',
|
|
'rpi/sdn.cpp',
|
|
'rpi/sharpen.cpp',
|
|
'rpi/tonemap.cpp',
|
|
])
|
|
|
|
rpi_ipa_controller_deps = [
|
|
libcamera_private,
|
|
]
|
|
|
|
rpi_ipa_controller_lib = static_library('rpi_ipa_controller', rpi_ipa_controller_sources,
|
|
dependencies : rpi_ipa_controller_deps)
|