Property VLFixedFilter.TVLFixedFilter.FilterType

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.

Class: TVLFixedFilter

Contents

Syntax

Delphi:

property FilterType : TVLFixedFilterType read FFilterType write SetFilterType default ftPrewittHoriz;

C++ Builder:

__property TVLFixedFilterType FilterType = { read=FFilterType, write=SetFilterType, default=ftPrewittHoriz };

Summary

The filter type.

Description

Use this property to specify the operation to perform over the frame image : ftPrewittHoriz, ftPrewittVert, ftSobelHoriz, ftSobelVert, ftRobertsDown, ftRobertsUp, ftLaplace, ftGauss, ftHipass, ftLowpass, ftSharpen, ftMedianCross, ftMedianColor


Delphi example:

VLFixedFilter1.FilterType := ftHipass;

C++ Builder example:

VLFixedFilter1->FilterType = ftHipass;

Visual C++(MFC) example:

VLFixedFilter1.FilterType = ftHipass;

Visual C++/CLI example:

fixedFilter1->FilterType = Mitov::VideoLab::FixedFilterType::Hipass;

C# example:

fixedFilter1.FilterType = Mitov.VideoLab.FixedFilterType.Hipass;

VB example:

FixedFilter1.FilterType = Mitov.VideoLab.FixedFilterType.Hipass

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox