FaceLandmarks68.d.ts 393 B

123456789101112
  1. import { FaceLandmarks } from './FaceLandmarks';
  2. import { Point } from './Point';
  3. export declare class FaceLandmarks68 extends FaceLandmarks {
  4. getJawOutline(): Point[];
  5. getLeftEyeBrow(): Point[];
  6. getRightEyeBrow(): Point[];
  7. getNose(): Point[];
  8. getLeftEye(): Point[];
  9. getRightEye(): Point[];
  10. getMouth(): Point[];
  11. protected getRefPointsForAlignment(): Point[];
  12. }