libcamera v0.6.0
Supporting cameras in Linux since 2019
Loading...
Searching...
No Matches
swisp_stats.h
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2023, Linaro Ltd
4 *
5 * Statistics data format used by the software ISP and software IPA
6 */
7
8#pragma once
9
10#include <array>
11#include <stdint.h>
12
13namespace libcamera {
14
22struct SwIspStats {
27 bool valid;
31 uint64_t sumR_;
35 uint64_t sumG_;
39 uint64_t sumB_;
43 static constexpr unsigned int kYHistogramSize = 64;
47 using Histogram = std::array<uint32_t, kYHistogramSize>;
52};
53
54} /* namespace libcamera */
Top-level libcamera namespace.
Definition backtrace.h:17
Struct that holds the statistics for the Software ISP.
Definition swisp_stats.h:22
bool valid
True if the statistics buffer contains valid data, false if no statistics were generated for this fra...
Definition swisp_stats.h:27
std::array< uint32_t, kYHistogramSize > Histogram
Type of the histogram.
Definition swisp_stats.h:47
uint64_t sumR_
Holds the sum of all sampled red pixels.
Definition swisp_stats.h:31
Histogram yHistogram
A histogram of luminance values.
Definition swisp_stats.h:51
uint64_t sumB_
Holds the sum of all sampled blue pixels.
Definition swisp_stats.h:39
static constexpr unsigned int kYHistogramSize
Number of bins in the yHistogram.
Definition swisp_stats.h:43
uint64_t sumG_
Holds the sum of all sampled green pixels.
Definition swisp_stats.h:35