Skip to content

Commit c9cb7a0

Browse files
check in latest build
1 parent 21085a3 commit c9cb7a0

32 files changed

+114
-93
lines changed

build/commonjs/globalApi/DetectFacesTasks.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { FaceDetection } from '../classes/FaceDetection';
33
import { ComposableTask } from './ComposableTask';
44
import { DetectAllFaceLandmarksTask, DetectSingleFaceLandmarksTask } from './DetectFaceLandmarksTasks';
55
import { FaceDetectionOptions } from './types';
6-
export declare function detectSingleFace(input: TNetInput, options?: FaceDetectionOptions): DetectSingleFaceTask;
7-
export declare function detectAllFaces(input: TNetInput, options?: FaceDetectionOptions): DetectAllFacesTask;
86
export declare class DetectFacesTaskBase<TReturn> extends ComposableTask<TReturn> {
97
protected input: TNetInput;
108
protected options: FaceDetectionOptions;

build/commonjs/globalApi/DetectFacesTasks.js

Lines changed: 0 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/globalApi/DetectFacesTasks.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/globalApi/allFaces.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/globalApi/allFaces.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { TNetInput } from 'tfjs-image-recognition-base';
2+
import { DetectAllFacesTask, DetectSingleFaceTask } from './DetectFacesTasks';
3+
import { FaceDetectionOptions } from './types';
4+
export declare function detectSingleFace(input: TNetInput, options?: FaceDetectionOptions): DetectSingleFaceTask;
5+
export declare function detectAllFaces(input: TNetInput, options?: FaceDetectionOptions): DetectAllFacesTask;

build/commonjs/globalApi/detectFaces.js

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/globalApi/detectFaces.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/globalApi/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export * from './allFaces';
22
export * from './ComposableTask';
33
export * from './ComputeFaceDescriptorsTasks';
4+
export * from './detectFaces';
45
export * from './DetectFacesTasks';
56
export * from './DetectFaceLandmarksTasks';
67
export * from './FaceMatcher';

build/commonjs/globalApi/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/globalApi/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/index.d.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import * as tf from '@tensorflow/tfjs-core';
22
export { tf };
33
export * from 'tfjs-image-recognition-base';
4-
export * from './classes';
5-
export * from './dom';
4+
export * from './classes/index';
5+
export * from './dom/index';
6+
export * from './faceLandmarkNet/index';
7+
export * from './faceRecognitionNet/index';
8+
export * from './globalApi/index';
9+
export * from './mtcnn/index';
10+
export * from './ssdMobilenetv1/index';
11+
export * from './tinyFaceDetector/index';
12+
export * from './tinyYolov2/index';
613
export * from './euclideanDistance';
7-
export * from './faceLandmarkNet';
8-
export * from './faceRecognitionNet';
9-
export * from './globalApi';
10-
export * from './mtcnn';
11-
export * from './ssdMobilenetv1';
12-
export * from './tinyFaceDetector';
13-
export * from './tinyYolov2';

build/commonjs/index.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/commonjs/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/es6/globalApi/DetectFacesTasks.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { FaceDetection } from '../classes/FaceDetection';
33
import { ComposableTask } from './ComposableTask';
44
import { DetectAllFaceLandmarksTask, DetectSingleFaceLandmarksTask } from './DetectFaceLandmarksTasks';
55
import { FaceDetectionOptions } from './types';
6-
export declare function detectSingleFace(input: TNetInput, options?: FaceDetectionOptions): DetectSingleFaceTask;
7-
export declare function detectAllFaces(input: TNetInput, options?: FaceDetectionOptions): DetectAllFacesTask;
86
export declare class DetectFacesTaskBase<TReturn> extends ComposableTask<TReturn> {
97
protected input: TNetInput;
108
protected options: FaceDetectionOptions;

build/es6/globalApi/DetectFacesTasks.js

Lines changed: 0 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)