DataMatrixPyramidStrategy

Description

Specifies the step of image downsampling used for finding codes at different scales.

Values of this enumeration:

  • Fast - Images for different scales are created with downsampling step 2.0
  • Precise - Images for different scales are created with downsampling step 1.41
  • Strict - Images for different scales are created with downsampling step 1.26

namespace DataMatrixPyramidStrategy
{
	enum Type
	{
		Fast,
		Precise,
		Strict
	};
}