Create a HSV color using the specific values

Namespace:  Emgu.CV.Structure
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public Hsv(
	double hue,
	double satuation,
	double value
)
Visual Basic (Declaration)
Public Sub New ( _
	hue As Double, _
	satuation As Double, _
	value As Double _
)
Visual C++
public:
Hsv(
	double hue, 
	double satuation, 
	double value
)

Parameters

hue
Type: System..::.Double
The hue value for this color ( 0 < hue < 180 )
satuation
Type: System..::.Double
The satuation value for this color
value
Type: System..::.Double
The value for this color

See Also