FaceTracker.matchThreshold Property¶
Module: FaceTracker
Type: int
Definition¶
Minimum match score to reach to preserve the ID of a tracked face between frame ‘t-1’ and frame ‘t’.
Hint
Default value is 3000 which corresponds to a False Match Rate of 1/1000.
int get matchThreshold => getMatchThreshold();
set matchThreshold(int value) => setMatchThreshold(value);
Exceptions
An error has occurred during Face Library execution.
public int matchThreshold
{
get => GetmatchThreshold();
set => SetmatchThreshold(ref value);
}
Exceptions
An error has occurred during Face Library execution.
public int getMatchThreshold() throws FaceException
public void setMatchThreshold(int matchThreshold) throws FaceException
Exceptions
An error has occurred during Face Library execution.
public var matchThreshold: Int
get {
return Int(try! getMatchThreshold())
}
}
Exceptions
An error has occurred during Face Library execution.
int id3FaceTracker_GetMatchThreshold (ID3_FACE_TRACKER hFaceTracker, int * matchThreshold)
int id3FaceTracker_SetMatchThreshold (ID3_FACE_TRACKER hFaceTracker, int matchThreshold)
Returns