Skip to content

Commit ffbc7cc

Browse files
Initial release of the source code (v0.3.0).
This is a very minimal version: C++ only and Windows only.
1 parent 5d83076 commit ffbc7cc

34 files changed

+9355
-31
lines changed

.gitignore

+47-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,49 @@
1-
# Prerequisites
2-
*.d
3-
4-
# Compiled Object files
5-
*.slo
6-
*.lo
1+
*.user
2+
*.suo
3+
*.opensdf
4+
*.sdf
5+
*.xcuserdatad
6+
*.DS_Store
7+
/ipch
8+
/x64
9+
*.idb
10+
/Debug
11+
Debug_dynamic
12+
Debug_static
13+
Release
14+
Release_dynamic
15+
Release_static
16+
Debug_sdk
17+
Release_sdk
18+
*.orig
19+
*.tlog
20+
Debug
21+
*.gray
22+
*.yuv
23+
*.rgb
24+
*.ipch
25+
*.opendb
26+
*.db
727
*.o
8-
*.obj
9-
10-
# Precompiled Headers
11-
*.gch
12-
*.pch
13-
14-
# Compiled Dynamic libraries
15-
*.so
16-
*.dylib
17-
*.dll
18-
19-
# Fortran module files
20-
*.mod
21-
*.smod
22-
23-
# Compiled Static libraries
24-
*.lai
25-
*.la
26-
*.a
27-
*.lib
28-
29-
# Executables
30-
*.exe
31-
*.out
32-
*.app
28+
*.iws
29+
.idea/tasks.xml
30+
.idea/vcs.xml
31+
.idea/workspace.xml
32+
workspace.xml
33+
local.properties
34+
.gradle
35+
gradle
36+
gradlew
37+
gradlew.bat
38+
build
39+
gen
40+
out
41+
.externalNativeBuild
42+
My Amplifier XE Results*
43+
My Advisor Results*
44+
*.rbg
45+
/.vs/config
46+
/vs_android/.vs
3347
/docs/*.odt#
48+
/vs_android/.workspace
49+

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "assets/FaceLivenessDetection-Models"]
2+
path = assets/FaceLivenessDetection-Models
3+
url = https://github.com/DoubangoTelecom/FaceLivenessDetection-Models.git

SDK_TechnicalGuide_v0.1.pdf

-1020 KB
Binary file not shown.

assets/images/disguise.jpg

259 KB
Loading

assets/images/genuine.jpg

533 KB
Loading

assets/images/spoof.jpg

264 KB
Loading
Binary file not shown.
Binary file not shown.

binaries/windows/x86_64/benchmark.bat

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
benchmark.exe ^
2+
--image ../../../assets/images/disguise.jpg ^
3+
--assets ../../../assets ^
4+
--loops 100 ^
5+
--parallel true

binaries/windows/x86_64/benchmark.exe

141 KB
Binary file not shown.

binaries/windows/x86_64/liveness.bat

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
liveness.exe ^
2+
--image ../../../assets/images/disguise.jpg ^
3+
--assets ../../../assets ^
4+
--parallel false

binaries/windows/x86_64/liveness.exe

140 KB
Binary file not shown.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
runtimeKey.exe ^
2+
--json true ^
3+
--assets ../../../assets
33.5 KB
Binary file not shown.
85.6 MB
Binary file not shown.

0 commit comments

Comments
 (0)