libcamera v0.3.2
Supporting cameras in Linux since 2019
Loading...
Searching...
No Matches
histogram.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-2-Clause */
2/*
3 * Copyright (C) 2019, Raspberry Pi Ltd
4 *
5 * histogram calculation interface
6 */
7
8#pragma once
9
10#include <limits.h>
11#include <stdint.h>
12#include <type_traits>
13#include <vector>
14
15#include <libcamera/base/span.h>
17
18namespace libcamera {
19
20namespace ipa {
21
23{
24public:
25 Histogram() { cumulative_.push_back(0); }
26 Histogram(Span<const uint32_t> data);
27
28 template<typename Transform,
29 std::enable_if_t<std::is_invocable_v<Transform, uint32_t>> * = nullptr>
30 Histogram(Span<const uint32_t> data, Transform transform)
31 {
32 cumulative_.resize(data.size() + 1);
33 cumulative_[0] = 0;
34 for (const auto &[i, value] : utils::enumerate(data))
35 cumulative_[i + 1] = cumulative_[i] + transform(value);
36 }
37
38 size_t bins() const { return cumulative_.size() - 1; }
39 uint64_t total() const { return cumulative_[cumulative_.size() - 1]; }
40 uint64_t cumulativeFrequency(double bin) const;
41 double quantile(double q, uint32_t first = 0, uint32_t last = UINT_MAX) const;
42 double interQuantileMean(double lowQuantile, double hiQuantile) const;
43
44private:
45 std::vector<uint64_t> cumulative_;
46};
47
48} /* namespace ipa */
49
50} /* namespace libcamera */
The base class for creating histograms.
Definition histogram.h:23
Histogram()
Construct an empty Histogram.
Definition histogram.h:25
size_t bins() const
Retrieve the number of bins currently used by the Histogram.
Definition histogram.h:38
double quantile(double q, uint32_t first=0, uint32_t last=UINT_MAX) const
Return the (fractional) bin of the point through the histogram.
Definition histogram.cpp:105
uint64_t cumulativeFrequency(double bin) const
Cumulative frequency up to a (fractional) point in a bin.
Definition histogram.cpp:82
uint64_t total() const
Retrieve the total number of values in the data set.
Definition histogram.h:39
Histogram(Span< const uint32_t > data, Transform transform)
Create a cumulative histogram.
Definition histogram.h:30
double interQuantileMean(double lowQuantile, double hiQuantile) const
Calculate the mean between two quantiles.
Definition histogram.cpp:142
Top-level libcamera namespace.
Definition backtrace.h:17
Transform
Enum to represent a 2D plane transform.
Definition transform.h:14
Miscellaneous utility functions.