fastDocDetect property

bool? fastDocDetect

When enabled, shorten the list of candidates to process during document detection in single image process mode. Reduces processing time for specific backgrounds.

Implementation

bool? get fastDocDetect => _fastDocDetect;
void fastDocDetect=(bool? val)

Implementation

set fastDocDetect(bool? val) {
  _fastDocDetect = val;
  _setProcessParams({"fastDocDetect": val}, this);
}