9 #define HISTOGRAM_MODES 4
10 #define HISTOGRAM_RED 0
11 #define HISTOGRAM_GREEN 1
12 #define HISTOGRAM_BLUE 2
13 #define HISTOGRAM_VALUE 3
15 // Number of divisions in histogram.
16 // 65536 + min and max range to speed up the tabulation
17 #define HISTOGRAM_SLOTS 0x13333
18 #define FLOAT_RANGE 1.2
19 // Minimum value in percentage
20 #define HISTOGRAM_MIN -10
21 #define MIN_INPUT -0.1
22 // Maximum value in percentage
23 #define HISTOGRAM_MAX 110
26 #define PRECISION 0.001
28 #define THRESHOLD_SCALE 1000
33 class HistogramEngine;