summaryrefslogtreecommitdiff
path: root/src/ipa/rpi/controller/rpi/black_level.h
blob: d8c41c62131c25c230d80c59e52c66fa9e8d30d7 (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
 *
 * black_level.h - black level control algorithm
 */
#pragma once

#include "../black_level_algorithm.h"
#include "../black_level_status.h"

/* This is our implementation of the "black level algorithm". */

namespace RPiController {

class BlackLevel : public BlackLevelAlgorithm
{
public:
	BlackLevel(Controller *controller);
	char const *name() const override;
	int read(const libcamera::YamlObject &params) override;
	void initialValues(uint16_t &blackLevelR, uint16_t &blackLevelG,
			   uint16_t &blackLevelB) override;
	void prepare(Metadata *imageMetadata) override;

private:
	double blackLevelR_;
	double blackLevelG_;
	double blackLevelB_;
};

} /* namespace RPiController */