justin2341
commited on
Commit
•
2fa2b7b
1
Parent(s):
1adf3a9
Update demo.py
Browse files
demo.py
CHANGED
@@ -124,20 +124,25 @@ def check_liveness(frame):
|
|
124 |
with gr.Blocks() as demo:
|
125 |
gr.Markdown(
|
126 |
"""
|
127 |
-
# KBY-AI
|
128 |
-
We offer SDKs for
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
sudo docker run -e LICENSE="xxxxx" -p 8080:8080 -p 9000:9000 kbyai/face-liveness-detection:latest
|
135 |
-
```
|
136 |
-
## KYC Verification Demo
|
137 |
-
https://github.com/kby-ai/KYC-Verification
|
138 |
"""
|
139 |
)
|
140 |
with gr.TabItem("Face Liveness Detection"):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
with gr.Row():
|
142 |
with gr.Column():
|
143 |
live_image_input = gr.Image(type='filepath')
|
|
|
124 |
with gr.Blocks() as demo:
|
125 |
gr.Markdown(
|
126 |
"""
|
127 |
+
# KBY-AI Face Liveness Detecion
|
128 |
+
We offer SDKs for face recognition, liveness detection(anti-spoofing) and ID card recognition.
|
129 |
+
We also specialize in providing outsourcing services with a variety of technical stacks like AI(Computer Vision/Machine Learning), Mobile apps, and web apps.
|
130 |
+
|
131 |
+
##### KYC Verification Demo - https://github.com/kby-ai/KYC-Verification-Demo-Android
|
132 |
+
##### ID Capture Web Demo - https://id-document-recognition-react-alpha.vercel.app
|
133 |
+
##### Documentation - Help Center - https://docs.kby-ai.com
|
|
|
|
|
|
|
|
|
134 |
"""
|
135 |
)
|
136 |
with gr.TabItem("Face Liveness Detection"):
|
137 |
+
gr.Markdown(
|
138 |
+
"""
|
139 |
+
##### Docker Hub - https://hub.docker.com/r/kbyai/face-liveness-detection
|
140 |
+
```bash
|
141 |
+
sudo docker pull kbyai/face-liveness-detection:latest
|
142 |
+
sudo docker run -e LICENSE="xxxxx" -p 8080:8080 -p 9000:9000 kbyai/face-liveness-detection:latest
|
143 |
+
```
|
144 |
+
"""
|
145 |
+
)
|
146 |
with gr.Row():
|
147 |
with gr.Column():
|
148 |
live_image_input = gr.Image(type='filepath')
|