DetectedFace.create Method¶
Module: DetectedFace
Definition¶
Creates a detected face.
@staticmethod
create(bounds: Rectangle, detection_score: int, id: int, landmarks: PointList) -> DetectedFace
Parameters
Returns
The newly created detected face.
Exceptions
An error has occurred during Face Library execution.
static DetectedFace create(Rectangle bounds, int detectionScore, int id, PointList landmarks)
Parameters
Returns
The newly created detected face.
Exceptions
An error has occurred during Face Library execution.
public static DetectedFace Create(Rectangle bounds, int detectionScore, int id, PointList landmarks)
Parameters
Returns
The newly created detected face.
Exceptions
An error has occurred during Face Library execution.
public static DetectedFace create(Rectangle bounds, int detectionScore, int id, PointList landmarks) throws FaceException
Parameters
Returns
The newly created detected face.
Exceptions
An error has occurred during Face Library execution.
public static func create(bounds: Rectangle, detectionScore: Int32, id: Int32, landmarks: PointList) throws -> DetectedFace
Parameters
Returns
The newly created detected face.
Exceptions
An error has occurred during Face Library execution.
int id3DetectedFace_Create (
ID3_DETECTED_FACE hDetectedFace,
const id3FaceRectangle * sBounds,
int detectionScore,
int id,
ID3_FACE_POINT_LIST hLandmarks)
Parameters
hDetectedFace
ID3_DETECTED_FACEin Handle to the DetectedFace object.sBounds
const id3FaceRectangle *in Bounds of the detected face.detectionScore
intin Confidence score of the detected face.id
intin ID of the detected face.hLandmarks
ID3_FACE_POINT_LISTin Landmarks (eyes, nose and mouth corners) of the detected face.
Returns