@the-horizon-dev/fast-face-detection
Version:
Fast face detection package using TensorFlow.js MediaPipe models for browser and Node.js environments
13 lines (12 loc) • 382 B
TypeScript
/**
* @file Core module index file
*
* This file exports the main algorithmic components of the face detection library.
* These core classes handle the main functionality including:
* - The main FaceAPI interface
* - Face detection algorithms
* - Facial landmark detection
*/
export * from './face-api';
export * from './face-detector';
export * from './landmark-detector';