kbrodt commited on
Commit
0acdc60
·
1 Parent(s): aff3e71

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -21
app.py CHANGED
@@ -20,36 +20,29 @@ CMD = textwrap.dedent("""
20
  TITLE = "Sketch2Pose: Estimating a 3D Character Pose from a Bitmap Sketch"
21
  DESCRIPTION = '''
22
  <table>
 
23
  <th>
24
  <ul>
25
- <li><strong>Project</strong> <a href="http://www-labs.iro.umontreal.ca/~bmpix/sketch2pose/">sketch2pose</a></li>
26
- <li><strong>Code</strong> <a href="https://github.com/kbrodt/sketch2pose">kbrodt/sketch2pose</a>
27
- <li><strong>Paper</strong> <a href="https://dl.acm.org/doi/10.1145/3528223.3530106">ACM</a>
28
- </ul>
 
29
  <iframe src="https://ghbtns.com/github-btn.html?user=kbrodt&repo=sketch2pose&type=star&count=true&v=2&size=small" frameborder="0" scrolling="0" width="100" height="20"></iframe>
 
 
 
 
 
30
  </th>
 
31
  <th>
32
- <video controls autoplay muted loop>
33
  <source src="http://www-labs.iro.umontreal.ca/~bmpix/sketch2pose/sketch2pose.webm" type="video/mp4">
34
  </video>
35
  </th>
36
- </table>
37
 
38
- <details>
39
- <summary>Citation</summary>
40
- ```
41
- @article{brodt2022sketch2pose,
42
- author = {Kirill Brodt and Mikhail Bessmeltsev},
43
- title = {Sketch2Pose: Estimating a 3D Character Pose from a Bitmap Sketch},
44
- journal = {ACM Transactions on Graphics},
45
- year = {2022},
46
- month = {7},
47
- volume = {41},
48
- number = {4},
49
- doi = {10.1145/3528223.3530106},
50
- }
51
- ```
52
- </details>
53
  '''
54
 
55
 
 
20
  TITLE = "Sketch2Pose: Estimating a 3D Character Pose from a Bitmap Sketch"
21
  DESCRIPTION = '''
22
  <table>
23
+
24
  <th>
25
  <ul>
26
+ <li>
27
+ <a href="http://www-labs.iro.umontreal.ca/~bmpix/sketch2pose/">project page</a>
28
+ </li>
29
+ <li>
30
+ <a href="https://github.com/kbrodt/sketch2pose">code</a>
31
  <iframe src="https://ghbtns.com/github-btn.html?user=kbrodt&repo=sketch2pose&type=star&count=true&v=2&size=small" frameborder="0" scrolling="0" width="100" height="20"></iframe>
32
+ </li>
33
+ <li>
34
+ <a href="https://dl.acm.org/doi/10.1145/3528223.3530106">paper ACM SIGGRAPH 2022</a>
35
+ </li>
36
+ </ul>
37
  </th>
38
+
39
  <th>
40
+ <video width="560" height="315" controls autoplay muted loop>
41
  <source src="http://www-labs.iro.umontreal.ca/~bmpix/sketch2pose/sketch2pose.webm" type="video/mp4">
42
  </video>
43
  </th>
 
44
 
45
+ </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  '''
47
 
48