9861678f23
Use the new ISP parameters abstraction class RkISP1Params to access the ISP parameters in the IPA algorithms. The class replaces the pointer to the rkisp1_params_cfg structure passed to the algorithms' prepare() function, and is used to access individual parameters blocks. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
39 lines
863 B
C++
39 lines
863 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2021-2022, Ideas On Board
|
|
*
|
|
* RkISP1 Denoise Pre-Filter control
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "algorithm.h"
|
|
|
|
namespace libcamera {
|
|
|
|
namespace ipa::rkisp1::algorithms {
|
|
|
|
class Dpf : public Algorithm
|
|
{
|
|
public:
|
|
Dpf();
|
|
~Dpf() = default;
|
|
|
|
int init(IPAContext &context, const YamlObject &tuningData) override;
|
|
void queueRequest(IPAContext &context, const uint32_t frame,
|
|
IPAFrameContext &frameContext,
|
|
const ControlList &controls) override;
|
|
void prepare(IPAContext &context, const uint32_t frame,
|
|
IPAFrameContext &frameContext,
|
|
RkISP1Params *params) override;
|
|
|
|
private:
|
|
struct rkisp1_cif_isp_dpf_config config_;
|
|
struct rkisp1_cif_isp_dpf_strength_config strengthConfig_;
|
|
};
|
|
|
|
} /* namespace ipa::rkisp1::algorithms */
|
|
} /* namespace libcamera */
|