Property VLCommonFilter.TVLCommonROISizeFilter.InterpolationType
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: TVLCommonROISizeFilter
Contents |
Syntax
Delphi:
property InterpolationType : TVLInterpolationType read FInterpolationType write SetInterpolationType default itCubic;
C++ Builder:
__property TVLInterpolationType InterpolationType = { read=FInterpolationType, write=SetInterpolationType, default=itCubic };
Summary
Desired type of interpolation to be used.
Description
Use this property to specify the type of interpolation to be
used.
Delphi example:
VLRotate1.InterpolationType := itCubic;
C++ Builder example:
VLRotate1->InterpolationType = itCubic;
Visual C++(MFC) example:
VLRotate1.InterpolationType = itCubic;
Visual C++/CLI example:
rotate1->InterpolationType = Mitov::VideoLab::InterpolationType::Cubic;
C# example:
rotate1.InterpolationType = Mitov.VideoLab.InterpolationType.Cubic;
VB example:
Rotate1.InterpolationType = Mitov.VideoLab.InterpolationType.Cubic