2020-08-18 14:04:33 +02:00
|
|
|
import { FaceDetection } from '../classes/FaceDetection';
|
|
|
|
import { TNetInput } from '../dom';
|
2020-08-26 00:24:48 +02:00
|
|
|
import { SsdMobilenetv1Options } from '../ssdMobilenetv1/SsdMobilenetv1Options';
|
2020-08-18 14:04:33 +02:00
|
|
|
import { TinyFaceDetectorOptions } from '../tinyFaceDetector/TinyFaceDetectorOptions';
|
2020-08-26 00:24:48 +02:00
|
|
|
import { TinyYolov2Options } from '../tinyYolov2';
|
|
|
|
export declare type FaceDetectionOptions = TinyFaceDetectorOptions | SsdMobilenetv1Options | TinyYolov2Options;
|
2020-08-18 14:04:33 +02:00
|
|
|
export declare type FaceDetectionFunction = (input: TNetInput) => Promise<FaceDetection[]>;
|
2020-08-21 15:01:04 +02:00
|
|
|
//# sourceMappingURL=types.d.ts.map
|