/* SPDX-License-Identifier: BSD-2-Clause */ /* * Copyright (C) 2019, Raspberry Pi (Trading) Limited * * black_level.hpp - black level control algorithm */ #pragma once #include "../algorithm.hpp" #include "../black_level_status.h" // This is our implementation of the "black level algorithm". namespace RPiController { class BlackLevel : public Algorithm { public: BlackLevel(Controller *controller); char const *Name() const override; void Read(boost::property_tree::ptree const ¶ms) override; void Prepare(Metadata *image_metadata) override; private: double black_level_r_; double black_level_g_; double black_level_b_; }; } // namespace RPiController era.git/'>libcamera/libcamera.git
libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/gstreamer/gstlibcamerapad.h
blob: 779f2d13887a62650a5935f0c0cf1e549355a1f8 (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
33
34
35
36
37