2020-08-18 14:04:33 +02:00
|
|
|
import { FaceDetection } from '../classes/FaceDetection';
|
|
|
|
import { FaceLandmarks } from '../classes/FaceLandmarks';
|
|
|
|
import { FaceLandmarks68 } from '../classes/FaceLandmarks68';
|
|
|
|
import { WithFaceDetection } from './WithFaceDetection';
|
|
|
|
export declare type WithFaceLandmarks<TSource extends WithFaceDetection<{}>, TFaceLandmarks extends FaceLandmarks = FaceLandmarks68> = TSource & {
|
|
|
|
landmarks: TFaceLandmarks;
|
|
|
|
unshiftedLandmarks: TFaceLandmarks;
|
|
|
|
alignedRect: FaceDetection;
|
|
|
|
};
|
|
|
|
export declare function isWithFaceLandmarks(obj: any): obj is WithFaceLandmarks<WithFaceDetection<{}>, FaceLandmarks>;
|
|
|
|
export declare function extendWithFaceLandmarks<TSource extends WithFaceDetection<{}>, TFaceLandmarks extends FaceLandmarks = FaceLandmarks68>(sourceObj: TSource, unshiftedLandmarks: TFaceLandmarks): WithFaceLandmarks<TSource, TFaceLandmarks>;
|
2020-08-21 15:01:04 +02:00
|
|
|
//# sourceMappingURL=WithFaceLandmarks.d.ts.map
|