Create a Ycc 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 Ycc(
	double y,
	double cr,
	double cb
)
Visual Basic (Declaration)
Public Sub New ( _
	y As Double, _
	cr As Double, _
	cb As Double _
)
Visual C++
public:
Ycc(
	double y, 
	double cr, 
	double cb
)

Parameters

y
Type: System..::.Double
The Y value for this color
cr
Type: System..::.Double
The Cr value for this color
cb
Type: System..::.Double
The Cb value for this color

See Also