InterpolationMethod

Description

Possible pixel interpolation methods:

Values of this enumeration:

  • NearestNeighbour - Simple and fast method.
  • Bilinear - Computationally expensive, but more precise than NearestNeighbour.

namespace InterpolationMethod
{
	enum Type
	{
		NearestNeighbour,
		Bilinear
	};
}