http://www.emgu.com Create a HSV color using the specific values
Namespace:
Emgu.CV.Structure
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Hsv(
double hue,
double satuation,
double value
)
Public Sub New (
hue As Double,
satuation As Double,
value As Double
)
public:
Hsv(
double hue,
double satuation,
double value
)
new :
hue : float *
satuation : float *
value : float -> Hsv
Parameters
- hue
- Type: SystemDouble
The hue value for this color ( 0 < hue < 180 ) - satuation
- Type: SystemDouble
The satuation value for this color - value
- Type: SystemDouble
The value for this color
See Also