SatDump 2.0.0-alpha-520736c72
Loading...
Searching...
No Matches
histogram_utils.h
Go to the documentation of this file.
1#pragma once
2
7
8#include "image.h"
9#include <vector>
10
11namespace satdump
12{
13 namespace image
14 {
15 namespace histogram
16 {
23 std::vector<int> get_histogram(std::vector<int> values, int len);
24
30 std::vector<int> equalize_histogram(std::vector<int> hist);
31
39 std::vector<int> make_hist_match_table(std::vector<int> input_hist, std::vector<int> target_hist, int maxdiff);
40 } // namespace histogram
41 } // namespace image
42} // namespace satdump
Core Image class.