Polarity

Description

Determines which pixel values will be taken under consideration in processing in edge detection related operations.

Values of this enumeration:

  • Bright - Pixel with high values is considered as bright.
  • Dark - Pixel with low values is considered as dark.
  • Any - Bright pixels and dark pixels will be both considered in results.

namespace Polarity
{
	enum Type
	{
		Bright,
		Dark,
		Any
	};
}