DetectedFace.getExpandedBounds Method¶
Module: DetectedFace
Definition¶
Gets the bounding box around the detected face with specified aspect ratio and specified margin.
get_expanded_bounds(self, aspect_ratio: float, margin: float) -> Rectangle
Parameters
aspect_ratiofloatin Aspect ratio of the bounding box. Default recommended value is 1.33 (4/3).marginfloatin Relative margin around the detected face. Recommended value is 0.5.
Returns
The portrait bounds.
Exceptions
An error has occurred during Face Library execution.
Rectangle getExpandedBounds(double aspectRatio, double margin)
Parameters
aspectRatiodoublein Aspect ratio of the bounding box. Default recommended value is 1.33 (4/3).margindoublein Relative margin around the detected face. Recommended value is 0.5.
Returns
The portrait bounds.
Exceptions
An error has occurred during Face Library execution.
public Rectangle GetExpandedBounds(float aspectRatio, float margin)
Parameters
aspectRatiofloatin Aspect ratio of the bounding box. Default recommended value is 1.33 (4/3).marginfloatin Relative margin around the detected face. Recommended value is 0.5.
Returns
The portrait bounds.
Exceptions
An error has occurred during Face Library execution.
public Rectangle getExpandedBounds(float aspectRatio, float margin) throws FaceException
Parameters
aspectRatiofloatin Aspect ratio of the bounding box. Default recommended value is 1.33 (4/3).marginfloatin Relative margin around the detected face. Recommended value is 0.5.
Returns
The portrait bounds.
Exceptions
An error has occurred during Face Library execution.
public func getExpandedBounds(aspectRatio: Float, margin: Float) throws -> Rectangle
Parameters
aspectRatioFloatin Aspect ratio of the bounding box. Default recommended value is 1.33 (4/3).marginFloatin Relative margin around the detected face. Recommended value is 0.5.
Returns
The portrait bounds.
Exceptions
An error has occurred during Face Library execution.
int id3DetectedFace_GetExpandedBounds (
ID3_DETECTED_FACE hDetectedFace,
float aspectRatio,
float margin,
id3FaceRectangle * sPortraitBounds)
Parameters
hDetectedFaceID3_DETECTED_FACEin Handle to the DetectedFace object.aspectRatiofloatin Aspect ratio of the bounding box. Default recommended value is 1.33 (4/3).marginfloatin Relative margin around the detected face. Recommended value is 0.5.sPortraitBoundsid3FaceRectangle *out The portrait bounds.
Returns