Rev | Author | Line No. | Line |
---|---|---|---|
178 | kaklik | 1 | #ifndef COLOUR_SENSITIVITY_H |
2 | #define COLOUR_SENSITIVITY_H |
||
3 | |||
4 | /// Factor for red in RGB to grayscale conversion. |
||
5 | #define SENSITIVITY_RED 0.3086 |
||
6 | /// Factor for green in RGB to grayscale conversion. |
||
7 | #define SENSITIVITY_GREEN 0.6094 |
||
8 | /// Factor for blue in RGB to grayscale conversion. |
||
9 | #define SENSITIVITY_BLUE 0.0820 |
||
10 | |||
11 | #endif |