Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -247,8 +247,19 @@ def cleanup(state):
|
|
247 |
# Build Gradio UI
|
248 |
demo = gr.Blocks()
|
249 |
with demo:
|
250 |
-
gr.Markdown("## Image
|
251 |
-
gr.Markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
with gr.Row():
|
253 |
with gr.Column():
|
254 |
image_in = gr.Image(label="Upload Image", type="numpy", height=512)
|
|
|
247 |
# Build Gradio UI
|
248 |
demo = gr.Blocks()
|
249 |
with demo:
|
250 |
+
gr.Markdown("## Pixel3dmm [Image Mode]")
|
251 |
+
gr.Markdown("Versatile Screen-Space Priors for Single-Image 3D Face Reconstruction.")
|
252 |
+
gr.HTML(
|
253 |
+
"""
|
254 |
+
<br>
|
255 |
+
<div style="display: flex; justify-content: center; align-items: center; text-align: center;">
|
256 |
+
<a href="https://github.com/SimonGiebenhain/pixel3dmm">
|
257 |
+
<img src='https://img.shields.io/badge/GitHub-Repo-blue'>
|
258 |
+
</a>
|
259 |
+
</div>
|
260 |
+
"""
|
261 |
+
)
|
262 |
+
|
263 |
with gr.Row():
|
264 |
with gr.Column():
|
265 |
image_in = gr.Image(label="Upload Image", type="numpy", height=512)
|