2020-08-31 15:12:04 +02:00
|
|
|
import * as tf from '@tensorflow/tfjs-core';
|
|
|
|
import * as draw from './draw';
|
|
|
|
import * as utils from './utils';
|
2020-09-08 18:26:51 +02:00
|
|
|
export { draw, utils, tf };
|
2020-08-31 15:12:04 +02:00
|
|
|
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';
|
2020-09-08 18:26:51 +02:00
|
|
|
export declare const version: {
|
|
|
|
faceapi: string;
|
2020-09-09 15:50:10 +02:00
|
|
|
node: string | boolean;
|
|
|
|
browser: string | boolean;
|
|
|
|
tfjs: string;
|
|
|
|
backend: string;
|
2020-09-08 18:26:51 +02:00
|
|
|
};
|
2020-08-31 15:12:04 +02:00
|
|
|
//# sourceMappingURL=index.d.ts.map
|