TrackedFaceList.findTrackedFace Method¶
Module: TrackedFaceList
Definition¶
Finds a tracked face by ID.
find_tracked_face(self, id: int) -> TrackedFace
Parameters
id
intin 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
id
intin 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
id
intin 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
id
intin 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
id
Int32in 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
hTrackedFaceList
ID3_TRACKED_FACE_LISTin Handle to the TrackedFaceList object.id
intin ID of the tracked face to find in the list.hTrackedFace
ID3_TRACKED_FACEout The found tracked face.
Returns