PolarInterpolationMethod

Description

Possible pixel interpolation methods for polar transform:

Values of this enumeration:

  • Linear - Bilinear interpolation.
  • Nearest - Nearest neighbour interpolation. It is the simplest and fastest method.
  • Cubic - Bicubic interpolation.
  • Area - Pixel area interpolation.
  • Lanczos4 - Lanczos interpolation over 8x8 neighbourhood.

namespace PolarInterpolationMethod
{
	enum Type
	{
		Linear,
		Nearest,
		Cubic,
		Area,
		Lanczos4
	};
}