You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/api/types/Face.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@ import * as Hume from "..";
6
6
7
7
exportinterfaceFace{
8
8
/** Number of frames per second to process. Other frames will be omitted from the response. Set to `0` to process every frame. */
9
-
fps_pred?: number;
9
+
fpsPred?: number;
10
10
/** Face detection probability threshold. Faces detected with a probability less than this threshold will be omitted from the response. */
11
-
prob_threshold?: number;
11
+
probThreshold?: number;
12
12
/** Whether to return identifiers for faces across frames. If `true`, unique identifiers will be assigned to face bounding boxes to differentiate different faces. If `false`, all faces will be tagged with an `unknown` ID. */
13
-
identify_faces?: boolean;
13
+
identifyFaces?: boolean;
14
14
/** Minimum bounding box side length in pixels to treat as a face. Faces detected with a bounding box side length in pixels less than this threshold will be omitted from the response. */
15
-
min_face_size?: number;
15
+
minFaceSize?: number;
16
16
facs?: Hume.Empty;
17
17
descriptions?: Hume.Empty;
18
18
/** Whether to extract and save the detected faces in the artifacts zip created by each job. */
* Whether to return identifiers for faces across frames. If true, unique identifiers will be assigned to face bounding boxes to differentiate different faces. If false, all faces will be tagged with an "unknown" ID.
18
18
*
19
19
*/
20
-
identify_faces?: boolean;
20
+
identifyFaces?: boolean;
21
21
/**
22
22
* Number of frames per second to process. Other frames will be omitted from the response.
23
23
*
24
24
*/
25
-
fps_pred?: number;
25
+
fpsPred?: number;
26
26
/**
27
27
* Face detection probability threshold. Faces detected with a probability less than this threshold will be omitted from the response.
28
28
*
29
29
*/
30
-
prob_threshold?: number;
30
+
probThreshold?: number;
31
31
/**
32
32
* Minimum bounding box side length in pixels to treat as a face. Faces detected with a bounding box side length in pixels less than this threshold will be omitted from the response.
0 commit comments