libcamera v0.2.0+3-c630fdf5-nvm
Supporting cameras in Linux since 2019
Loading...
Searching...
No Matches
debayer_params.h
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2023, Red Hat Inc.
4 *
5 * Authors:
6 * Hans de Goede <hdegoede@redhat.com>
7 *
8 * swstats.h - software statistics base class
9 */
10
11#pragma once
12
13namespace libcamera {
14
24 unsigned int gainR;
30 unsigned int gainG;
36 unsigned int gainB;
40 float gamma;
41};
42
43} /* namespace libcamera */
Top-level libcamera namespace.
Definition backtrace.h:17
Struct to hold the debayer parameters.
Definition debayer_params.h:18
float gamma
Gamma correction, 1.0 is no correction.
Definition debayer_params.h:40
unsigned int gainG
Green Gain.
Definition debayer_params.h:30
unsigned int gainR
Red Gain.
Definition debayer_params.h:24
unsigned int gainB
Blue Gain.
Definition debayer_params.h:36