NonMaximaMethod

Description

Defines the way non-maxima are detected.

Values of this enumeration:

  • Interpolated - Checks one precise direction, interpolating pixel values.
  • Nearest - Checks the nearest of the four basic direction: horizontal, vertical and two diagonals.
  • Double - Checks the two nearest of the four basic directions.
  • Quadruple - Checks the two nearest of the four basic directions, but also not straight.

namespace NonMaximaMethod
{
	enum Type
	{
		Interpolated,
		Nearest,
		Double,
		Quadruple
	};
}