Property VLFixedFilter.TVLFixedFilter.MaskSize
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: TVLFixedFilter
Contents |
Syntax
Delphi:
property MaskSize : TVLFixedMaskSize read FMaskSize write SetMaskSize default fms3x3;
C++ Builder:
__property TVLFixedMaskSize MaskSize = { read=FMaskSize, write=SetMaskSize, default=fms3x3 };
Summary
Size of the mask.
Description
Use this property to specify the size of the mask to be used
for the filter operation. You can use 3x3 or 5x5 pixels mask.
Delphi example:
VLFixedFilter1.MaskSize := fms5x5;
C++ Builder example:
VLFixedFilter1->MaskSize = fms5x5;
Visual C++(MFC) example:
VLFixedFilter1.MaskSize = fms5x5;
Visual C++/CLI example:
fixedFilter1->MaskSize = Mitov::VideoLab::FixedMaskSize::fms5x5;
C# example:
fixedFilter1.MaskSize = Mitov.VideoLab.FixedMaskSize.fms5x5;
VB example:
FixedFilter1.MaskSize = Mitov.VideoLab.FixedMaskSize.fms5x5