Create a BGR 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 Bgr(
	double blue,
	double green,
	double red
)
Visual Basic (Declaration)
Public Sub New ( _
	blue As Double, _
	green As Double, _
	red As Double _
)
Visual C++
public:
Bgr(
	double blue, 
	double green, 
	double red
)

Parameters

blue
Type: System..::.Double
The blue value for this color
green
Type: System..::.Double
The green value for this color
red
Type: System..::.Double
The red value for this color

See Also