Property VLMorphFilter.TVLMorphFilter.MorphType
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: TVLMorphFilter
Contents |
Syntax
Delphi:
property MorphType : TVLMorphType read FMorphType write SetMorphType;
C++ Builder:
__property TVLMorphType MorphType = { read=FMorphType, write=SetMorphType };
Summary
The Morph type to be used - Erode or Dilate.
Description
Use this property to specify the morph type to be performed
by the filter - Erode or Dilate.
Delphi example:
VLMorphFilter1.MorphType := mtErode;
C++ Builder example:
VLMorphFilter1->MorphType = mtErode;
Visual C++(MFC) example:
VLMorphFilter1.MorphType = mtErode;
Visual C++/CLI example:
morphFilter1->MorphType = Mitov::VideoLab::MorphType::Erode;
C# example:
morphFilter1.MorphType = Mitov.VideoLab.MorphType.Erode;
VB example:
MorphFilter1.MorphType = Mitov.VideoLab.MorphType.Erode