SatDump 2.0.0-alpha-76a915210
Loading...
Searching...
No Matches
processing.h
Go to the documentation of this file.
1#pragma once
2
7
8#include "image.h"
9
10namespace satdump
11{
12 namespace image
13 {
19 void white_balance(Image &img, float percentileValue = 0.05f);
20
26 void median_blur(Image &img);
27
32 void kuwahara_filter(Image &img);
33
40 void equalize(Image &img, bool per_channel = false);
41
48 void normalize(Image &img);
49
55 void linear_invert(Image &img);
56
63 void simple_despeckle(Image &img, int thresold = 10);
64 } // namespace image
65} // namespace satdump
Definition image.h:17
Core Image class.