Drive Engine  1.0.0
Plateforme de reconstruction 3D
IColor.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "IDatatype.h"
6 
7 namespace DriveEngine
8 {
10  class IColor : public IDatatype
11  {
12  public:
24  virtual float GetRed() const = 0;
25 
37  virtual float GetBlue() const = 0;
38 
50  virtual float GetGreen() const = 0;
51 
62  virtual float GetIntensity() const = 0;
63  };
64 }
virtual float GetRed() const =0
Gets the red composant value. If the pixel is gray scaled, return the intensity.
virtual float GetBlue() const =0
Gets the blue composant value. If the pixel is gray scaled, return the intensity. ...
virtual float GetIntensity() const =0
Gets the intensity.
Definition: DefaultCalibrationInfoList.h:12
The color datatype interface.
Definition: IColor.h:10
virtual float GetGreen() const =0
Gets the green composant value. If the pixel is gray scaled, return the intensity.
The datatype interface.
Definition: IDatatype.h:18