Create a BGRA color using the specific values

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Bgra(
	double blue,
	double green,
	double red,
	double alpha
)
Public Sub New ( _
	blue As Double, _
	green As Double, _
	red As Double, _
	alpha As Double _
)
public:
Bgra(
	double blue, 
	double green, 
	double red, 
	double alpha
)

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
alpha
Double
The alpha value for this color

See Also