summaryrefslogtreecommitdiff
path: root/src/ipa/rpi/controller/rpi/noise.h
blob: 74c31e640c3f41b0b06b2335faaa72aa03e58d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (C) 2019, Raspberry Pi Ltd
 *
 * noise.h - Noise control algorithm
 */
#pragma once

#include "../algorithm.h"
#include "../noise_status.h"

/* This is our implementation of the "noise algorithm". */

namespace RPiController {

class Noise : public Algorithm
{
public:
	Noise(Controller *controller);
	char const *name() const override;
	void switchMode(CameraMode const &cameraMode, Metadata *metadata) override;
	int read(const libcamera::YamlObject &params) override;
	void prepare(Metadata *imageMetadata) override;

private:
	/* the noise profile for analogue gain of 1.0 */
	double referenceConstant_;
	double referenceSlope_;
	double modeFactor_;
};

} /* namespace RPiController */