forceReadMrzBeforeLocate property

bool? get forceReadMrzBeforeLocate

This option can be set to true to make sure that in series processing MRZ is located fully inside the result document image, if present on the document. Enabling this option may add extra processing time, by disabling optimizations, but allows more stability in output image quality.

Implementation

bool? get forceReadMrzBeforeLocate => _forceReadMrzBeforeLocate;
set forceReadMrzBeforeLocate (bool? val)

Implementation

set forceReadMrzBeforeLocate(bool? val) {
  _forceReadMrzBeforeLocate = val;
  _set({"forceReadMrzBeforeLocate": val});
}