38 lines
863 B
C++
38 lines
863 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2025 Vasiliy Doylov <nekodevelopper@gmail.com>
|
|
*
|
|
* Debayer statistic controls
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "algorithm.h"
|
|
|
|
namespace libcamera {
|
|
|
|
namespace ipa::soft::algorithms {
|
|
|
|
class Stat : public Algorithm
|
|
{
|
|
public:
|
|
Stat();
|
|
~Stat() = default;
|
|
|
|
int init(IPAContext &context, const YamlObject &tuningData) override;
|
|
int configure(IPAContext &context, const IPAConfigInfo &configInfo) override;
|
|
void queueRequest(typename Module::Context &context,
|
|
const uint32_t frame,
|
|
typename Module::FrameContext &frameContext,
|
|
const ControlList &controls)
|
|
override;
|
|
void prepare(IPAContext &context,
|
|
const uint32_t frame,
|
|
IPAFrameContext &frameContext,
|
|
DebayerParams *params) override;
|
|
|
|
};
|
|
|
|
} /* namespace ipa::soft::algorithms */
|
|
|
|
} /* namespace libcamera */
|