DetectedFace.landmarks Property¶
Module: DetectedFace
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 id3DetectedFace_GetLandmarks (ID3_DETECTED_FACE hDetectedFace, ID3_FACE_POINT_LIST hLandmarks)
int id3DetectedFace_SetLandmarks (ID3_DETECTED_FACE hDetectedFace, ID3_FACE_POINT_LIST hLandmarks)
Returns