DetectedFaceList.findDetectedFace Method¶
Module: DetectedFaceList
Definition¶
Finds a detected face by ID.
find_detected_face(self, id: int) -> DetectedFace
Parameters
id
intin ID of the detected face to find in the list.
Returns
The found detected face.
Exceptions
An error has occurred during Face Library execution.
DetectedFace findDetectedFace(int id)
Parameters
id
intin ID of the detected face to find in the list.
Returns
The found detected face.
Exceptions
An error has occurred during Face Library execution.
public DetectedFace FindDetectedFace(int id)
Parameters
id
intin ID of the detected face to find in the list.
Returns
The found detected face.
Exceptions
An error has occurred during Face Library execution.
public DetectedFace findDetectedFace(int id) throws FaceException
Parameters
id
intin ID of the detected face to find in the list.
Returns
The found detected face.
Exceptions
An error has occurred during Face Library execution.
public func findDetectedFace(id: Int32) throws -> DetectedFace
Parameters
id
Int32in ID of the detected face to find in the list.
Returns
The found detected face.
Exceptions
An error has occurred during Face Library execution.
int id3DetectedFaceList_FindDetectedFace (
ID3_DETECTED_FACE_LIST hDetectedFaceList,
int id,
ID3_DETECTED_FACE hDetectedFace)
Parameters
hDetectedFaceList
ID3_DETECTED_FACE_LISTin Handle to the DetectedFaceList object.id
intin ID of the detected face to find in the list.hDetectedFace
ID3_DETECTED_FACEout The found detected face.
Returns