2017-01-06 14:25:55 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Color transformation to adjust the saturation and value of a RGB color value
|
|
|
|
///
|
|
|
|
class RgbTransform
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
/// Default constructor
|
|
|
|
///
|
|
|
|
RgbTransform();
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Constructor
|
|
|
|
///
|
|
|
|
/// @param gammaR The used red gamma
|
|
|
|
/// @param gammaG The used green gamma
|
|
|
|
/// @param gammab The used blue gamma
|
2017-02-11 22:52:47 +01:00
|
|
|
/// @param backlightThreshold The used lower brightness
|
|
|
|
/// @param backlightColored use color in backlight
|
2017-01-06 14:25:55 +01:00
|
|
|
/// @param brightnessHigh The used higher brightness
|
|
|
|
///
|
2017-02-11 22:52:47 +01:00
|
|
|
RgbTransform(double gammaR, double gammaG, double gammaB, double backlightThreshold, bool backlightColored, double brightnessHigh);
|
2017-01-06 14:25:55 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Destructor
|
|
|
|
///
|
|
|
|
~RgbTransform();
|
|
|
|
|
|
|
|
/// @return The current red gamma value
|
|
|
|
double getGammaR() const;
|
|
|
|
|
|
|
|
/// @return The current green gamma value
|
|
|
|
double getGammaG() const;
|
|
|
|
|
|
|
|
/// @return The current blue gamma value
|
|
|
|
double getGammaB() const;
|
|
|
|
|
2017-02-11 22:52:47 +01:00
|
|
|
/// @param gammaR New red gamma value
|
|
|
|
/// @param gammaG New green gamma value
|
|
|
|
/// @param gammaB New blue gamma value
|
2017-01-06 14:25:55 +01:00
|
|
|
void setGamma(double gammaR,double gammaG=-1, double gammaB=-1);
|
|
|
|
|
|
|
|
/// @return The current lower brightness
|
2017-02-11 22:52:47 +01:00
|
|
|
double getBacklightThreshold() const;
|
2017-01-06 14:25:55 +01:00
|
|
|
|
2017-02-11 22:52:47 +01:00
|
|
|
/// @param backlightThreshold New lower brightness
|
|
|
|
void setBacklightThreshold(double backlightThreshold);
|
2017-01-06 14:25:55 +01:00
|
|
|
|
2017-02-11 22:52:47 +01:00
|
|
|
/// @return The current state
|
|
|
|
bool getBacklightColored() const;
|
|
|
|
|
|
|
|
/// @param backlightColored en/disable colored backlight
|
|
|
|
void setBacklightColored(bool backlightColored);
|
|
|
|
|
|
|
|
/// @return return state of backlight
|
|
|
|
bool getBackLightEnabled() const;
|
|
|
|
|
|
|
|
/// @param enable en/disable backlight
|
|
|
|
void setBackLightEnabled(bool enable);
|
|
|
|
|
|
|
|
|
|
|
|
/// @return The current brightness
|
2017-01-06 14:25:55 +01:00
|
|
|
double getBrightness() const;
|
|
|
|
|
2017-02-11 22:52:47 +01:00
|
|
|
/// @param brightness New brightness
|
2017-01-06 14:25:55 +01:00
|
|
|
void setBrightness(double brightness);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Apply the transform the the given RGB values.
|
|
|
|
///
|
|
|
|
/// @param red The red color component
|
|
|
|
/// @param green The green color component
|
|
|
|
/// @param blue The blue color component
|
|
|
|
///
|
|
|
|
/// @note The values are updated in place.
|
|
|
|
///
|
|
|
|
void transform(uint8_t & red, uint8_t & green, uint8_t & blue);
|
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
/// init
|
|
|
|
///
|
|
|
|
/// @param gammaR The used red gamma
|
|
|
|
/// @param gammaG The used green gamma
|
|
|
|
/// @param gammab The used blue gamma
|
2017-02-11 22:52:47 +01:00
|
|
|
/// @param backlightThreshold The used lower brightness
|
|
|
|
/// @param backlightColored en/disable color in backlight
|
2017-01-06 14:25:55 +01:00
|
|
|
/// @param brightnessHigh The used higher brightness
|
|
|
|
///
|
2017-02-11 22:52:47 +01:00
|
|
|
void init(double gammaR, double gammaG, double gammaB, double backlightThreshold, bool backlightColored, double brightnessHigh);
|
2017-01-06 14:25:55 +01:00
|
|
|
|
|
|
|
/// (re)-initilize the color mapping
|
|
|
|
void initializeMapping(); /// The saturation gain
|
|
|
|
|
2017-02-11 22:52:47 +01:00
|
|
|
double _backlightThreshold;
|
|
|
|
bool _backlightColored;
|
2017-01-06 14:25:55 +01:00
|
|
|
double _brightnessHigh;
|
|
|
|
double _sumBrightnessLow;
|
|
|
|
double _sumBrightnessHigh;
|
|
|
|
|
|
|
|
double _gammaR;
|
|
|
|
double _gammaG;
|
|
|
|
double _gammaB;
|
|
|
|
|
|
|
|
/// The mapping from input color to output color
|
|
|
|
uint8_t _mappingR[256];
|
|
|
|
uint8_t _mappingG[256];
|
|
|
|
uint8_t _mappingB[256];
|
2017-02-11 22:52:47 +01:00
|
|
|
|
|
|
|
bool _backLightEnabled;
|
2017-01-06 14:25:55 +01:00
|
|
|
};
|