-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
329 lines (206 loc) · 13.6 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0">
<base target="_blank">
<title>PAMIGroup</title>
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<div class="row" id="header">
<div class="logo col-md-1 col-sm-1">
<!--logo to be add-->
<a href="/" target="_self">
<img src="static/image/logo.png" class="img-circle" style="height: 50%;margin-top: 15px;margin-left: 15px">
</a>
</div>
<div class="row col-md-11 col-sm-11" style="margin-top: 10px">
<div class="col-md-9 col-sm-9 pull-left">
<h3>Pattern Analysis and Machine Intelligence Group</h3>
</div>
<div class="col-md-1 col-sm-1 visible-lg visible-md" style="margin-top: 10px">
<ul class="list-unstyled">
<li><a href="members.html" target="_self">Members</a></li>
<li><a href="publications.html" target="_parent">Publications</a></li>
</ul>
</div>
<div class="col-md-1 col-sm-1 visible-lg visible-md" style="margin-top: 10px">
<ul class="list-unstyled">
<li><a href="funds.html" target="_parent">Funds</a></li>
<li><a href="awards.html" target="_parent">Awards</a></li>
</ul>
</div>
<div class="col-md-1 col-sm-1 visible-lg visible-md" style="margin-top: 10px">
<ul class="list-unstyled">
<li><a href="activities.html" target="_parent">Activities</a></li>
<li><a href="contact.html" target="_parent">Contact</a></li>
</ul>
</div>
</div>
</div>
<hr style="height:3px;background-color:rgb(51,101,171);" />
<div class="container visible-sm">
<div class="col-sm-2">
<ul class="list-unstyled">
<li><a href="members.html" target="_self">Members</a></li>
</ul>
</div>
<div class="col-sm-2">
<ul class="list-unstyled">
<li><a href="publications.html" target="_parent">Publications</a></li>
</ul>
</div>
<div class="col-sm-2">
<ul class="list-unstyled">
<li><a href="funds.html" target="_parent">Funds</a></li>
</ul>
</div>
<div class="col-sm-2">
<ul class="list-unstyled">
<li><a href="awards.html" target="_parent">Awards</a></li>
</ul>
</div>
<div class="col-sm-2">
<ul class="list-unstyled">
<li><a href="activities.html" target="_parent">Activities</a></li>
</ul>
</div>
<div class="col-sm-2">
<ul class="list-unstyled">
<li><a href="contact.html" target="_parent">Contact</a></li>
</ul>
</div>
</div>
<div class="container" id="myCarousel" align="center">
<div class="carousel slide" data-ride="carousel" data-interval="3000" id="carousel-pic">
<ol class="carousel-indicators" style="margin-top: 200px">
<li data-target="#carousel-pic" data-slide-to="1" class="active"></li>
<li data-target="#carousel-pic" data-slide-to="2" class=""></li>
<li data-target="#carousel-pic" data-slide-to="3" class=""></li>
<li data-target="#carousel-pic" data-slide-to="4" class=""></li>
<li data-target="#carousel-pic" data-slide-to="5" class=""></li>
</ol>
<div class="carousel-inner" style="width: 75%">
<div class="item active">
<img src="static/resource/PRCV2020.png">
</div>
<div class="item">
<img src="static/resource/2019_summary.jpg">
</div>
<div class="item">
<img src="static/resource/CSMT2019/CSMT_2019.jpeg">
</div>
<div class="item">
<img src="static/resource/research_wordcloud.jpg">
</div>
<div class="item">
<img src="static/resource/hqpaper.png">
</div>
</div>
<a class="left carousel-control" href="#carousel-pic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-pic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<div class="container visible-lg visible-md" >
<div id="topNews" class="col-md-6 col-sm-6 pull-left">
<h3 class="title-h3">News</h3>
<ul>
<li> Congratulations to Zhizhong for his two papers accpeted to TPMAI 2022. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> 2021, Zhizhong Huang's paper has been accpeted by CVPR 2021 for an oral presentation. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> 2021, Yuanyuan Yuan's paper has been accpeted by ICLR 2021. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> 2021, our gaiset and a survey on facial micro-expression analysis have been accpeted by TPAMI. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> For details, please see our publications. </li>
</ul>
</div><!--topNews end-->
<div id="publications" class="col-md-6 col-sm-6 pull-left">
<h3 class=" title-h3">Recent publications</h3>
<ul class="list-publication">
<li>Zhizhong Huang, Shouzhen Chen, Junping Zhang, Hongming Shan. AgeFlow: Conditional Age Progression and Regression with Normalizing Flows. In IJCAI, 2021.</li>
<li>Zhizhong Huang, Junping Zhang, Hongming Shan. When Age-Invariant Face Recognition Meets Face Age Synthesis: A Multi-task Learning Framework. In CVPR (oral), 2021.</li>
<li>Yuanyuan Yuan, Shuai Wang, Junping Zhang. Private Image Reconstruction from System Side Channels Using Generative Models. in ICLR (Poster), Vienna, Austria, May 4-10, 2021(Virtual Conference).</li>
<li>Hanqing Chao, Kun Wang, Yiwei He, Junping Zhang, Jianfeng Feng. GaitSet: Cross-view Gait Recognition through Utilizing Gait as a Deep Set. IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. xx, no. xx, pp. xxx-xxx, 2021.</li>
<li>Xianye Ben, Yi Ren, Junping Zhang, Su-Jing Wang, Kidiyo Kpalma, Weixiao Meng, Yong-Jin Liu. Video-based Facial Micro-Expression Analysis: A Survey of Datasets, Features and Algorithms. IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. xx, no. xx, pp. xxx-xxx, 2021.</li>
<li>Haiping Zhu, Hongming Shan, Yuheng Zhang, Lingfu Che, Xiaoyang Xu, Junping Zhang, Jianbo Shi, Fei-Yue Wang. Convolutional Ordinal Regression Forest for Image Ordinal Estimation. IEEE Transactions on Neural Networks and Learning Systems, vol. xx, no. xx, pp. xxx-xxx, 2021.</li>
<li>Yukun Tian, Yiming Lei, Junping Zhang, James Z. Wang. <a href="https://arxiv.org/abs/1811.02805"> "PaDNet: Pan-Density Crowd Counting, "</a> IEEE Transactions on Image Processing, vol. xx, no. xx, pp. xxx-xxx, 2020.</li>
<li>Zhizhong Huang, Shouzhen Chen, Junping Zhang, Hongming Shan. PFA-GAN: Progressive Face Aging with Generative Adversarial Network. IEEE Transactions on Information Forensics and Security, vol. xx, no. xx, pp. xxx-xxx, 2020.</li>
</ul>
</div><!--publications end-->
</div>
<div class="container visible-sm" >
<div id="topNews" class="col-md-12 col-sm-12 pull-left">
<h3 class="title-h3">Recent publications</h3>
<ul class="list-publication">
<li> Congratulations to Zhizhong for his two papers accpeted to TPMAI 2022. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> 2021, Zhizhong Huang's paper has been accpeted by CVPR 2021 for an oral presentation. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> 2021, Yuanyuan Yuan's paper has been accpeted by ICLR 2021. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> 2021, our gaiset and a survey on facial micro-expression analysis have been accpeted by TPAMI. </li>
<hr style="height:1px;background-color:rgb(51,101,171);" />
<li> For details, please see our publications. </li>
</ul>
</div><!--publications end-->
</div>
<div class="container visible-sm" >
<div id="publications" class="col-md-12 col-sm-12 pull-left">
<h3 class=" title-h3">Recent publications</h3>
<ul class="list-publication">
<li>Zhizhong Huang, Shouzhen Chen, Junping Zhang, Hongming Shan. AgeFlow: Conditional Age Progression and Regression with Normalizing Flows. In IJCAI, 2021.</li>
<li>Zhizhong Huang, Junping Zhang, Hongming Shan. When Age-Invariant Face Recognition Meets Face Age Synthesis: A Multi-task Learning Framework. In CVPR (oral), 2021.</li>
<li>Yuanyuan Yuan, Shuai Wang, Junping Zhang. Private Image Reconstruction from System Side Channels Using Generative Models. in ICLR (Poster), Vienna, Austria, May 4-10, 2021(Virtual Conference).</li>
<li>Hanqing Chao, Kun Wang, Yiwei He, Junping Zhang, Jianfeng Feng. GaitSet: Cross-view Gait Recognition through Utilizing Gait as a Deep Set. IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. xx, no. xx, pp. xxx-xxx, 2021.</li>
<li>Xianye Ben, Yi Ren, Junping Zhang, Su-Jing Wang, Kidiyo Kpalma, Weixiao Meng, Yong-Jin Liu. Video-based Facial Micro-Expression Analysis: A Survey of Datasets, Features and Algorithms. IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. xx, no. xx, pp. xxx-xxx, 2021.</li>
<li>Haiping Zhu, Hongming Shan, Yuheng Zhang, Lingfu Che, Xiaoyang Xu, Junping Zhang, Jianbo Shi, Fei-Yue Wang. Convolutional Ordinal Regression Forest for Image Ordinal Estimation. IEEE Transactions on Neural Networks and Learning Systems, vol. xx, no. xx, pp. xxx-xxx, 2021.</li>
<li>Yukun Tian, Yiming Lei, Junping Zhang, James Z. Wang. <a href="https://arxiv.org/abs/1811.02805"> "PaDNet: Pan-Density Crowd Counting, "</a> IEEE Transactions on Image Processing, vol. xx, no. xx, pp. xxx-xxx, 2020.</li>
<li>Zhizhong Huang, Shouzhen Chen, Junping Zhang, Hongming Shan. PFA-GAN: Progressive Face Aging with Generative Adversarial Network. IEEE Transactions on Information Forensics and Security, vol. xx, no. xx, pp. xxx-xxx, 2020.</li>
</ul>
</div><!--publications end-->
</div>
</div>
<hr style="height:3px;background-color:rgb(51,101,171);">
<div class="footer" style="height:50px;bottom:115px;left:0px; width: 100%">
<div class="footer-1 col-md-12">
<div class="container">
<div class="footerLogo col-sm-6">
<!--<img class="img-circle pull-left" src="logo.png" style="height: 50%">-->
<ul>
<li><h6>Pattern Recognition and Machine Intelligence Group</h6></li>
<li><h6><span class="address_text_span">复旦大学 江湾校区二号交叉学科楼</span></h6></li>
</ul>
</div>
<div class="navs pull-right visible-lg visible-md">
<div class=" nav pull-left" style="margin-top: 10px">
<h4> Links:</h4>
<ul>
<li><a href="http://www.fudan.edu.cn/2016/index.html" target="_parent">Fudan University</a></li>
<li><a href="http://www.iipl.fudan.edu.cn" target="_parent">Shanghai Key Laboratory of Intelligent Information Processing</a></li>
</ul>
</div>
</div><!--navs end-->
</div><!--container end-->
</div><!--footer_1 end-->
<div class="footer-2 col-md-12">
<div class="text-center">
<p><strong>This page has been accessed <span id="busuanzi_value_site_pv"></span> times since Jan. 20th , 2016 </strong></p>
</div>
<div>
<p class="text-center">Copyright © 2018 Fudan University Pattern Analysis and Machine Intelligence Group | Last Modified: <span> 12/20/2022 </span> </p>
</div>
</div><!--footer_2 end-->
</div>
<script src="static/js/jquery.js"></script>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<script src="static/js/bootstrap.js"></script>
</body>
</html>