Enum VLFixedFilter.TVLFixedFilterType

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

Unit: VLFixedFilter

Contents

Syntax

Delphi:

type TVLFixedFilterType = (ftPrewittHoriz, ftPrewittVert, ftSobelHoriz, ftSobelVert, ftRobertsDown, ftRobertsUp, ftLaplace, ftGauss, ftHipass, ftLowpass, ftSharpen, ftMedianCross, ftMedianColor);

C++ Builder:

enum TVLFixedFilterType {ftPrewittHoriz, ftPrewittVert, ftSobelHoriz, ftSobelVert, ftRobertsDown, ftRobertsUp, ftLaplace, ftGauss, ftHipass, ftLowpass, ftSharpen, ftMedianCross, ftMedianColor};

Visual C++ (MFC):

enum CTVLFixedFilterType {ftPrewittHoriz, ftPrewittVert, ftSobelHoriz, ftSobelVert, ftRobertsDown, ftRobertsUp, ftLaplace, ftGauss, ftHipass, ftLowpass, ftSharpen, ftMedianCross, ftMedianColor};

Summary

Fixed Filter Operation Type enumeration.

Description

Defines the operation to perform over the frame image in the TVLFixedFilter.


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

Values

ftPrewittHoriz Horizontal Prewitt kernel to be used to filter the image.
ftPrewittVert Vertical Prewitt kernel to be used to filter the image.
ftSobelHoriz Horizontal Sobel kernel to be used to filter the image.
ftSobelVert Vertical Sobel kernel to be used to filter the image.
ftRobertsDown Horizontal Roberts kernel to be used to filter the image.
ftRobertsUp Vertical Roberts kernel to be used to filter the image.
ftLaplace Laplacian kernel to be used to filter the image.
ftGauss Gaussian kernel to be used to filter the image.
ftHipass Highpass filter to be used to filter the image.
ftLowpass Lowpass filter to be used to filter the image.
ftSharpen Sharpening filter to be used to filter the image.
ftMedianCross Median cross filter to be used to filter the image.
ftMedianColor Median color filter to be used to filter the image.
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox