FingerMatcher.minexOnly Property¶
Module: FingerMatcher
Type: bool
Definition¶
Parameter to force the matcher to use interoperable minutiae data only to perform template comparison.
By default, the matcher uses all the data contained in templates to compare them.
bool get minexOnly => getMinexOnly();
set minexOnly(bool value) => setMinexOnly(value);
Exceptions
An error has occurred during Finger Library execution.
public bool minexOnly
{
get => GetminexOnly();
set => SetminexOnly(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public boolean getMinexOnly() throws FingerException
public void setMinexOnly(boolean minexOnly) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var minexOnly: Bool
get {
return try! getMinexOnly()
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3FingerMatcher_GetMinexOnly (ID3_FINGER_MATCHER hFingerMatcher, bool * minexOnly)
int id3FingerMatcher_SetMinexOnly (ID3_FINGER_MATCHER hFingerMatcher, bool minexOnly)
Returns