Create a Ycc color using the specific values

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Ycc(
	double y,
	double cr,
	double cb
)
Public Sub New ( _
	y As Double, _
	cr As Double, _
	cb As Double _
)
public:
Ycc(
	double y, 
	double cr, 
	double cb
)

Parameters

y
Double
The Y value for this color
cr
Double
The Cr value for this color
cb
Double
The Cb value for this color

See Also