@regulaforensics/face-sdk 7.1.253-beta → 7.1.257-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/android/build.gradle +1 -1
- package/android/cordova.gradle +1 -1
- package/examples/capacitor/package.json +1 -1
- package/examples/capacitor/src/main.css +9 -3
- package/examples/capacitor/src/main.html +15 -12
- package/examples/cordova/package.json +1 -1
- package/examples/cordova/www/src/main.css +9 -3
- package/examples/cordova/www/src/main.html +15 -12
- package/examples/ionic/package.json +1 -1
- package/examples/ionic/src/main.css +9 -3
- package/examples/ionic/src/main.html +15 -12
- package/examples/react-native/Gemfile.lock +144 -0
- package/examples/react-native/package.json +1 -1
- package/examples/react-native/src/main.css +9 -3
- package/examples/react-native/src/main.html +15 -12
- package/package.json +1 -1
- package/plugin.xml +1 -1
package/RNFaceSDK.podspec
CHANGED
package/android/build.gradle
CHANGED
|
@@ -41,7 +41,7 @@ dependencies {
|
|
|
41
41
|
//noinspection GradleDynamicVersion
|
|
42
42
|
implementation 'com.facebook.react:react-native:+'
|
|
43
43
|
//noinspection GradleDependency
|
|
44
|
-
implementation('com.regula.face:api:
|
|
44
|
+
implementation('com.regula.face:api:7.1.3715'){
|
|
45
45
|
transitive = true
|
|
46
46
|
}
|
|
47
47
|
}
|
package/android/cordova.gradle
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/face-sdk": "7.1.
|
|
9
|
+
"@regulaforensics/face-sdk": "7.1.257-beta",
|
|
10
10
|
"@regulaforensics/face-core-basic": "7.1.99-beta",
|
|
11
11
|
"@awesome-cordova-plugins/file": "6.6.0",
|
|
12
12
|
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
@@ -32,14 +32,20 @@ body {
|
|
|
32
32
|
padding-top: 80px;
|
|
33
33
|
margin-top: -10px;
|
|
34
34
|
background-color: rgba(0, 0, 0, 0.03);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.title {
|
|
38
35
|
font-weight: 600;
|
|
39
36
|
font-size: 18px;
|
|
40
37
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
41
38
|
}
|
|
42
39
|
|
|
40
|
+
.sub-header {
|
|
41
|
+
background-color: rgba(0, 0, 0, 0.03);
|
|
42
|
+
width: 100%;
|
|
43
|
+
padding-top: 13px;
|
|
44
|
+
text-align: center;
|
|
45
|
+
font-weight: 550;
|
|
46
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
47
|
+
}
|
|
48
|
+
|
|
43
49
|
.divider {
|
|
44
50
|
height: 1px;
|
|
45
51
|
background-color: rgba(0, 0, 0, 0.075);
|
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
<div class="page">
|
|
2
2
|
<div class="column header">
|
|
3
|
-
<span id="status"
|
|
3
|
+
<span id="status">Loading...</span>
|
|
4
4
|
<div class="column divider"></div>
|
|
5
5
|
</div>
|
|
6
|
-
<div
|
|
7
|
-
<div class="
|
|
8
|
-
<
|
|
9
|
-
<
|
|
6
|
+
<div class="column sub-header">
|
|
7
|
+
<div class="row" style="width: 100%">
|
|
8
|
+
<div style="width: 185px">Similarity: <span id="similarity-status">null</span></div>
|
|
9
|
+
<div style="width: 185px">Liveness: <span id="liveness-status">null</span></div>
|
|
10
10
|
</div>
|
|
11
|
-
<div class="column
|
|
11
|
+
<div class="column divider"></div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="column no-scroll">
|
|
14
|
+
<div class="row" style="height: 100%">
|
|
15
|
+
<img id="first-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
16
|
+
<img id="second-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
17
|
+
</div>
|
|
18
|
+
<div class="row">
|
|
12
19
|
<button id="match-faces" class="button">Match</button>
|
|
13
20
|
<button id="start-liveness" class="button">Liveness</button>
|
|
14
|
-
<button id="clear-results" class="button">Clear</button>
|
|
15
|
-
</div>
|
|
16
|
-
<div>
|
|
17
|
-
Similarity: <span style="margin-right: 15px" id="similarity-status">null</span> Liveness: <span
|
|
18
|
-
id="liveness-status">null</span>
|
|
19
21
|
</div>
|
|
20
|
-
<
|
|
22
|
+
<button id="clear-results" class="button" style="width: 360px">Clear</button>
|
|
23
|
+
<div style="padding-top: 30px"></div>
|
|
21
24
|
</div>
|
|
22
25
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/face-sdk": "7.1.
|
|
9
|
+
"@regulaforensics/face-sdk": "7.1.257-beta",
|
|
10
10
|
"@regulaforensics/face-core-basic": "7.1.99-beta",
|
|
11
11
|
"cordova-ios": "7.1.1",
|
|
12
12
|
"cordova-android": "13.0.0",
|
|
@@ -32,14 +32,20 @@ body {
|
|
|
32
32
|
padding-top: 80px;
|
|
33
33
|
margin-top: -10px;
|
|
34
34
|
background-color: rgba(0, 0, 0, 0.03);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.title {
|
|
38
35
|
font-weight: 600;
|
|
39
36
|
font-size: 18px;
|
|
40
37
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
41
38
|
}
|
|
42
39
|
|
|
40
|
+
.sub-header {
|
|
41
|
+
background-color: rgba(0, 0, 0, 0.03);
|
|
42
|
+
width: 100%;
|
|
43
|
+
padding-top: 13px;
|
|
44
|
+
text-align: center;
|
|
45
|
+
font-weight: 550;
|
|
46
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
47
|
+
}
|
|
48
|
+
|
|
43
49
|
.divider {
|
|
44
50
|
height: 1px;
|
|
45
51
|
background-color: rgba(0, 0, 0, 0.075);
|
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
<div class="page">
|
|
2
2
|
<div class="column header">
|
|
3
|
-
<span id="status"
|
|
3
|
+
<span id="status">Loading...</span>
|
|
4
4
|
<div class="column divider"></div>
|
|
5
5
|
</div>
|
|
6
|
-
<div
|
|
7
|
-
<div class="
|
|
8
|
-
<
|
|
9
|
-
<
|
|
6
|
+
<div class="column sub-header">
|
|
7
|
+
<div class="row" style="width: 100%">
|
|
8
|
+
<div style="width: 185px">Similarity: <span id="similarity-status">null</span></div>
|
|
9
|
+
<div style="width: 185px">Liveness: <span id="liveness-status">null</span></div>
|
|
10
10
|
</div>
|
|
11
|
-
<div class="column
|
|
11
|
+
<div class="column divider"></div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="column no-scroll">
|
|
14
|
+
<div class="row" style="height: 100%">
|
|
15
|
+
<img id="first-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
16
|
+
<img id="second-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
17
|
+
</div>
|
|
18
|
+
<div class="row">
|
|
12
19
|
<button id="match-faces" class="button">Match</button>
|
|
13
20
|
<button id="start-liveness" class="button">Liveness</button>
|
|
14
|
-
<button id="clear-results" class="button">Clear</button>
|
|
15
|
-
</div>
|
|
16
|
-
<div>
|
|
17
|
-
Similarity: <span style="margin-right: 15px" id="similarity-status">null</span> Liveness: <span
|
|
18
|
-
id="liveness-status">null</span>
|
|
19
21
|
</div>
|
|
20
|
-
<
|
|
22
|
+
<button id="clear-results" class="button" style="width: 360px">Clear</button>
|
|
23
|
+
<div style="padding-top: 30px"></div>
|
|
21
24
|
</div>
|
|
22
25
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/face-sdk": "7.1.
|
|
9
|
+
"@regulaforensics/face-sdk": "7.1.257-beta",
|
|
10
10
|
"@regulaforensics/face-core-basic": "7.1.99-beta",
|
|
11
11
|
"@awesome-cordova-plugins/file": "6.16.0",
|
|
12
12
|
"@awesome-cordova-plugins/camera": "6.16.0",
|
|
@@ -32,14 +32,20 @@ body {
|
|
|
32
32
|
padding-top: 80px;
|
|
33
33
|
margin-top: -10px;
|
|
34
34
|
background-color: rgba(0, 0, 0, 0.03);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.title {
|
|
38
35
|
font-weight: 600;
|
|
39
36
|
font-size: 18px;
|
|
40
37
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
41
38
|
}
|
|
42
39
|
|
|
40
|
+
.sub-header {
|
|
41
|
+
background-color: rgba(0, 0, 0, 0.03);
|
|
42
|
+
width: 100%;
|
|
43
|
+
padding-top: 13px;
|
|
44
|
+
text-align: center;
|
|
45
|
+
font-weight: 550;
|
|
46
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
47
|
+
}
|
|
48
|
+
|
|
43
49
|
.divider {
|
|
44
50
|
height: 1px;
|
|
45
51
|
background-color: rgba(0, 0, 0, 0.075);
|
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
<div class="page">
|
|
2
2
|
<div class="column header">
|
|
3
|
-
<span id="status"
|
|
3
|
+
<span id="status">Loading...</span>
|
|
4
4
|
<div class="column divider"></div>
|
|
5
5
|
</div>
|
|
6
|
-
<div
|
|
7
|
-
<div class="
|
|
8
|
-
<
|
|
9
|
-
<
|
|
6
|
+
<div class="column sub-header">
|
|
7
|
+
<div class="row" style="width: 100%">
|
|
8
|
+
<div style="width: 185px">Similarity: <span id="similarity-status">null</span></div>
|
|
9
|
+
<div style="width: 185px">Liveness: <span id="liveness-status">null</span></div>
|
|
10
10
|
</div>
|
|
11
|
-
<div class="column
|
|
11
|
+
<div class="column divider"></div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="column no-scroll">
|
|
14
|
+
<div class="row" style="height: 100%">
|
|
15
|
+
<img id="first-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
16
|
+
<img id="second-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
17
|
+
</div>
|
|
18
|
+
<div class="row">
|
|
12
19
|
<button id="match-faces" class="button">Match</button>
|
|
13
20
|
<button id="start-liveness" class="button">Liveness</button>
|
|
14
|
-
<button id="clear-results" class="button">Clear</button>
|
|
15
|
-
</div>
|
|
16
|
-
<div>
|
|
17
|
-
Similarity: <span style="margin-right: 15px" id="similarity-status">null</span> Liveness: <span
|
|
18
|
-
id="liveness-status">null</span>
|
|
19
21
|
</div>
|
|
20
|
-
<
|
|
22
|
+
<button id="clear-results" class="button" style="width: 360px">Clear</button>
|
|
23
|
+
<div style="padding-top: 30px"></div>
|
|
21
24
|
</div>
|
|
22
25
|
</div>
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
CFPropertyList (3.0.7)
|
|
5
|
+
base64
|
|
6
|
+
nkf
|
|
7
|
+
rexml
|
|
8
|
+
activesupport (7.2.2.1)
|
|
9
|
+
base64
|
|
10
|
+
benchmark (>= 0.3)
|
|
11
|
+
bigdecimal
|
|
12
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
13
|
+
connection_pool (>= 2.2.5)
|
|
14
|
+
drb
|
|
15
|
+
i18n (>= 1.6, < 2)
|
|
16
|
+
logger (>= 1.4.2)
|
|
17
|
+
minitest (>= 5.1)
|
|
18
|
+
securerandom (>= 0.3)
|
|
19
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
20
|
+
addressable (2.8.7)
|
|
21
|
+
public_suffix (>= 2.0.2, < 7.0)
|
|
22
|
+
algoliasearch (1.27.5)
|
|
23
|
+
httpclient (~> 2.8, >= 2.8.3)
|
|
24
|
+
json (>= 1.5.1)
|
|
25
|
+
atomos (0.1.3)
|
|
26
|
+
base64 (0.2.0)
|
|
27
|
+
benchmark (0.4.0)
|
|
28
|
+
bigdecimal (3.1.9)
|
|
29
|
+
claide (1.1.0)
|
|
30
|
+
cocoapods (1.15.2)
|
|
31
|
+
addressable (~> 2.8)
|
|
32
|
+
claide (>= 1.0.2, < 2.0)
|
|
33
|
+
cocoapods-core (= 1.15.2)
|
|
34
|
+
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
|
35
|
+
cocoapods-downloader (>= 2.1, < 3.0)
|
|
36
|
+
cocoapods-plugins (>= 1.0.0, < 2.0)
|
|
37
|
+
cocoapods-search (>= 1.0.0, < 2.0)
|
|
38
|
+
cocoapods-trunk (>= 1.6.0, < 2.0)
|
|
39
|
+
cocoapods-try (>= 1.1.0, < 2.0)
|
|
40
|
+
colored2 (~> 3.1)
|
|
41
|
+
escape (~> 0.0.4)
|
|
42
|
+
fourflusher (>= 2.3.0, < 3.0)
|
|
43
|
+
gh_inspector (~> 1.0)
|
|
44
|
+
molinillo (~> 0.8.0)
|
|
45
|
+
nap (~> 1.0)
|
|
46
|
+
ruby-macho (>= 2.3.0, < 3.0)
|
|
47
|
+
xcodeproj (>= 1.23.0, < 2.0)
|
|
48
|
+
cocoapods-core (1.15.2)
|
|
49
|
+
activesupport (>= 5.0, < 8)
|
|
50
|
+
addressable (~> 2.8)
|
|
51
|
+
algoliasearch (~> 1.0)
|
|
52
|
+
concurrent-ruby (~> 1.1)
|
|
53
|
+
fuzzy_match (~> 2.0.4)
|
|
54
|
+
nap (~> 1.0)
|
|
55
|
+
netrc (~> 0.11)
|
|
56
|
+
public_suffix (~> 4.0)
|
|
57
|
+
typhoeus (~> 1.0)
|
|
58
|
+
cocoapods-deintegrate (1.0.5)
|
|
59
|
+
cocoapods-downloader (2.1)
|
|
60
|
+
cocoapods-plugins (1.0.0)
|
|
61
|
+
nap
|
|
62
|
+
cocoapods-search (1.0.1)
|
|
63
|
+
cocoapods-trunk (1.6.0)
|
|
64
|
+
nap (>= 0.8, < 2.0)
|
|
65
|
+
netrc (~> 0.11)
|
|
66
|
+
cocoapods-try (1.2.0)
|
|
67
|
+
colored2 (3.1.2)
|
|
68
|
+
concurrent-ruby (1.3.3)
|
|
69
|
+
connection_pool (2.5.3)
|
|
70
|
+
drb (2.2.1)
|
|
71
|
+
escape (0.0.4)
|
|
72
|
+
ethon (0.16.0)
|
|
73
|
+
ffi (>= 1.15.0)
|
|
74
|
+
ffi (1.17.2)
|
|
75
|
+
ffi (1.17.2-aarch64-linux-gnu)
|
|
76
|
+
ffi (1.17.2-aarch64-linux-musl)
|
|
77
|
+
ffi (1.17.2-arm-linux-gnu)
|
|
78
|
+
ffi (1.17.2-arm-linux-musl)
|
|
79
|
+
ffi (1.17.2-arm64-darwin)
|
|
80
|
+
ffi (1.17.2-x86-linux-gnu)
|
|
81
|
+
ffi (1.17.2-x86-linux-musl)
|
|
82
|
+
ffi (1.17.2-x86_64-darwin)
|
|
83
|
+
ffi (1.17.2-x86_64-linux-gnu)
|
|
84
|
+
ffi (1.17.2-x86_64-linux-musl)
|
|
85
|
+
fourflusher (2.3.1)
|
|
86
|
+
fuzzy_match (2.0.4)
|
|
87
|
+
gh_inspector (1.1.3)
|
|
88
|
+
httpclient (2.9.0)
|
|
89
|
+
mutex_m
|
|
90
|
+
i18n (1.14.7)
|
|
91
|
+
concurrent-ruby (~> 1.0)
|
|
92
|
+
json (2.11.3)
|
|
93
|
+
logger (1.7.0)
|
|
94
|
+
minitest (5.25.5)
|
|
95
|
+
molinillo (0.8.0)
|
|
96
|
+
mutex_m (0.3.0)
|
|
97
|
+
nanaimo (0.3.0)
|
|
98
|
+
nap (1.1.0)
|
|
99
|
+
netrc (0.11.0)
|
|
100
|
+
nkf (0.2.0)
|
|
101
|
+
public_suffix (4.0.7)
|
|
102
|
+
rexml (3.4.1)
|
|
103
|
+
ruby-macho (2.5.1)
|
|
104
|
+
securerandom (0.4.1)
|
|
105
|
+
typhoeus (1.4.1)
|
|
106
|
+
ethon (>= 0.9.0)
|
|
107
|
+
tzinfo (2.0.6)
|
|
108
|
+
concurrent-ruby (~> 1.0)
|
|
109
|
+
xcodeproj (1.25.1)
|
|
110
|
+
CFPropertyList (>= 2.3.3, < 4.0)
|
|
111
|
+
atomos (~> 0.1.3)
|
|
112
|
+
claide (>= 1.0.2, < 2.0)
|
|
113
|
+
colored2 (~> 3.1)
|
|
114
|
+
nanaimo (~> 0.3.0)
|
|
115
|
+
rexml (>= 3.3.6, < 4.0)
|
|
116
|
+
|
|
117
|
+
PLATFORMS
|
|
118
|
+
aarch64-linux-gnu
|
|
119
|
+
aarch64-linux-musl
|
|
120
|
+
arm-linux-gnu
|
|
121
|
+
arm-linux-musl
|
|
122
|
+
arm64-darwin
|
|
123
|
+
ruby
|
|
124
|
+
x86-linux-gnu
|
|
125
|
+
x86-linux-musl
|
|
126
|
+
x86_64-darwin
|
|
127
|
+
x86_64-linux-gnu
|
|
128
|
+
x86_64-linux-musl
|
|
129
|
+
|
|
130
|
+
DEPENDENCIES
|
|
131
|
+
activesupport (>= 6.1.7.5, != 7.1.0)
|
|
132
|
+
benchmark
|
|
133
|
+
bigdecimal
|
|
134
|
+
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
|
|
135
|
+
concurrent-ruby (< 1.3.4)
|
|
136
|
+
logger
|
|
137
|
+
mutex_m
|
|
138
|
+
xcodeproj (< 1.26.0)
|
|
139
|
+
|
|
140
|
+
RUBY VERSION
|
|
141
|
+
ruby 3.4.2p28
|
|
142
|
+
|
|
143
|
+
BUNDLED WITH
|
|
144
|
+
2.6.3
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"start": "react-native start"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@regulaforensics/face-sdk": "7.1.
|
|
11
|
+
"@regulaforensics/face-sdk": "7.1.257-beta",
|
|
12
12
|
"@regulaforensics/face-core-basic": "7.1.99-beta",
|
|
13
13
|
"react-native-fs": "2.20.0",
|
|
14
14
|
"react-native-image-picker": "8.2.0",
|
|
@@ -32,14 +32,20 @@ body {
|
|
|
32
32
|
padding-top: 80px;
|
|
33
33
|
margin-top: -10px;
|
|
34
34
|
background-color: rgba(0, 0, 0, 0.03);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.title {
|
|
38
35
|
font-weight: 600;
|
|
39
36
|
font-size: 18px;
|
|
40
37
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
41
38
|
}
|
|
42
39
|
|
|
40
|
+
.sub-header {
|
|
41
|
+
background-color: rgba(0, 0, 0, 0.03);
|
|
42
|
+
width: 100%;
|
|
43
|
+
padding-top: 13px;
|
|
44
|
+
text-align: center;
|
|
45
|
+
font-weight: 550;
|
|
46
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
47
|
+
}
|
|
48
|
+
|
|
43
49
|
.divider {
|
|
44
50
|
height: 1px;
|
|
45
51
|
background-color: rgba(0, 0, 0, 0.075);
|
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
<div class="page">
|
|
2
2
|
<div class="column header">
|
|
3
|
-
<span id="status"
|
|
3
|
+
<span id="status">Loading...</span>
|
|
4
4
|
<div class="column divider"></div>
|
|
5
5
|
</div>
|
|
6
|
-
<div
|
|
7
|
-
<div class="
|
|
8
|
-
<
|
|
9
|
-
<
|
|
6
|
+
<div class="column sub-header">
|
|
7
|
+
<div class="row" style="width: 100%">
|
|
8
|
+
<div style="width: 185px">Similarity: <span id="similarity-status">null</span></div>
|
|
9
|
+
<div style="width: 185px">Liveness: <span id="liveness-status">null</span></div>
|
|
10
10
|
</div>
|
|
11
|
-
<div class="column
|
|
11
|
+
<div class="column divider"></div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="column no-scroll">
|
|
14
|
+
<div class="row" style="height: 100%">
|
|
15
|
+
<img id="first-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
16
|
+
<img id="second-image" src="images/portrait.png" width="175px" style="padding: 5px">
|
|
17
|
+
</div>
|
|
18
|
+
<div class="row">
|
|
12
19
|
<button id="match-faces" class="button">Match</button>
|
|
13
20
|
<button id="start-liveness" class="button">Liveness</button>
|
|
14
|
-
<button id="clear-results" class="button">Clear</button>
|
|
15
|
-
</div>
|
|
16
|
-
<div>
|
|
17
|
-
Similarity: <span style="margin-right: 15px" id="similarity-status">null</span> Liveness: <span
|
|
18
|
-
id="liveness-status">null</span>
|
|
19
21
|
</div>
|
|
20
|
-
<
|
|
22
|
+
<button id="clear-results" class="button" style="width: 360px">Clear</button>
|
|
23
|
+
<div style="padding-top: 30px"></div>
|
|
21
24
|
</div>
|
|
22
25
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/face-sdk",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.257-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
5
|
"main": "www/react-native/index.js",
|
|
6
6
|
"module": "www/capacitor/index.js",
|
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="@regulaforensics/face-sdk" version="7.1.
|
|
2
|
+
<plugin id="@regulaforensics/face-sdk" version="7.1.257-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>
|