ResizeMethod

Description

Interpolation method used when image resizing is considered.

Values of this enumeration:

  • NearestNeighbour - The simplest and the fastest method.
  • Bilinear - Precise and fast.
  • Area - The most precise, but computationally expensive.

namespace ResizeMethod
{
	enum Type
	{
		NearestNeighbour,
		Bilinear,
		Area
	};
}