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
description: "A unique tag associated with a liveness transaction session. Used to identify and delete the corresponding transaction."
38
+
schema:
39
+
type: string
33
40
34
41
responses:
35
42
BadLicense:
@@ -51,13 +58,13 @@ components:
51
58
onlyCentralFace:
52
59
type: boolean
53
60
description: "Whether to process only the central face in the image. If set to `false`, all the faces are processed."
54
-
example: false
61
+
example: true
55
62
outputImageParams:
56
63
$ref: "#/components/schemas/OutputImageParams"
57
64
quality:
58
65
$ref: "#/components/schemas/QualityRequest"
59
66
attributes:
60
-
description: "If set, the selected attributes, such as age or emotions, are evaluated."
67
+
description: "If set, the selected attributes, such as age or emotions, are evaluated. To check all the available attributes, you can set the `AttributesAll` scenario in `processParam.scenario`."
61
68
type: object
62
69
properties:
63
70
config:
@@ -75,7 +82,7 @@ components:
75
82
76
83
QualityRequest:
77
84
type: object
78
-
description: "If set, the face image quality check is performed according to the set scenario or characteristics."
85
+
description: "If set, the face image quality check is performed according to the given list of [characteristics](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/usage/face-detection/face-image-quality-check/) in `quality.config`."
79
86
properties:
80
87
backgroundMatchColor:
81
88
description: "The RGB value for the background color: the silhouette of a person is cut out and the background is filled with this color."
@@ -85,7 +92,7 @@ components:
85
92
86
93
Crop:
87
94
type: object
88
-
description: "Whether to return a Base64-encoded image of an aligned and cropped portrait in the `crop` field. Alignment is performed according to `type`; if a head on the original image is tilted, for the returned portrait it is aligned in a straight vertical line. If there are more than one face in the photo, all the faces are detected and processed, and separate portraits for each face are returned. So, if there are five people in the photo, you'll get five processed portraits. Each portrait can be downloaded."
95
+
description: "Whether to return a Base64-encoded image of each aligned and cropped portrait in the `crop` field. Faces are aligned to a straight vertical line based on the value in the `crop.type` field, correcting any tilt present in the original image. If the image contains multiple faces, the system will detect and process each face separately, returning individual portraits. For example, if there are five people in the photo, five processed portraits will be returned. Each portrait is available for download."
description: "The resize value in case `type` matches this value. If it doesn't, no resize is performed."
104
111
example: [300, 400]
105
-
returnOriginalRect:
106
-
type: boolean
107
-
description: "Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop."
108
-
example: true
109
112
110
113
QualityConfigList:
111
114
type: array
@@ -128,7 +131,7 @@ components:
128
131
format: float
129
132
minItems: 2
130
133
maxItems: 2
131
-
description: "The range of applicable values for this characteristic. If the returned in the response value fits this range, the characteristic is identified as compliant with the requirements."
134
+
description: "The range of applicable values for this characteristic. If the returned in the response value fits this range, the characteristic is identified as compliant with the requirements. For recommended ranges, see [Face Image Quality Assessment](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/usage/face-detection/face-image-quality-check/)."
132
135
example: [x, y]
133
136
134
137
AttributeConfigList:
@@ -177,7 +180,7 @@ components:
177
180
example: "Roll"
178
181
range:
179
182
type: array
180
-
description: "The range of set values for this characteristic."
183
+
description: "The range of set values for this characteristic, see the [Recommended range column](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/usage/face-detection/face-image-quality-check/)."
181
184
items:
182
185
type: number
183
186
format: float
@@ -191,7 +194,7 @@ components:
191
194
value:
192
195
type: number
193
196
format: float
194
-
description: "The assessed value for the characteristic, returned in the set units."
197
+
description: "The result value for the characteristic, returned in set units."
195
198
example: 0.0
196
199
197
200
RGB:
@@ -205,7 +208,7 @@ components:
205
208
206
209
FaceImageQualityStatus:
207
210
type: integer
208
-
description: "The processing status returned for each assessed quality characteristic."
211
+
description: "The processing status returned for each quality characteristic, see the [FaceImageQualityStatus enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-status/)."
209
212
enum:
210
213
- 0
211
214
- 1
@@ -217,13 +220,8 @@ components:
217
220
218
221
FaceQualityScenarios:
219
222
type: string
220
-
description: "Face detection scenario. If applied and the scenario is found, the parameters are set automatically and any other parameters mentioned in the request are ignored.
221
-
222
-
223
-
If not set, left empty, or the name is not found, the processing is performed according to the set parameters.
224
-
225
-
226
-
You can find detailed descriptions of available scenarios on the [Scenarios page](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/usage/face-detection/scenarios/)."
223
+
description: "Face detection scenario. If set and the scenario is found, it automatically applies the relevant parameters, overriding any other parameters specified in the request. If the scenario is not set, is empty, or the name is not recognized, processing will follow the parameters directly set in the request. For detailed descriptions of available scenarios, refer to the [Scenarios page](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/usage/face-detection/scenarios/)."
224
+
example: "QualityICAO"
227
225
enum:
228
226
- "OldMode"
229
227
- "QualityFull"
@@ -233,6 +231,7 @@ components:
233
231
- "CropCentralFace"
234
232
- "CropAllFaces"
235
233
- "Thumbnail"
234
+
- "AttributesAll"
236
235
- ""
237
236
x-enum-varnames:
238
237
- OLD_MODE
@@ -243,11 +242,12 @@ components:
243
242
- CROP_CENTRAL_FACE
244
243
- CROP_ALL_FACES
245
244
- THUMBNAIL
245
+
- ATTRIBUTES_ALL
246
246
- EMPTY
247
247
248
248
FaceImageQualityGroups:
249
249
type: integer
250
-
description: "Face image quality group types for face image quality assessment."
250
+
description: "The group ID of the characteristic, see the [FaceImageQualityGroups enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-groups/) for details."
251
251
enum:
252
252
- 1
253
253
- 2
@@ -268,7 +268,7 @@ components:
268
268
- BACKGROUND
269
269
FaceImageQualityGroupsStrings:
270
270
type: string
271
-
description: "Face image quality group types for faceimagequality assessment."
271
+
description: "Face image quality assessment group name, see [FaceImageQualityGroups](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-groups/)."
272
272
enum:
273
273
- "ImageCharacteristics"
274
274
- "HeadSizeAndPosition"
@@ -290,7 +290,7 @@ components:
290
290
291
291
FaceQualityConfigName:
292
292
type: string
293
-
description: "The name of the quality check characteristic. For definitions, see the [FaceQualityConfigName enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-quality-config-name/)."
293
+
description: "The name of the characteristic. For definitions, see the [FaceQualityConfigName enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-quality-config-name/)."
0 commit comments