face-api.js
Version:
JavaScript API for face detection and face recognition in the browser with tensorflow.js
8 lines (7 loc) • 320 B
TypeScript
import { BoundingBox, Box, Point } from '../classes';
import { ONetParams } from './types';
export declare function stage3(img: HTMLCanvasElement, inputBoxes: BoundingBox[], scoreThreshold: number, params: ONetParams, stats: any): Promise<{
boxes: Box<any>[];
scores: number[];
points: Point[][];
}>;