http://www.emgu.com Create a BGRA color using the specific values
Namespace:
Emgu.CV.Structure
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic 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
)
new :
blue : float *
green : float *
red : float *
alpha : float -> Bgra
Parameters
- blue
- Type: SystemDouble
The blue value for this color - green
- Type: SystemDouble
The green value for this color - red
- Type: SystemDouble
The red value for this color - alpha
- Type: SystemDouble
The alpha value for this color
See Also