UNPKG

face-api.js

Version:

JavaScript API for face detection and face recognition in the browser with tensorflow.js

8 lines (7 loc) 237 B
import * as tf from '@tensorflow/tfjs-core'; import { ONetParams } from './types'; export declare function ONet(x: tf.Tensor4D, params: ONetParams): { scores: tf.Tensor1D; regions: tf.Tensor2D; points: tf.Tensor2D; };