@regulaforensics/face-sdk 6.5.49-beta → 6.5.55-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RNFaceSDK.podspec +1 -1
- package/examples/capacitor/package.json +1 -1
- package/examples/cordova/package.json +1 -1
- package/examples/ionic/package.json +1 -1
- package/examples/react-native/package.json +1 -1
- package/package.json +1 -2
- package/plugin.xml +1 -1
- package/www/capacitor/image_quality/image_quality_group.js +8 -87
- package/www/capacitor/index.js +0 -8
- package/www/cordova.js +8 -95
- package/www/react-native/image_quality/image_quality_group.js +8 -87
- package/www/react-native/index.js +0 -8
- package/www/types/image_quality/image_quality_group.d.ts +8 -43
- package/www/types/index.d.ts +0 -5
package/RNFaceSDK.podspec
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"lint": "eslint"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@regulaforensics/face-sdk": "6.5.
|
|
18
|
+
"@regulaforensics/face-sdk": "6.5.55-beta",
|
|
19
19
|
"@regulaforensics/face-core-basic": "6.3.12-beta",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
21
21
|
"@awesome-cordova-plugins/file": "6.6.0",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"author": "Regula Forensics Inc.",
|
|
15
15
|
"license": "commercial",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@regulaforensics/face-sdk": "6.5.
|
|
17
|
+
"@regulaforensics/face-sdk": "6.5.55-beta",
|
|
18
18
|
"@regulaforensics/face-core-basic": "6.3.12-beta",
|
|
19
19
|
"cordova-android": "13.0.0",
|
|
20
20
|
"cordova-ios": "7.1.1",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"private": true,
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@regulaforensics/face-sdk": "6.5.
|
|
19
|
+
"@regulaforensics/face-sdk": "6.5.55-beta",
|
|
20
20
|
"@regulaforensics/face-core-basic": "6.3.12-beta",
|
|
21
21
|
"cordova-plugin-camera": "8.0.0",
|
|
22
22
|
"@awesome-cordova-plugins/camera": "6.14.0",
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/face-sdk",
|
|
3
|
-
"version": "6.5.
|
|
3
|
+
"version": "6.5.55-beta",
|
|
4
4
|
"description": "This is an npm module for Regula Face SDK. It allows you to easily compaire faces using your phone's camera.",
|
|
5
|
-
"main": "www/react-native/index.js",
|
|
6
5
|
"module": "www/capacitor/index.js",
|
|
7
6
|
"types": "www/types/index.d.ts",
|
|
8
7
|
"cordova": {
|
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="@regulaforensics/face-sdk" version="6.5.
|
|
2
|
+
<plugin id="@regulaforensics/face-sdk" version="6.5.55-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
|
3
3
|
<name>FaceSDK</name>
|
|
4
4
|
<description>Cordova plugin for Regula Face SDK</description>
|
|
5
5
|
<license>commercial</license>
|
|
@@ -306,91 +306,12 @@ export class _Background {
|
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
export class ImageQualityGroup {
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
static _headSizeAndPosition;
|
|
318
|
-
static get headSizeAndPosition() {
|
|
319
|
-
if (!ImageQualityGroup._headSizeAndPosition) {
|
|
320
|
-
ImageQualityGroup._headSizeAndPosition = new _HeadSizeAndPosition();
|
|
321
|
-
}
|
|
322
|
-
return ImageQualityGroup._headSizeAndPosition;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
static _faceImage;
|
|
326
|
-
static get faceImage() {
|
|
327
|
-
if (!ImageQualityGroup._faceImage) {
|
|
328
|
-
ImageQualityGroup._faceImage = new _FaceImage();
|
|
329
|
-
}
|
|
330
|
-
return ImageQualityGroup._faceImage;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
static _eyes;
|
|
334
|
-
static get eyes() {
|
|
335
|
-
if (!ImageQualityGroup._eyes) {
|
|
336
|
-
ImageQualityGroup._eyes = new _Eyes();
|
|
337
|
-
}
|
|
338
|
-
return ImageQualityGroup._eyes;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
static _shadowsAndLightning;
|
|
342
|
-
static get shadowsAndLightning() {
|
|
343
|
-
if (!ImageQualityGroup._shadowsAndLightning) {
|
|
344
|
-
ImageQualityGroup._shadowsAndLightning = new _ShadowsAndLightning();
|
|
345
|
-
}
|
|
346
|
-
return ImageQualityGroup._shadowsAndLightning;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
static _poseAndExpression;
|
|
350
|
-
static get poseAndExpression() {
|
|
351
|
-
if (!ImageQualityGroup._poseAndExpression) {
|
|
352
|
-
ImageQualityGroup._poseAndExpression = new _PoseAndExpression();
|
|
353
|
-
}
|
|
354
|
-
return ImageQualityGroup._poseAndExpression;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
static _headOcclusion;
|
|
358
|
-
static get headOcclusion() {
|
|
359
|
-
if (!ImageQualityGroup._headOcclusion) {
|
|
360
|
-
ImageQualityGroup._headOcclusion = new _HeadOcclusion();
|
|
361
|
-
}
|
|
362
|
-
return ImageQualityGroup._headOcclusion;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
static _background;
|
|
366
|
-
static get background() {
|
|
367
|
-
if (!ImageQualityGroup._background) {
|
|
368
|
-
ImageQualityGroup._background = new _Background();
|
|
369
|
-
}
|
|
370
|
-
return ImageQualityGroup._background;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
static get image() { return ImageQualityGroup._image }
|
|
374
|
-
static _image = new _Image()
|
|
375
|
-
|
|
376
|
-
static get headSizeAndPosition() { return ImageQualityGroup._headSizeAndPosition }
|
|
377
|
-
static _headSizeAndPosition = new _HeadSizeAndPosition()
|
|
378
|
-
|
|
379
|
-
static get faceImage() { return ImageQualityGroup._faceImage }
|
|
380
|
-
static _faceImage = new _FaceImage()
|
|
381
|
-
|
|
382
|
-
static get eyes() { return ImageQualityGroup._eyes }
|
|
383
|
-
static _eyes = new _Eyes()
|
|
384
|
-
|
|
385
|
-
static get shadowsAndLightning() { return ImageQualityGroup._shadowsAndLightning }
|
|
386
|
-
static _shadowsAndLightning = new _ShadowsAndLightning()
|
|
387
|
-
|
|
388
|
-
static get poseAndExpression() { return ImageQualityGroup._poseAndExpression }
|
|
389
|
-
static _poseAndExpression = new _PoseAndExpression()
|
|
390
|
-
|
|
391
|
-
static get headOcclusion() { return ImageQualityGroup._headOcclusion }
|
|
392
|
-
static _headOcclusion = new _HeadOcclusion()
|
|
393
|
-
|
|
394
|
-
static get background() { return ImageQualityGroup._background }
|
|
395
|
-
static _background = new _Background()
|
|
309
|
+
image = new _Image()
|
|
310
|
+
headSizeAndPosition = new _HeadSizeAndPosition()
|
|
311
|
+
faceImage = new _FaceImage()
|
|
312
|
+
eyes = new _Eyes()
|
|
313
|
+
shadowsAndLightning = new _ShadowsAndLightning()
|
|
314
|
+
poseAndExpression = new _PoseAndExpression()
|
|
315
|
+
headOcclusion = new _HeadOcclusion()
|
|
316
|
+
background = new _Background()
|
|
396
317
|
}
|
package/www/capacitor/index.js
CHANGED
|
@@ -92,14 +92,6 @@ export { EditGroupPersonsRequest, ImageUpload, PageableItemList, PersonDatabase,
|
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
export class FaceSDK {
|
|
95
|
-
static _instance;
|
|
96
|
-
static get instance() {
|
|
97
|
-
if (!FaceSDK._instance) {
|
|
98
|
-
FaceSDK._instance = new FaceSDK();
|
|
99
|
-
}
|
|
100
|
-
return FaceSDK._instance;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
95
|
get version() { return this._version }
|
|
104
96
|
_version
|
|
105
97
|
|
package/www/cordova.js
CHANGED
|
@@ -1771,93 +1771,14 @@ class _Background {
|
|
|
1771
1771
|
}
|
|
1772
1772
|
|
|
1773
1773
|
class ImageQualityGroup {
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
static _headSizeAndPosition;
|
|
1783
|
-
static get headSizeAndPosition() {
|
|
1784
|
-
if (!ImageQualityGroup._headSizeAndPosition) {
|
|
1785
|
-
ImageQualityGroup._headSizeAndPosition = new _HeadSizeAndPosition();
|
|
1786
|
-
}
|
|
1787
|
-
return ImageQualityGroup._headSizeAndPosition;
|
|
1788
|
-
}
|
|
1789
|
-
|
|
1790
|
-
static _faceImage;
|
|
1791
|
-
static get faceImage() {
|
|
1792
|
-
if (!ImageQualityGroup._faceImage) {
|
|
1793
|
-
ImageQualityGroup._faceImage = new _FaceImage();
|
|
1794
|
-
}
|
|
1795
|
-
return ImageQualityGroup._faceImage;
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
|
-
static _eyes;
|
|
1799
|
-
static get eyes() {
|
|
1800
|
-
if (!ImageQualityGroup._eyes) {
|
|
1801
|
-
ImageQualityGroup._eyes = new _Eyes();
|
|
1802
|
-
}
|
|
1803
|
-
return ImageQualityGroup._eyes;
|
|
1804
|
-
}
|
|
1805
|
-
|
|
1806
|
-
static _shadowsAndLightning;
|
|
1807
|
-
static get shadowsAndLightning() {
|
|
1808
|
-
if (!ImageQualityGroup._shadowsAndLightning) {
|
|
1809
|
-
ImageQualityGroup._shadowsAndLightning = new _ShadowsAndLightning();
|
|
1810
|
-
}
|
|
1811
|
-
return ImageQualityGroup._shadowsAndLightning;
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
static _poseAndExpression;
|
|
1815
|
-
static get poseAndExpression() {
|
|
1816
|
-
if (!ImageQualityGroup._poseAndExpression) {
|
|
1817
|
-
ImageQualityGroup._poseAndExpression = new _PoseAndExpression();
|
|
1818
|
-
}
|
|
1819
|
-
return ImageQualityGroup._poseAndExpression;
|
|
1820
|
-
}
|
|
1821
|
-
|
|
1822
|
-
static _headOcclusion;
|
|
1823
|
-
static get headOcclusion() {
|
|
1824
|
-
if (!ImageQualityGroup._headOcclusion) {
|
|
1825
|
-
ImageQualityGroup._headOcclusion = new _HeadOcclusion();
|
|
1826
|
-
}
|
|
1827
|
-
return ImageQualityGroup._headOcclusion;
|
|
1828
|
-
}
|
|
1829
|
-
|
|
1830
|
-
static _background;
|
|
1831
|
-
static get background() {
|
|
1832
|
-
if (!ImageQualityGroup._background) {
|
|
1833
|
-
ImageQualityGroup._background = new _Background();
|
|
1834
|
-
}
|
|
1835
|
-
return ImageQualityGroup._background;
|
|
1836
|
-
}
|
|
1837
|
-
|
|
1838
|
-
static get image() { return ImageQualityGroup._image }
|
|
1839
|
-
static _image = new _Image()
|
|
1840
|
-
|
|
1841
|
-
static get headSizeAndPosition() { return ImageQualityGroup._headSizeAndPosition }
|
|
1842
|
-
static _headSizeAndPosition = new _HeadSizeAndPosition()
|
|
1843
|
-
|
|
1844
|
-
static get faceImage() { return ImageQualityGroup._faceImage }
|
|
1845
|
-
static _faceImage = new _FaceImage()
|
|
1846
|
-
|
|
1847
|
-
static get eyes() { return ImageQualityGroup._eyes }
|
|
1848
|
-
static _eyes = new _Eyes()
|
|
1849
|
-
|
|
1850
|
-
static get shadowsAndLightning() { return ImageQualityGroup._shadowsAndLightning }
|
|
1851
|
-
static _shadowsAndLightning = new _ShadowsAndLightning()
|
|
1852
|
-
|
|
1853
|
-
static get poseAndExpression() { return ImageQualityGroup._poseAndExpression }
|
|
1854
|
-
static _poseAndExpression = new _PoseAndExpression()
|
|
1855
|
-
|
|
1856
|
-
static get headOcclusion() { return ImageQualityGroup._headOcclusion }
|
|
1857
|
-
static _headOcclusion = new _HeadOcclusion()
|
|
1858
|
-
|
|
1859
|
-
static get background() { return ImageQualityGroup._background }
|
|
1860
|
-
static _background = new _Background()
|
|
1774
|
+
image = new _Image()
|
|
1775
|
+
headSizeAndPosition = new _HeadSizeAndPosition()
|
|
1776
|
+
faceImage = new _FaceImage()
|
|
1777
|
+
eyes = new _Eyes()
|
|
1778
|
+
shadowsAndLightning = new _ShadowsAndLightning()
|
|
1779
|
+
poseAndExpression = new _PoseAndExpression()
|
|
1780
|
+
headOcclusion = new _HeadOcclusion()
|
|
1781
|
+
background = new _Background()
|
|
1861
1782
|
}
|
|
1862
1783
|
|
|
1863
1784
|
/***/ }),
|
|
@@ -2202,14 +2123,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2202
2123
|
|
|
2203
2124
|
|
|
2204
2125
|
class FaceSDK {
|
|
2205
|
-
static _instance;
|
|
2206
|
-
static get instance() {
|
|
2207
|
-
if (!FaceSDK._instance) {
|
|
2208
|
-
FaceSDK._instance = new FaceSDK();
|
|
2209
|
-
}
|
|
2210
|
-
return FaceSDK._instance;
|
|
2211
|
-
}
|
|
2212
|
-
|
|
2213
2126
|
get version() { return this._version }
|
|
2214
2127
|
_version
|
|
2215
2128
|
|
|
@@ -306,91 +306,12 @@ export class _Background {
|
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
export class ImageQualityGroup {
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
static _headSizeAndPosition;
|
|
318
|
-
static get headSizeAndPosition() {
|
|
319
|
-
if (!ImageQualityGroup._headSizeAndPosition) {
|
|
320
|
-
ImageQualityGroup._headSizeAndPosition = new _HeadSizeAndPosition();
|
|
321
|
-
}
|
|
322
|
-
return ImageQualityGroup._headSizeAndPosition;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
static _faceImage;
|
|
326
|
-
static get faceImage() {
|
|
327
|
-
if (!ImageQualityGroup._faceImage) {
|
|
328
|
-
ImageQualityGroup._faceImage = new _FaceImage();
|
|
329
|
-
}
|
|
330
|
-
return ImageQualityGroup._faceImage;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
static _eyes;
|
|
334
|
-
static get eyes() {
|
|
335
|
-
if (!ImageQualityGroup._eyes) {
|
|
336
|
-
ImageQualityGroup._eyes = new _Eyes();
|
|
337
|
-
}
|
|
338
|
-
return ImageQualityGroup._eyes;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
static _shadowsAndLightning;
|
|
342
|
-
static get shadowsAndLightning() {
|
|
343
|
-
if (!ImageQualityGroup._shadowsAndLightning) {
|
|
344
|
-
ImageQualityGroup._shadowsAndLightning = new _ShadowsAndLightning();
|
|
345
|
-
}
|
|
346
|
-
return ImageQualityGroup._shadowsAndLightning;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
static _poseAndExpression;
|
|
350
|
-
static get poseAndExpression() {
|
|
351
|
-
if (!ImageQualityGroup._poseAndExpression) {
|
|
352
|
-
ImageQualityGroup._poseAndExpression = new _PoseAndExpression();
|
|
353
|
-
}
|
|
354
|
-
return ImageQualityGroup._poseAndExpression;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
static _headOcclusion;
|
|
358
|
-
static get headOcclusion() {
|
|
359
|
-
if (!ImageQualityGroup._headOcclusion) {
|
|
360
|
-
ImageQualityGroup._headOcclusion = new _HeadOcclusion();
|
|
361
|
-
}
|
|
362
|
-
return ImageQualityGroup._headOcclusion;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
static _background;
|
|
366
|
-
static get background() {
|
|
367
|
-
if (!ImageQualityGroup._background) {
|
|
368
|
-
ImageQualityGroup._background = new _Background();
|
|
369
|
-
}
|
|
370
|
-
return ImageQualityGroup._background;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
static get image() { return ImageQualityGroup._image }
|
|
374
|
-
static _image = new _Image()
|
|
375
|
-
|
|
376
|
-
static get headSizeAndPosition() { return ImageQualityGroup._headSizeAndPosition }
|
|
377
|
-
static _headSizeAndPosition = new _HeadSizeAndPosition()
|
|
378
|
-
|
|
379
|
-
static get faceImage() { return ImageQualityGroup._faceImage }
|
|
380
|
-
static _faceImage = new _FaceImage()
|
|
381
|
-
|
|
382
|
-
static get eyes() { return ImageQualityGroup._eyes }
|
|
383
|
-
static _eyes = new _Eyes()
|
|
384
|
-
|
|
385
|
-
static get shadowsAndLightning() { return ImageQualityGroup._shadowsAndLightning }
|
|
386
|
-
static _shadowsAndLightning = new _ShadowsAndLightning()
|
|
387
|
-
|
|
388
|
-
static get poseAndExpression() { return ImageQualityGroup._poseAndExpression }
|
|
389
|
-
static _poseAndExpression = new _PoseAndExpression()
|
|
390
|
-
|
|
391
|
-
static get headOcclusion() { return ImageQualityGroup._headOcclusion }
|
|
392
|
-
static _headOcclusion = new _HeadOcclusion()
|
|
393
|
-
|
|
394
|
-
static get background() { return ImageQualityGroup._background }
|
|
395
|
-
static _background = new _Background()
|
|
309
|
+
image = new _Image()
|
|
310
|
+
headSizeAndPosition = new _HeadSizeAndPosition()
|
|
311
|
+
faceImage = new _FaceImage()
|
|
312
|
+
eyes = new _Eyes()
|
|
313
|
+
shadowsAndLightning = new _ShadowsAndLightning()
|
|
314
|
+
poseAndExpression = new _PoseAndExpression()
|
|
315
|
+
headOcclusion = new _HeadOcclusion()
|
|
316
|
+
background = new _Background()
|
|
396
317
|
}
|
|
@@ -92,14 +92,6 @@ export { EditGroupPersonsRequest, ImageUpload, PageableItemList, PersonDatabase,
|
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
export class FaceSDK {
|
|
95
|
-
static _instance;
|
|
96
|
-
static get instance() {
|
|
97
|
-
if (!FaceSDK._instance) {
|
|
98
|
-
FaceSDK._instance = new FaceSDK();
|
|
99
|
-
}
|
|
100
|
-
return FaceSDK._instance;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
95
|
get version() { return this._version }
|
|
104
96
|
_version
|
|
105
97
|
|
|
@@ -1,50 +1,15 @@
|
|
|
1
1
|
import { ImageQualityCharacteristic } from './image_quality_characteristic'
|
|
2
2
|
import { ImageQualityRange } from './image_quality_range'
|
|
3
3
|
|
|
4
|
-
/**
|
|
5
|
-
* Image Quality characteristic group
|
|
6
|
-
*/
|
|
7
4
|
export class ImageQualityGroup {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
* width and height ratio, inter-eye distance, yaw, pitch, roll.
|
|
17
|
-
*/
|
|
18
|
-
static get headSizeAndPosition(): _HeadSizeAndPosition
|
|
19
|
-
/**
|
|
20
|
-
* The Face image quality group includes blur and noise levels, unnatural skin tone,
|
|
21
|
-
* and face dynamic range checks.
|
|
22
|
-
*/
|
|
23
|
-
static get faceImage(): _FaceImage
|
|
24
|
-
/**
|
|
25
|
-
* The Eyes characteristics group checks eyes closure, occlusion, hair coverage,
|
|
26
|
-
* red eye effect, and whether a person is looking directly at the camera.
|
|
27
|
-
*/
|
|
28
|
-
static get eyes(): _Eyes
|
|
29
|
-
/**
|
|
30
|
-
* The Shadows and lightning characteristics group checks whether a photo
|
|
31
|
-
* is too dark or overexposed, if there are glares or shadows on the face.
|
|
32
|
-
*/
|
|
33
|
-
static get shadowsAndLightning(): _ShadowsAndLightning
|
|
34
|
-
/**
|
|
35
|
-
* The Pose and expression characteristics group checks the shoulders pose,
|
|
36
|
-
* face expression, whether there is an open mouth or smile.
|
|
37
|
-
*/
|
|
38
|
-
static get poseAndExpression(): _PoseAndExpression
|
|
39
|
-
/**
|
|
40
|
-
* The Head occlusion group includes checks of glasses, face occlusion, and head coverage.
|
|
41
|
-
*/
|
|
42
|
-
static get headOcclusion(): _HeadOcclusion
|
|
43
|
-
/**
|
|
44
|
-
* The Background characteristics group checks the background uniformity,
|
|
45
|
-
* shadows on background, and other faces presence on the picture.
|
|
46
|
-
*/
|
|
47
|
-
static get background(): _Background
|
|
5
|
+
image: _Image
|
|
6
|
+
headSizeAndPosition: _HeadSizeAndPosition
|
|
7
|
+
faceImage: _FaceImage
|
|
8
|
+
eyes: _Eyes
|
|
9
|
+
shadowsAndLightning: _ShadowsAndLightning
|
|
10
|
+
poseAndExpression: _PoseAndExpression
|
|
11
|
+
headOcclusion: _HeadOcclusion
|
|
12
|
+
background: _Background
|
|
48
13
|
}
|
|
49
14
|
|
|
50
15
|
export class _Image {
|
package/www/types/index.d.ts
CHANGED
|
@@ -83,11 +83,6 @@ export { EditGroupPersonsRequest, ImageUpload, PageableItemList, PersonDatabase,
|
|
|
83
83
|
* Entry point of the Regula Face SDK.
|
|
84
84
|
*/
|
|
85
85
|
export class FaceSDK {
|
|
86
|
-
/**
|
|
87
|
-
* The only instance of singleton class {@link FaceSDK}.
|
|
88
|
-
*/
|
|
89
|
-
static get instance(): FaceSDK
|
|
90
|
-
|
|
91
86
|
/**
|
|
92
87
|
* Information about the SDK.
|
|
93
88
|
*/
|