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

Parameters

blue
Double
The blue value for this color
green
Double
The green value for this color
red
Double
The red value for this color

See Also