-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
208 lines (208 loc) · 10.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Wensheng Li</title>
<meta name="author" content="Wensheng Li">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="images/favicon/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<table style="width:100%;max-width:800px;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<tr>
<td style="padding:0px">
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<tr>
<td style="padding:2.5%;width:63%;vertical-align:middle">
<p class="name" style="text-align: center;">Wensheng Li(李文盛)</p>
<p>
I am currently working toward the Ph.D. degree with School of Computer Science and Engineering, Sun Yat-sen University,
supervised by Prof. <a href="https://cse.sysu.edu.cn/content/2537">Chengying Gao</a> and Prof. <a href="https://cse.sysu.edu.cn/node/2495">Ning Liu</a>
in <a href="https://www.sysu-imsl.com/">Intelligent and Multimedia Science Laboratory</a>.
I received the B.S. and M.S. degree in computer science and technology from Sun Yat-sen University, Guangzhou, China, in 2018 and 2021, respectively.
</p>
<p>
I'm interested in computer vision and computer graphics,
with a particular focus on human pose estimation, human body reconstruction, and neural rendering.
</p>
<p style="text-align:center">
<a href="mailto:liwsh6@mail2.sysu.edu.cn">Email</a> /
<a href="https://github.com/liwenssss/">Github</a>
</p>
</td>
<td style="padding:2.5%;width:37%;text-align:center;vertical-align:middle">
<a href="images/lws.jpg">
<img style="width:80%;max-width:80%;object-fit: cover; border-radius: 50%;" alt="profile photo" src="images/lws.jpg" class="hoverZoomLink">
</a>
</td>
</tr>
</tbody>
</table>
<!-- News Section -->
<!-- <table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<tr>
<td style="padding:20px;width:100%;vertical-align:middle">
<h2>News</h2>
<ul>
<li>2024.08: One paper was accepted by TVCG</li>
</ul>
</td>
</tr>
</tbody>
</table> -->
<!-- Education Section -->
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<tr>
<td style="padding:20px;width:100%;vertical-align:middle">
<h2>Education</h2>
</td>
</tr>
</tbody>
</table>
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<tr onmouseout="bog_stop()" onmouseover="bog_start()" style="height:100%;">
<td style="padding:20px;width:25%;vertical-align:middle;height:100%;">
<div class="one" style="display: flex; align-items: center; height: 100%;">
<img src='images/sysu.png' width="100%">
</div>
</td>
<td style="padding:20px;width:75%;vertical-align:middle;height:100%;">
<div style="display: flex; align-items: center; height: 100%;">
<ul style="list-style-type: none; padding: 0; margin: 0;">
<li>Sept. 2022 - Now: Ph.D. in Sun Yat-sen University (Major: Computer Science)</li>
<li>Sept. 2019 - Aug. 2021: M.Sc. in Sun Yat-sen University (Major: Software Engineering)</li>
<li>Sept. 2014 - June 2018: B.Eng. in Sun Yat-sen University (Major: Software Engineering)</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
<!-- Publications Section -->
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<tr>
<td style="padding:20px;width:100%;vertical-align:middle">
<h2>Publications</h2>
</td>
</tr>
</tbody>
</table>
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<!-- Publication 1 -->
<tr onmouseout="bog_stop()" onmouseover="bog_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<img src='files/papers/tvcg_efficient_human_2024/framework.png' width="100%">
</div>
<script type="text/javascript">
function bog_start() {
document.getElementById('bog_image1').style.opacity = "1";
}
function bog_stop() {
document.getElementById('bog_image1').style.opacity = "0";
}
bog_stop();
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:top">
<span class="papertitle">Efficient Integration of Neural Representations for Dynamic Humans</span>
<br>
<strong>Wensheng Li</strong>,
Lingzhe Zeng,
Chengying Gao,
Ning Liu*
<br>
<em>IEEE Transactions on Visualization and Computer Graphics (TVCG, 2024)</em>
<br>
[<a href="files/papers/tvcg_efficient_human_2024/Efficient_Integration_of_Neural_Representations_for_Dynamic_Humans.pdf">pdf</a>]
<p>We present a novel approach for efficiently modeling dynamic humans and achieving realistic renderings by integrating neural human representations.</p>
</td>
</tr>
<!-- Publication 2 -->
<tr onmouseout="bog_stop()" onmouseover="bog_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<img src='files/papers/tmm_2024/tmm2024.png' width="100%">
</div>
<script type="text/javascript">
function bog_start() {
document.getElementById('bog_image2').style.opacity = "1";
}
function bog_stop() {
document.getElementById('bog_image2').style.opacity = "0";
}
bog_stop();
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:top">
<span class="papertitle">DanceComposer: Dance-to-Music Generation Using a Progressive Conditional Music Generator</span>
<br>
Xiao Liang,
<strong>Wensheng Li</strong>,
<a href="https://mesunhlf.github.io/">Lifeng Huang</a>,
Chengying Gao*
<br>
<em>IEEE Transactions on Multimedia (TMM, 2024)</em>
<br>
[<a href="https://ieeexplore.ieee.org/abstract/document/10539267">pdf</a>]
<p>We propose DanceComposer, a framework for the automatic generation of appropriate music from dance videos.</p>
</td>
</tr>
<!-- Publication 3 -->
<tr onmouseout="bog_stop()" onmouseover="bog_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<img src='files/papers/neurocomputing2022.jpg' width="100%">
</div>
<script type="text/javascript">
function bog_start() {
document.getElementById('bog_image2').style.opacity = "1";
}
function bog_stop() {
document.getElementById('bog_image2').style.opacity = "0";
}
bog_stop();
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:top">
<span class="papertitle">3D interacting hand pose and shape estimation from a single RGB image</span>
<br>
Chengying Gao*,
Yujia Yang,
<strong>Wensheng Li</strong>,
<br>
<em>Neurocomputing, 2022</em>
<br>
[<a href="https://doi.org/10.1016/j.neucom.2021.12.013">pdf</a>]
<p>In this paper, we tackle the shape and pose estimation task of interacting hands from a single RGB image and outperform other methods by a large margin on the InterHand2.6M dataset.</p>
</td>
</tr>
</tbody>
</table>
<!-- Footer -->
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;">
<tbody>
<tr>
<td style="padding:0px">
<br>
<p style="text-align:center;font-size:small;">
Page inspired by <a href="https://github.com/jonbarron/jonbarron_website">Jon Barron</a>.
</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>