EdgeFilter

Description

Determines which method is used to compute image gradients.

Values of this enumeration:

  • Canny - Standard, non-recursive filter.
  • Deriche - Recursive method, modified version of Cannys filter.
  • Lanser - Recursive method.

namespace EdgeFilter
{
	enum Type
	{
		Canny,
		Deriche,
		Lanser
	};
}