TrackedFace.predictedBounds Property¶
Module: TrackedFace
Type: Rectangle
Definition¶
Predicted bounds of the tracked face. Those bounds are computed using a Kalman filter which has the effect of making them smooth and robust to false non-detections.
predicted_bounds: Rectangle
Exceptions
An error has occurred during Face Library execution.
Rectangle get predictedBounds => getPredictedBounds();
Exceptions
An error has occurred during Face Library execution.
public Rectangle predictedBounds
{
get => GetpredictedBounds();
}
Exceptions
An error has occurred during Face Library execution.
public Rectangle getPredictedBounds() throws FaceException
Exceptions
An error has occurred during Face Library execution.
public var predictedBounds: Rectangle
get {
return try! getPredictedBounds()
}
}
Exceptions
An error has occurred during Face Library execution.
int id3TrackedFace_GetPredictedBounds (ID3_TRACKED_FACE hTrackedFace, id3FaceRectangle * sPredictedBounds)
Returns