CodePolarity

Description

Determines which pixel values will be interpreted as foreground modules.

Values of this enumeration:

  • Bright - Foreground modules are brighter than background.
  • Dark - Foreground modules are darker than background.
  • Any - Code reader will attempt to read both bright and dark foreground.
  • Mixed - There are bright and dark spots within a single module.

namespace CodePolarity
{
	enum Type
	{
		Bright,
		Dark,
		Any,
		Mixed
	};
}