DataMatrixDistortionLevel

Description

Distortion of the code grid

Values of this enumeration:

  • None - For fast detection of codes without distortion, without perspective
  • Low - For detection of codes with straight sides (but it is the most robust option for incomplete or contaminated code patterns).
  • Medium - For detection of codes with bent or curved sides.
  • High - For detection of codes with complex distortions (but the print must be clear and complete).

namespace DataMatrixDistortionLevel
{
	enum Type
	{
		None,
		Low,
		Medium,
		High
	};
}