Mask to apply.
Namespace:
AForge.Imaging.FiltersAssembly: AForge.Imaging (in AForge.Imaging.dll) Version: 2.2.5.0 (2.2.5.0)
Syntax
C# |
---|
public byte[,] Mask { get; set; } |
Remarks
The property specifies mask array to use. Size of the array must
be the same size as the size of the source image to process - its 0th dimension
must be equal to image's height and its 1st dimension must be equal to width. For
example, for 640x480 image, the mask array must be defined as:
CopyC#
byte[,] mask = new byte[480, 640];