EnumQRCodeErrorCorrectionLevel
EnumQRCodeErrorCorrectionLevel describes the error correction level when processing the QR code.
namespace Dynamsoft.BarcodeReader.Maui
{
public enum EnumQRCodeErrorCorrectionLevel : int
{
/**Error Correction Level H (high) */
QRECL_ERROR_CORRECTION_H = 0,
/**Error Correction Level L (low) */
QRECL_ERROR_CORRECTION_L = 1,
/**Error Correction Level M (medium-low) */
QRECL_ERROR_CORRECTION_M = 2,
/**Error Correction Level Q (medium-high) */
QRECL_ERROR_CORRECTION_Q = 3
}
}