summaryrefslogtreecommitdiff
path: root/include/libcamera/internal/software_isp/swisp_stats.h
blob: 4ca8d6479b7fb6aa04f6f0d53478a5c886bd1412 (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
38
39
40
41
42
43
44
45
46
47
48
49
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2023, Linaro Ltd
 *
 * swisp_stats.h - Statistics data format used by the software ISP and software IPA
 */

#pragma once

#include <array>
#include <stdint.h>

namespace libcamera {

/**
 * \brief Struct that holds the statistics for the Software ISP
 *
 * The struct value types are large enough to not overflow.
 * Should they still overflow for some reason, no check is performed and they
 * wrap around.
 */
struct SwIspStats {
	/**
	 * \brief Holds the sum of all sampled red pixels
	 */
	uint64_t sumR_;
	/**
	 * \brief Holds the sum of all sampled green pixels
	 */
	uint64_t sumG_;
	/**
	 * \brief Holds the sum of all sampled blue pixels
	 */
	uint64_t sumB_;
	/**
	 * \brief Number of bins in the yHistogram
	 */
	static constexpr unsigned int kYHistogramSize = 64;
	/**
	 * \brief Type of the histogram.
	 */
	using Histogram = std::array<uint32_t, kYHistogramSize>;
	/**
	 * \brief A histogram of luminance values
	 */
	Histogram yHistogram;
};

} /* namespace libcamera */