|
BayerFilterBayerPattern Property
|
Specifies Bayer pattern used for decoding color image.
Namespace:
Accord.Imaging.Filters
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntaxpublic int[,] BayerPattern { get; set; }
Public Property BayerPattern As Integer(,)
Get
Set
Request Example
View SourceProperty Value
Type:
Int32
RemarksThe property specifies 2x2 array of RGB color indexes, which set the
Bayer patter used for decoding color image.
By default the property is set to:
new int[2, 2] { { RGB.G, RGB.R }, { RGB.B, RGB.G } }
,
which corresponds to
pattern.
See Also