mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
* Rename test to test123 * Delete test123 * New color Ajustment Trilinear interpolation between the 8 corners of the color cube (black, red, green, blue, cyan, magenta, yellow, white) * Renaming * overloading getadjustmentX() * Renaming * Additional renaming * Added more RgbChannel * Added more colors to channelAdjustment * Added additional colors * Added additional colors * Added additional colors * Added additional color adjustments * Update MultiColorAdjustment.cpp * Fixed black adjustment * Color config in array form
33 lines
874 B
C++
33 lines
874 B
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <string>
|
|
|
|
// Utils includes
|
|
#include <utils/RgbChannelAdjustment.h>
|
|
|
|
class ColorAdjustment
|
|
{
|
|
public:
|
|
|
|
/// Unique identifier for this color transform
|
|
std::string _id;
|
|
|
|
/// The BLACK (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbBlackAdjustment;
|
|
/// The WHITE (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbWhiteAdjustment;
|
|
/// The RED (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbRedAdjustment;
|
|
/// The GREEN (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbGreenAdjustment;
|
|
/// The BLUE (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbBlueAdjustment;
|
|
/// The CYAN (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbCyanAdjustment;
|
|
/// The MAGENTA (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbMagentaAdjustment;
|
|
/// The YELLOW (RGB-Channel) adjustment
|
|
RgbChannelAdjustment _rgbYellowAdjustment;
|
|
};
|