alexnasa commited on
Commit
19ff90c
·
verified ·
1 Parent(s): b18501c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -13
app.py CHANGED
@@ -327,21 +327,15 @@ with gr.Blocks(css=css) as demo:
327
  session_state = gr.State()
328
  demo.load(start_session, outputs=[session_state])
329
 
330
- gr.HTML(
331
- """
332
- <div style="text-align: center;">
333
- <p style="font-size:16px; display: inline; margin: 0;">
334
- <strong>Pixel3dmm [Image Mode]</strong> – Versatile Screen-Space Priors for Single-Image 3D Face Reconstruction.
335
- </p>
336
- <a href="https://github.com/SimonGiebenhain/pixel3dmm" style="display: inline-block; vertical-align: middle; margin-left: 0.5em;">
337
- <img src="https://img.shields.io/badge/GitHub-Repo-blue" alt="GitHub Repo">
338
- </a>
339
- </div>
340
- """
341
- )
342
-
343
  with gr.Column(elem_id="col-container"):
344
 
 
 
 
 
 
 
 
345
  with gr.Row():
346
  with gr.Column():
347
  image_in = gr.Image(label="Upload Image", type="numpy", height=512)
 
327
  session_state = gr.State()
328
  demo.load(start_session, outputs=[session_state])
329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  with gr.Column(elem_id="col-container"):
331
 
332
+ gr.Markdown(
333
+ """ # Pixel3dmm [Image Mode] – Versatile Screen-Space Priors for Single-Image 3D Face Reconstruction
334
+
335
+ • Source: [Github](https://github.com/SimonGiebenhain/pixel3dmm)
336
+ • Gradio App by : [@alexandernasa](https://twitter.com/alexandernasa/) """
337
+ )
338
+
339
  with gr.Row():
340
  with gr.Column():
341
  image_in = gr.Image(label="Upload Image", type="numpy", height=512)