DetectedFinger.detectionScore Property¶
Module: DetectedFinger
Type: int
Definition¶
Confidence score of the detected finger.
detection_score: int
Exceptions
An error has occurred during Finger Library execution.
int get detectionScore => getDetectionScore();
set detectionScore(int value) => setDetectionScore(value);
Exceptions
An error has occurred during Finger Library execution.
public int detectionScore
{
get => GetdetectionScore();
set => SetdetectionScore(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public int getDetectionScore() throws FingerException
public void setDetectionScore(int detectionScore) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var detectionScore: Int
get {
return Int(try! getDetectionScore())
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3DetectedFinger_GetDetectionScore (ID3_DETECTED_FINGER hDetectedFinger, int * detectionScore)
int id3DetectedFinger_SetDetectionScore (ID3_DETECTED_FINGER hDetectedFinger, int detectionScore)
Returns