DetectedFaceList.findDetectedFace Method¶
Module: DetectedFaceList
Definition¶
Finds a detected face by ID.
find_detected_face(self, id: int) -> DetectedFace
Parameters
idintin 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
idintin 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
idintin 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
idintin 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
idInt32in 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
hDetectedFaceListID3_DETECTED_FACE_LISTin Handle to the DetectedFaceList object.idintin ID of the detected face to find in the list.hDetectedFaceID3_DETECTED_FACEout The found detected face.
Returns