-
Notifications
You must be signed in to change notification settings - Fork 32
/
descriptor.json
266 lines (265 loc) · 7.45 KB
/
descriptor.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
// #######################################################################
// NOTICE
//
// This software (or technical data) was produced for the U.S. Government
// under contract, and is subject to the Rights in Data-General Clause
// 52.227-14, Alt. IV (DEC 2007).
//
// Copyright 2019 The MITRE Corporation. All Rights Reserved.
// #######################################################################
{
"name" : "BIQTFace",
"description": "BIQTFace is a library for computation of image quality metrics, as well as landmark detection for full frontal and profile images. It uses the OpenCV and OpenBR libraries.",
"version" : "23.04",
"sourceLanguage" : "c++",
"modality": "face",
"attributes": [
{
"name": "opencv_face_found",
"description": "Indicates whether a face was found (1) or not (0), using Haar Cascades in OpenCV. The algorithm will find and evaluate the largest face in the image.",
"type": "BOOLEAN",
"defaultValue": "0"
},
{
"name": "opencv_frontal_face_found",
"description": "Indicates if the detected face has a frontal orientation.",
"type": "BOOLEAN",
"defaultValue": "0"
},
{
"name": "opencv_profile_face_found",
"description": "Indicates if the detected face has a profile orientation.",
"type": "BOOLEAN",
"defaultValue": "0"
},
{
"name": "opencv_face_x",
"description": "X-coordinate of center of face bounding box.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_face_y",
"description": "Y-coordinate of center of face bounding box.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_face_height",
"description": "Height, in pixels, of the face bounding box.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_face_width",
"description": "Width, in pixels, of the face bounding box.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "openbr_left_eye_x",
"description": "X-coordinate of the detected face's left eye.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "openbr_left_eye_y",
"description": "Y-coordinate of the detected face's left eye.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "openbr_right_eye_x",
"description": "X-coordinate of the detected face's right eye.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "openbr_right_eye_y",
"description": "Y-coordinate of the detected face's right eye.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_eye_count",
"description": "Number of eyes detected in the given face.",
"type": "DOUBLE",
"defaultValue": "0"
}
,
{
"name": "opencv_IPD",
"description": "The interpupil distance, in pixels.",
"type": "DOUBLE",
"defaultValue": "-1"
}
,
{
"name": "opencv_left_eye_x",
"description": "X-coordinate of the detected face's left eye.",
"type": "DOUBLE",
"defaultValue": "-1"
}
,
{
"name": "opencv_left_eye_y",
"description": "Y-coordinate of the detected face's left eye.",
"type": "DOUBLE",
"defaultValue": "-1"
}
,
{
"name": "opencv_mouth_count",
"description": "Number of mouths detected in the given face.",
"type": "DOUBLE",
"defaultValue": "0"
}
,
{
"name": "opencv_mouth_x",
"description": "X-coordinate of the detected face's mouth.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_mouth_y",
"description": "Y-coordinate of the detected face's mouth.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_face_center_of_mass_y",
"description": "Y-coordinate of the detected face's center of mass.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_face_center_of_mass_x",
"description": "X-coordinate of the detected face's center of mass.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_face_offset_x",
"description": "The offsest, in pixels, of the face in the overall image.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "opencv_face_offset_y",
"description": "The offset, in pixels, of the face in the overall image.",
"type": "DOUBLE",
"defaultValue": "-1"
},
{
"name": "quality",
"description": "Quality score of the primary (largest) detected face in the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "blur",
"description": "A measure of the blur of the overall image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "blur_face",
"description": "A measure of the blur of the primary detected face in the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "openbr_confidence",
"description": "A measure of how confident we are in the face detection.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "openbr_IPD",
"description": "Interpupil distance, in pixels, of the detected face.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "background_deviation",
"description": "Standard deviation between the image channels.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "background_grayness",
"description": "Intensity differences between the image channels",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "focus",
"description": "Measure of the focus of the overall image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "focus_face",
"description": "Measure of the focus of the detected face in the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "image_area",
"description": "Area, in pixels, of the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "image_channels",
"description": "Number of color channels of the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "image_height",
"description": "Height, in pixels, of the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "image_ratio",
"description": "Ratio of width to height of the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "image_width",
"description": "Width, in pixels, of the image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "over_exposure",
"description": "Measure of the exposure of the overall image.",
"type": "DOUBLE",
"defaultValue": "0"
},
{
"name": "over_exposure_face",
"description": "Measure of the exposure of the detected face in the image.",
"type": "DOUBLE",
"defaultValue": "0"
}
,
{
"name": "skin_ratio_face",
"description": "Ratio of the face skin area to the detected face bounding box area.",
"type": "DOUBLE",
"defaultValue": "0"
}
,
{
"name": "skin_ratio_full",
"description": "Ratio of the face skin area to the overall image area.",
"type": "DOUBLE",
"defaultValue": "0"
}
]
}