FaceDetectorOptions.LandmarkMode

  • FaceDetectorOptions.LandmarkMode defines whether to enable face landmarks detection, impacting processing time.

  • It offers two options: LANDMARK_MODE_NONE (disables landmarks) and LANDMARK_MODE_ALL (enables all landmarks).

  • Processing time increases with the number of landmarks to be detected.

  • This annotation inherits methods from java.lang.annotation.Annotation like annotationType(), equals(), hashCode(), and toString().

public static abstract @interface FaceDetectorOptions.LandmarkMode implements Annotation

Defines options to enable face landmarks or not. Processing time increases as the extra face landmark to search.

LandmarkMode constants - enumeration of supported Landmark Mode:

  1. FaceDetectorOptions.LANDMARK_MODE_NONE
  2. FaceDetectorOptions.LANDMARK_MODE_ALL

Inherited Method Summary