UNPKG

@vladmandic/face-api

Version:

FaceAPI: AI-powered Face Detection & Rotation Tracking, Face Description & Recognition, Age & Gender & Emotion Prediction for Browser and NodeJS using TensorFlow/JS

26 lines (25 loc) 820 B
import * as tf from '../dist/tfjs.esm'; import * as draw from './draw/index'; import * as utils from './utils/index'; export { tf, draw, utils }; export * from './ageGenderNet/index'; export * from './classes/index'; export * from './dom/index'; export * from './env/index'; export * from './faceExpressionNet/index'; export * from './faceLandmarkNet/index'; export * from './faceRecognitionNet/index'; export * from './factories/index'; export * from './globalApi/index'; export * from './ops/index'; export * from './ssdMobilenetv1/index'; export * from './tinyFaceDetector/index'; export * from './tinyYolov2/index'; export * from './euclideanDistance'; export * from './NeuralNetwork'; export * from './resizeResults'; export declare const version: { faceapi: string; node: boolean; browser: boolean; };