Property SLMedian.TSLMedian.Mask
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLMedian
Contents |
Syntax
Delphi:
property Mask : Integer read FMask write SetMask default 3;
C++ Builder:
__property int Mask = { read=FMask, write=SetMask, default=3 };
Summary
The Median Mask Size.
Description
Use this property to specify the Median Mask Size.
Median mask size, must be a positive integer. If an even value is specified, the function subtracts 1 and uses the odd value of the filter mask for median filtering.
Delphi example:
SLMedian1.Mask := 3;
C++ Builder example:
SLMedian1->Mask = 3;
Visual C++(MFC) example:
SLMedian1.Mask = 3;
C# example:
median1.Mask = 3;