Enum VLCommonFilter.TVLFixedMaskSize
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.
Package: VideoLabBasicPkg
Unit: VLCommonFilter
Contents |
Syntax
Delphi:
type TVLFixedMaskSize = (fms3x3, fms5x5);
C++ Builder:
enum TVLFixedMaskSize {fms3x3, fms5x5};
Visual C++ (MFC):
enum CTVLFixedMaskSize {fms3x3, fms5x5};
Summary
Mask Size enumeration.
Description
Size of the mask to be used for the filter operation of a TVLFixedFilter.
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
Values
fms3x3 | 3x3 pixels fixed mask. |
fms5x5 | 5x5 pixels fixed mask. |