18 lines
966 B
JavaScript
18 lines
966 B
JavaScript
![]() |
import { SsdMobilenetv1Options } from '../ssdMobilenetv1';
|
||
|
import { TinyYolov2Options } from '../tinyYolov2';
|
||
|
import { detectAllFaces } from './detectFaces';
|
||
|
// export allFaces API for backward compatibility
|
||
|
export async function allFacesSsdMobilenetv1(input, minConfidence) {
|
||
|
console.warn('allFacesSsdMobilenetv1 is deprecated and will be removed soon, use the high level api instead');
|
||
|
return await detectAllFaces(input, new SsdMobilenetv1Options(minConfidence ? { minConfidence } : {}))
|
||
|
.withFaceLandmarks()
|
||
|
.withFaceDescriptors();
|
||
|
}
|
||
|
export async function allFacesTinyYolov2(input, forwardParams = {}) {
|
||
|
console.warn('allFacesTinyYolov2 is deprecated and will be removed soon, use the high level api instead');
|
||
|
return await detectAllFaces(input, new TinyYolov2Options(forwardParams))
|
||
|
.withFaceLandmarks()
|
||
|
.withFaceDescriptors();
|
||
|
}
|
||
|
export const allFaces = allFacesSsdMobilenetv1;
|
||
|
//# sourceMappingURL=allFaces.js.map
|