mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
826b964bf6
Former-commit-id: ebdb0688b47d51bd6dccf6dafd580d3ce9ed80a7
27 lines
573 B
C++
27 lines
573 B
C++
#pragma once
|
|
|
|
// STL includes
|
|
#include <string>
|
|
|
|
// Utils includes
|
|
#include <utils/RgbChannelTransform.h>
|
|
#include <utils/HsvTransform.h>
|
|
|
|
class ColorTransform
|
|
{
|
|
public:
|
|
|
|
/// Unique identifier for this color transform
|
|
std::string _id;
|
|
|
|
/// The RED-Channel (RGB) transform
|
|
RgbChannelTransform _rgbRedTransform;
|
|
/// The GREEN-Channel (RGB) transform
|
|
RgbChannelTransform _rgbGreenTransform;
|
|
/// The BLUE-Channel (RGB) transform
|
|
RgbChannelTransform _rgbBlueTransform;
|
|
|
|
/// The HSV Transform for applying Saturation and Value transforms
|
|
HsvTransform _hsvTransform;
|
|
};
|