easyproctor
Version:
Modulo web de gravação do EasyProctor
16 lines (15 loc) • 544 B
TypeScript
import IParamsConfig from "../interfaces/ParamsConfig";
import { BaseDetection } from "./BaseDetection";
export declare class FaceDetection extends BaseDetection {
constructor(options?: {
onRealtimeAlertsCallback?: (response: any) => void;
}, paramsConfig?: IParamsConfig, classVideo?: string, classDiv?: string);
displayVideoDetections(result: {
detections: any;
}): void;
numFacesSent: number;
emmitedPositionAlert: boolean;
verify(result: {
detections: any;
}): void;
}