TrackedFaceList.findTrackedFace Method¶
Module: TrackedFaceList
Definition¶
Finds a tracked face by ID.
find_tracked_face(self, id: int) -> TrackedFace
Parameters
idintin ID of the tracked face to find in the list.
Returns
The found tracked face.
Exceptions
An error has occurred during Face Library execution.
TrackedFace findTrackedFace(int id)
Parameters
idintin ID of the tracked face to find in the list.
Returns
The found tracked face.
Exceptions
An error has occurred during Face Library execution.
public TrackedFace FindTrackedFace(int id)
Parameters
idintin ID of the tracked face to find in the list.
Returns
The found tracked face.
Exceptions
An error has occurred during Face Library execution.
public TrackedFace findTrackedFace(int id) throws FaceException
Parameters
idintin ID of the tracked face to find in the list.
Returns
The found tracked face.
Exceptions
An error has occurred during Face Library execution.
public func findTrackedFace(id: Int32) throws -> TrackedFace
Parameters
idInt32in ID of the tracked face to find in the list.
Returns
The found tracked face.
Exceptions
An error has occurred during Face Library execution.
int id3TrackedFaceList_FindTrackedFace (
ID3_TRACKED_FACE_LIST hTrackedFaceList,
int id,
ID3_TRACKED_FACE hTrackedFace)
Parameters
hTrackedFaceListID3_TRACKED_FACE_LISTin Handle to the TrackedFaceList object.idintin ID of the tracked face to find in the list.hTrackedFaceID3_TRACKED_FACEout The found tracked face.
Returns