documentAreaMin property
double?
get
documentAreaMin
Specifies minimal area of the image that document should cover to be treated
as candidate when locating. Value should be in range from 0
to 1
,
where 1
is when document should fully cover the image.
Implementation
double? get documentAreaMin => _documentAreaMin;
set
documentAreaMin
(double? val)
Implementation
set documentAreaMin(double? val) {
_documentAreaMin = val;
_set({"documentAreaMin": val});
}