FingerMatcher.minutiaPatchOnly Property¶
Module: FingerMatcher
Type: bool
Definition¶
Parameter to force the matcher to use minutia patch data only to perform template comparison.
By default, the matcher uses all the data contained in templates to compare them.
minutia_patch_only: bool
Exceptions
An error has occurred during Finger Library execution.
bool get minutiaPatchOnly => getMinutiaPatchOnly();
set minutiaPatchOnly(bool value) => setMinutiaPatchOnly(value);
Exceptions
An error has occurred during Finger Library execution.
public bool minutiaPatchOnly
{
get => GetminutiaPatchOnly();
set => SetminutiaPatchOnly(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public boolean getMinutiaPatchOnly() throws FingerException
public void setMinutiaPatchOnly(boolean minutiaPatchOnly) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var minutiaPatchOnly: Bool
get {
return try! getMinutiaPatchOnly()
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3FingerMatcher_GetMinutiaPatchOnly (ID3_FINGER_MATCHER hFingerMatcher, bool * minutiaPatchOnly)
int id3FingerMatcher_SetMinutiaPatchOnly (ID3_FINGER_MATCHER hFingerMatcher, bool minutiaPatchOnly)
Returns