PortraitProcessor.trackerMaximumFaceAge Property¶
Module: PortraitProcessor
Type: int
Definition¶
Maximum number of consecutive non-detections to be reached before deleting a tracked face.
Hint
Default value is 2. One must adapt this value to its needs in terms of tracker identity memory (in seconds) and measured frame rate on target platform.
tracker_maximum_face_age: int
Exceptions
An error has occurred during Face Library execution.
int get trackerMaximumFaceAge => getTrackerMaximumFaceAge();
set trackerMaximumFaceAge(int value) => setTrackerMaximumFaceAge(value);
Exceptions
An error has occurred during Face Library execution.
public int trackerMaximumFaceAge
{
get => GettrackerMaximumFaceAge();
set => SettrackerMaximumFaceAge(ref value);
}
Exceptions
An error has occurred during Face Library execution.
public int getTrackerMaximumFaceAge() throws FaceException
public void setTrackerMaximumFaceAge(int trackerMaximumFaceAge) throws FaceException
Exceptions
An error has occurred during Face Library execution.
public var trackerMaximumFaceAge: Int
get {
return Int(try! getTrackerMaximumFaceAge())
}
}
Exceptions
An error has occurred during Face Library execution.
int id3FacePortraitProcessor_GetTrackerMaximumFaceAge (ID3_FACE_PORTRAIT_PROCESSOR hPortraitProcessor, int * trackerMaximumFaceAge)
int id3FacePortraitProcessor_SetTrackerMaximumFaceAge (ID3_FACE_PORTRAIT_PROCESSOR hPortraitProcessor, int trackerMaximumFaceAge)
Returns