Enum VLMorphFilter.TVLMorphType

From Mitov Wiki Doc
Jump to: navigation, search

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: VideoLabAdditionalPkg

Unit: VLMorphFilter

Contents

Syntax

Delphi:

type TVLMorphType = (mtErode, mtDilate);

C++ Builder:

enum TVLMorphType {mtErode, mtDilate};

Visual C++ (MFC):

enum CTVLMorphType {mtErode, mtDilate};

Summary

Morph types enumeration.

Description

Defines the morph types enumeration.


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

Values

mtErode Erode morph type.
mtDilate Dilate morph type.
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox