motionfix-demo / website.py
atnikos's picture
fix egl
4eca5c1
WEBSITE = ("""<div class="embed_hidden" style="text-align: center;">
<h1>MotionFix: Text-Driven 3D Human Motion Editing</h1>
<h3>
<a href="https://is.mpg.de/person/~nathanasiou" target="_blank" rel="noopener noreferrer">Nikos Athanasiou</a><sup>1</sup>,
<a href="https://is.mpg.de/person/acseke" target="_blank" rel="noopener noreferrer">Alpar Cseke</a><sup>1</sup>,
<br>
<a href="https://ps.is.mpg.de/person/mdiomataris" target="_blank" rel="noopener noreferrer">Markos Diomataris</a><sup>1, 3</sup>,
<a href="https://is.mpg.de/person/black" target="_blank" rel="noopener noreferrer">Michael J. Black</a><sup>1</sup>,
<a href="https://imagine.enpc.fr/~varolg/" target="_blank" rel="noopener noreferrer">G&uuml;l Varol</a><sup>2</sup>
</h3>
<h3>
<sup>1</sup>Max Planck Institute for Intelligent Systems, T&uuml;bingen, Germany;
<sup>2</sup>LIGM, &Eacute;cole des Ponts, Univ Gustave Eiffel, CNRS, France,
<sup>3</sup>ETH Z&uuml;rich, Switzerland
</h3>
</div>
<div style="display:flex; gap: 0.3rem; justify-content: center; align-items: center;" align="center">
<a href='https://arxiv.org/pdf/2408.00712'><img src='https://img.shields.io/badge/Arxiv-2405.20340-A42C25?style=flat&logo=arXiv&logoColor=A42C25'></a>
<a href='https://motionfix.is.tue.mpg.de'><img src='https://img.shields.io/badge/Project-Page-%23df5b46?style=flat&logo=Google%20chrome&logoColor=%23df5b46'></a>
<a href='https://www.youtube.com/watch?v=cFa6V6Ua-TY'><img src='https://img.shields.io/badge/YouTube-red?style=flat&logo=youtube&logoColor=white'></a>
</div>
""")
CREDITS=("""<div class="embed_hidden" style="text-align: center;">
<h3>
The renderer of this demo is adapted from the render of
<a href="https://geometry.stanford.edu/projects/humor/" target="_blank" rel="noopener noreferrer">HuMoR</a>
with the help of <a href="https://ps.is.mpg.de/person/trakshit" target="_blank" rel="noopener noreferrer">Tithi Rakshit</a> :)
</h3>
""")
WEB_source = ("""<div class="embed_hidden" style="text-align: center;">
<h1>Pick a motion to edit!</h1>
<h3>
Here you should pick a source motion. You can select it from different sets.
</h3>
<h3>
A text suggestion will be given for a potential edit.
You can click the Random button multiple times to pick different motions.
</h3>
<hr class="double">
</div>
""")
WEB_target = ("""<div class="embed_hidden" style="text-align: center;">
<h1>Now type the text to edit that motion!</h1>
<h3>
Here you should get the generated motion!
</h3>
<h3>
You can use the suggested text or add you own.
Then, you should click Edit to check your result.
You can type a new text and click Edit again to edit the current motion.
</h3>
<hr class="double">
</div>
""")