Enum VLCommonFilter.TVLInterpolationType
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.
Package: VideoLabBasicPkg
Unit: VLCommonFilter
Contents |
Syntax
Delphi:
type TVLInterpolationType = (itNearestNeighbor, itLinear, itCubic, itSuper, itLankzos);
C++ Builder:
enum TVLInterpolationType {itNearestNeighbor, itLinear, itCubic, itSuper, itLankzos};
Visual C++ (MFC):
enum CTVLInterpolationType {itNearestNeighbor, itLinear, itCubic, itSuper, itLankzos};
Summary
Enumerated type for the interpolation type to be used for the geometric transformations.
Description
Defines enumerated type for the interpolation type to be used for the geometric transformations.
Values
| itNearestNeighbor | Nearest neighbor interpolation to be used. |
| itLinear | Linear interpolation to be used. |
| itCubic | Cubic interpolation to be used. |
| itSuper | Super interpolation to be used. |
| itLankzos | Lankzos interpolation to be used. |