QZFantasies commited on
Commit
d2ccd08
·
1 Parent(s): a366249

update svgs

Browse files
Files changed (1) hide show
  1. app.py +21 -17
app.py CHANGED
@@ -633,23 +633,27 @@ def demo_lhm(pose_estimator, face_detector, lhm, cfg):
633
  </div>
634
  """
635
  )
636
- # gr.Markdown(
637
- # """
638
- # <p align="center">
639
- # <a title="Website" href="https://lingtengqiu.github.io/LHM/" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
640
- # <img src="https://www.obukhov.ai/img/badges/badge-website.svg">
641
- # </a>
642
- # <a title="arXiv" href="https://arxiv.org/pdf/2503.10625" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
643
- # <img src="https://www.obukhov.ai/img/badges/badge-pdf.svg">
644
- # </a>
645
- # <a title="Github" href="https://github.com/aigc3d/LHM" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
646
- # <img src="https://img.shields.io/github/stars/aigc3d/LHM?label=GitHub%20%E2%98%85&logo=github&color=C8C" alt="badge-github-stars">
647
- # </a>
648
- # <a title="Video" href="https://www.youtube.com/watch?v=tivEpz_yiEo" target="_blank" rel="noopener noreferrer" style="display: inline-block;">
649
- # <img src="https://img.shields.io/badge/YouTube-QiuLingteng-red?logo=youtube" alt="Video">
650
- # </a>
651
- # """
652
- # )
 
 
 
 
653
  gr.HTML(
654
  """<p><h4 style="color: red;"> Notes: Please input full-body image in case of detection errors. We simplify the pipeline in spaces: 1) using Rembg instead of SAM2; 2) limit the output video length to 10s; For best visual quality, try the inference code on Github instead.</h4></p>"""
655
  )
 
633
  </div>
634
  """
635
  )
636
+
637
+
638
+ gr.Markdown(
639
+ """
640
+ <div style="display: flex; justify-content: center; align-items: center; text-align: center; margin: 20px; gap: 10px;">
641
+ <a class="flex-item" href="https://arxiv.org/abs/2503.10625" target="_blank">
642
+ <img src="https://img.shields.io/badge/Paper-arXiv-darkred.svg" alt="arXiv Paper">
643
+ </a>
644
+ <a class="flex-item" href="https://lingtengqiu.github.io/LHM/" target="_blank">
645
+ <img src="https://img.shields.io/badge/Project-LHM-blue" alt="Project Page">
646
+ </a>
647
+ <a class="flex-item" href="https://github.com/aigc3d/LHM" target="_blank">
648
+ <img src="https://img.shields.io/github/stars/aigc3d/LHM?label=Github%20%E2%98%85&logo=github&color=C8C" alt="badge-github-stars">
649
+ </a>
650
+ <a class="flex-item" href="https://www.youtube.com/watch?v=tivEpz_yiEo" target="_blank">
651
+ <img src="https://img.shields.io/badge/Youtube-Video-red.svg" alt="Video">
652
+ </a>
653
+ </div>
654
+ """
655
+ )
656
+
657
  gr.HTML(
658
  """<p><h4 style="color: red;"> Notes: Please input full-body image in case of detection errors. We simplify the pipeline in spaces: 1) using Rembg instead of SAM2; 2) limit the output video length to 10s; For best visual quality, try the inference code on Github instead.</h4></p>"""
659
  )