11 lines
No EOL
559 B
JavaScript
11 lines
No EOL
559 B
JavaScript
import { SsdMobilenetv1Options } from '../ssdMobilenetv1/SsdMobilenetv1Options';
|
|
import { DetectAllFacesTask, DetectSingleFaceTask } from './DetectFacesTasks';
|
|
export function detectSingleFace(input, options) {
|
|
if (options === void 0) { options = new SsdMobilenetv1Options(); }
|
|
return new DetectSingleFaceTask(input, options);
|
|
}
|
|
export function detectAllFaces(input, options) {
|
|
if (options === void 0) { options = new SsdMobilenetv1Options(); }
|
|
return new DetectAllFacesTask(input, options);
|
|
}
|
|
//# sourceMappingURL=detectFaces.js.map
|