TrackedFace.landmarks Property¶
Module: TrackedFace
Type: PointList
Definition¶
Landmarks (eyes, nose and mouth corners) of the detected face.
PointList get landmarks => getLandmarks();
set landmarks(PointList value) => setLandmarks(value);
Exceptions
An error has occurred during Face Library execution.
public PointList landmarks
{
get => Getlandmarks();
set => Setlandmarks(ref value);
}
Exceptions
An error has occurred during Face Library execution.
public PointList getLandmarks() throws FaceException
public void setLandmarks(PointList landmarks) throws FaceException
Exceptions
An error has occurred during Face Library execution.
public var landmarks: PointList
get {
return try! getLandmarks()
}
}
Exceptions
An error has occurred during Face Library execution.
int id3TrackedFace_GetLandmarks (ID3_TRACKED_FACE hTrackedFace, ID3_FACE_POINT_LIST hLandmarks)
int id3TrackedFace_SetLandmarks (ID3_TRACKED_FACE hTrackedFace, ID3_FACE_POINT_LIST hLandmarks)
Returns