#ifndef COLOUR_SENSITIVITY_H
#define COLOUR_SENSITIVITY_H
/// Factor for red in RGB to grayscale conversion.
#define SENSITIVITY_RED 0.3086
/// Factor for green in RGB to grayscale conversion.
#define SENSITIVITY_GREEN 0.6094
/// Factor for blue in RGB to grayscale conversion.
#define SENSITIVITY_BLUE 0.0820
#endif