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-5
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
-
fpsPred?: number;
9
+
fps_pred?: number;
10
10
/** Face detection probability threshold. Faces detected with a probability less than this threshold will be omitted from the response. */
11
-
probThreshold?: number;
11
+
prob_threshold?: 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
-
identifyFaces?: boolean;
13
+
identify_faces?: 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
-
minFaceSize?: number;
15
+
min_face_size?: 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. */
Copy file name to clipboardExpand all lines: src/api/types/FaceModelConfig.ts
+5-5
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
* Note: Using the `reset_stream` parameter does not have any effect on face identification. A single face identifier cache is maintained over a full session whether `reset_stream` is used or not.
9
9
*
10
10
*/
11
-
exportinterfaceModelsInputModelsFace{
11
+
exportinterfaceFaceModelConfig{
12
12
/** Configuration for FACS predictions. If missing or null, no FACS predictions will be generated. */
13
13
facs?: Record<string,unknown>;
14
14
/** Configuration for Descriptions predictions. If missing or null, no Descriptions predictions will be generated. */
* 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
-
identifyFaces?: boolean;
20
+
identify_faces?: 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
-
fpsPred?: number;
25
+
fps_pred?: 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
-
probThreshold?: number;
30
+
prob_threshold?: 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.
Copy file name to clipboardExpand all lines: src/api/types/Language.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ import * as Hume from "..";
7
7
exportinterfaceLanguage{
8
8
granularity?: Hume.Granularity;
9
9
/** Whether to return identifiers for speakers over time. If `true`, unique identifiers will be assigned to spoken words to differentiate different speakers. If `false`, all speakers will be tagged with an `unknown` ID. */
* Note: Using the `reset_stream` parameter does not have any effect on face identification. A single face identifier cache is maintained over a full session whether `reset_stream` is used or not.
0 commit comments