DownsampleFunction

Description

Downsampling method used when generating an image pyramid.

Values of this enumeration:

  • Mean - Pixel averaging.
  • Min - Minimum of the four pixels.
  • Max - Maximum of the four pixels

namespace DownsampleFunction
{
	enum Type
	{
		Mean,
		Min,
		Max
	};
}