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>
36 lines
787 B
C++
36 lines
787 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2021-2022, Ideas On Board
|
|
*
|
|
* RkISP1 Gamma Sensor Linearization control
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "algorithm.h"
|
|
|
|
namespace libcamera {
|
|
|
|
namespace ipa::rkisp1::algorithms {
|
|
|
|
class GammaSensorLinearization : public Algorithm
|
|
{
|
|
public:
|
|
GammaSensorLinearization();
|
|
~GammaSensorLinearization() = default;
|
|
|
|
int init(IPAContext &context, const YamlObject &tuningData) override;
|
|
void prepare(IPAContext &context, const uint32_t frame,
|
|
IPAFrameContext &frameContext,
|
|
RkISP1Params *params) override;
|
|
|
|
private:
|
|
uint32_t gammaDx_[2];
|
|
std::vector<uint16_t> curveYr_;
|
|
std::vector<uint16_t> curveYg_;
|
|
std::vector<uint16_t> curveYb_;
|
|
};
|
|
|
|
} /* namespace ipa::rkisp1::algorithms */
|
|
} /* namespace libcamera */
|