-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
909 lines (864 loc) · 44.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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NCBWWVGJ6G"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NCBWWVGJ6G');
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-6848720183547157",
enable_page_level_ads: true
});
</script>
<link rel="shortcut icon" href="myIcon.ico">
<meta name="google-site-verification" content="wX0DpDlTcurqGPPQbadfOpCLpgAZN4zEugLFHZsosCM" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="keywords"
content="Xin Tao, Tao Xin, Tecent, Youtu, Kuaishou, Kling, Video Generation, AIGC, CSE, CUHK, The Chinese University of Hong Kong, Shanghai Jiao Tong University">
<meta name="description" content="Xin Tao's homepage">
<link rel="stylesheet" href="javascripts/jemdoc.css" type="text/css" />
<title>Xin Tao</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-39824124-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="layout-content" style="margin-top:25px">
<table>
<tbody>
<tr>
<td width="670">
<div id="toptitle">
<h1>
<font face="avenir">Xin Tao</font>
<h1>
</div>
<h3>Senior Researcher</h3>
<p>
Visual Generation Group</br>
Large Model and Multimedia Technology</br>
Kuaishou Technology</br>
Shenzhen, Guangdong, China</br>
</br>
Email: <a href="mailto:jiangsutx@gmail.com"> [at] gmail</a>
</p>
<p>
<a href="https://www.linkedin.com/in/xin-tao-33ab555b"><img src="pic/linkedin.png" height="30px"
style="margin-bottom:-3px"></a>
<a href="https://scholar.google.com.hk/citations?user=sQ30WyUAAAAJ&hl=zh-CN"><img
src="pic/google_scholar.png" height="30px" style="margin-bottom:-3px"></a>
</p>
</td>
<td>
<img src="pic/xin_s.jpg" border="0" width="400" style="box-shadow: 4px 4px 8px #888"></br>
</td>
</tr>
</tbody>
</table>
<!-- <h2>Biography [<a href="./projects/Mr. Xin_TAO.pdf">CV</a>]</h2> -->
<h2>Biography</h2>
<p>
I am currently a Senior Researcher and Tech Lead in <a href="https://github.com/KwaiVGI">Visual Generation Group</a>
(<i>a.k.a.</i> <a href="https://kling.kuaishou.com/en"><b style="color: #A00000;">Kling</b></a> Team) of Kuaishou, China.
I joined Kuaishou in 2020, and previously held positions in both <a href="https://ai.kuaishou.com/about">Video Technology Department</a>
and <a href="https://ai.kuaishou.com/about">Y-Tech</a>. I was responsible for spearheading the research and tech transfer of practical
video editing algorithms, as well as a comprehensive system of 2D digital human for live streaming purpose.
</p>
<p>
Before that, I was a Senior Researcher in <a href="https://open.youtu.qq.com/#/open">YouTu X-Lab</a> of Tencent, since 2018. I obtained my
Ph.D. degree in Computer Science and Engineering Department in the Chinese University of Hong Kong (<b>CUHK</b>)
since 2013. My supervisor is <a href="http://www.cse.cuhk.edu.hk/~leojia/">Prof. Jiaya Jia</a>.
I received the B. Eng. degree in Information Engineering from Shanghai Jiao Tong University (<b>SJTU</b>) in 2013,
supervised by <a href="http://qnp.sjtu.edu.cn/content.aspx?info_lb=80&flag=39">Prof. Guangqiang He</a>.
</p>
<p>My research interest includes visual restoration and generation. Currently, I am currently focusing on the research and
deployment of efficient systems for <b>video generation and editing</b>. <b style="color: #A00000;">We are
actively seeking talented and self-motivated research interns or full-time researchers to join us</b>. Please feel free to contact us via <a
href="mailto:taoxin@kuaishou.com">taoxin@kuaishou.com</a>. </p>
<h2>Work and Research Experience</h2>
<table id="tbResearch" width="100%">
<tr>
<td>
<b>Tech Lead</b> <br>
<a href="https://ai.kuaishou.com/about">Visual Generation Group</a> | <a
href="https://www.kuaishou.com/">Kuaishou</a> <br>
November 2024 - present | Shenzhen, China <br>
<a>Mixed Reality Group, Y-tech</a> | <a href="https://www.kuaishou.com/">Kuaishou</a> <br>
November 2023 - 2024 | Shenzhen, China <br>
<a>Video Processing and Analysis Group, Video Technology</a> | <a href="https://www.kuaishou.com/">Kuaishou</a>
<br>
November 2020 - 2023 | Shenzhen, China <br>
</td>
<td>
<img src="pic/kuaishou_s.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
<tr>
<td>
<b>Senior Researcher</b> <br>
<a href="https://youtu.qq.com/">Youtu Lab</a> | <a href="https://www.tencent.com/">Tencent</a> <br>
November 2018 - 2020 | Shenzhen, China <br>
</td>
<td>
<img src="pic/youtu.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
<tr>
<td>
<b>PhD</b> <br>
<a href="https://www.cse.cuhk.edu.hk/v7/en/index.html">Department of Computer Science and Engineering</a> <br>
August 2013 - September 2018 | <a href="http://www.cuhk.edu.hk/english/index.html">The Chinese University of
Hong Kong</a><br>
<p>    Advisor: <a href="http://www.cse.cuhk.edu.hk/~leojia/">Jiaya Jia</a></p>
</td>
<td>
<img src="pic/cuhk.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
<tr>
<td>
<b>Research Intern</b> <br>
<a href="https://youtu.qq.com/">Youtu Lab</a> | <a href="https://www.tencent.com/">Tencent</a> <br>
June 2017 - September 2017 | Shenzhen, China <br>
<p>    Advisor: <a href="https://scholar.google.com/citations?user=nFhLmFkAAAAJ&hl=en">Yu-Wing
Tai</a></p>
</td>
<td>
<img src="pic/youtu.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
<tr>
<td>
<b>Research Intern</b> <br>
<a href="https://research.adobe.com/about-the-labs/ctl/">Creative Technologies Lab</a> | <a
href="https://research.adobe.com/">Adobe Research</a> <br>
June 2016 - August 2016 | Greater Seattle Area <br>
<p>    Advisor: <a href="https://juewang725.github.io/">Jue Wang</a></p>
</td>
<td>
<img src="pic/adobe.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
<tr>
<td>
<b>Research Assistant</b> <br>
<a href="http://qnp.sjtu.edu.cn/Default.aspx">Laboratory of Quantum Nonlinear Photonics (QNP)</a> <br>
January 2011 - January 2013 | <a href="http://en.sjtu.edu.cn/">Shanghai Jiao Tong University</a> <br>
<p>    Advisor: <a href="http://qnp.sjtu.edu.cn/content.aspx?info_lb=80&flag=39">Guangqiang He</a>
</p>
</td>
<td>
<img src="pic/sjtu.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
</table>
<h2>Tech Transfers</h2>
<table id="tbResearch" width="100%">
<tr>
<td width="150">
<img src="pic/kling_qrcode.png" width="100px" style="box-shadow: 4px 4px 8px #888">
</td>
<td><b style="color: #FF0000;">[2024-06]</b> Our Sora-like text-to-video tool, <a href="https://kling.kuaishou.com/en">Kling</a>, is available online for invitation-only users.</td>
</tr>
<tr>
<td width="150">
<img src="pic/virtuallive.png" width="100px" style="box-shadow: 4px 4px 8px #888">
</td>
<td><b>[2023-08]</b> We have officially launched an out-of-the-box 2D digital human live streaming platform <a
href="https://virtuallive.kuaishou.com/">VirtualLive</a>, which has now been used in e-commerce and advertising.
</td>
</tr>
<tr>
<td width="150">
<img src="pic/kuaiying-qrcode.png" width="100px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>We have deployed dozens of cutting-edge video editing algorithms in <a href="https://h5.kwaiying.com/officialWebsite">Kuaiying</a> App.
</td>
</tr>
<tr>
<td width="150">
<img src="https://placehold.co/100x100?text=To+Be+Updated" width="100px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>To be updated.</td>
</tr>
</table>
<div>
<h2>Publications [<a href="https://scholar.google.com.hk/citations?user=sQ30WyUAAAAJ&hl=zh-CN">Google Scholar</a>]
</h2>
<table id="tbPublications" width="100%">
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Perception-Oriented Video
Frame Interpolation via Asymmetric Blending</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2024.</p>
<p style="color: #333;">
Guangyang Wu, <b>Xin Tao</b>, Changlin Li, Wenyi Wang, Xiaohong Liu, Qingqing Zheng
</p>
<p><a href="http://www.cse.cuhk.edu.hk/~leojia/papers/mfsr_blur_cvpr15.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/2404.06692" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Feature Decoupling-Recycling
Network for Fast Interactive Segmentation</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>ACM International Conference on Multimedia</em>
(<i><b>ACM MM</b></i>), 2023.</p>
<p style="color: #333;">
Huimin Zeng, Weinong Wang, <b>Xin Tao</b>, Zhiwei Xiong, Yu-Wing Tai, Wenjie Pei
</p>
<p><a href="https://dl.acm.org/doi/abs/10.1145/3581783.3611837"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/2308.03529" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Scene-Generalizable
Interactive Segmentation of Radiance Fields</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>ACM International Conference on Multimedia</em>
(<i><b>ACM MM</b></i>), 2023.</p>
<p style="color: #333;">
Songlin Tang, Wenjie Pei, <b>Xin Tao</b>, Tanghui Jia, Guangming Lu, Yu-Wing Tai
</p>
<p><a href="https://dl.acm.org/doi/10.1145/3581783.3612246" style="color: #008CBA; text-decoration: none;"><i
class="fas fa-file-pdf"></i> Paper </a><a href="https://arxiv.org/abs/2308.05104"
style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Compression-Aware Video
Super-Resolution</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2023.</p>
<p style="color: #333;">
Yingwei Wang, Takashi Isobe, Xu Jia, <b>Xin Tao</b>, Huchuan Lu, Yu-Wing Tai
</p>
<p><a
href="https://openaccess.thecvf.com/content/CVPR2023/papers/Wang_Compression-Aware_Video_Super-Resolution_CVPR_2023_paper.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">DeViT: Deformed Vision
Transformers in Video Inpainting</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>ACM International Conference on Multimedia</em>
(<i><b>ACM MM</b></i>), 2022.</p>
<p style="color: #333;">
Jiayin Cai, Changlin Li, <b>Xin Tao</b>, Chun Yuan, Yu-Wing Tai
</p>
<p><a href="https://dl.acm.org/doi/abs/10.1145/3503161.3548395"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/2209.13925" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Look Back and Forth: Video
Super-Resolution with Explicit Temporal Difference Modeling</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2022.</p>
<p style="color: #333;">
Takashi Isobe, Xu Jia, <b>Xin Tao</b>, Changlin Li, Ruihuang Li, Yongjie Shi, Jing Mu, Huchuan Lu, Yu-Wing Tai
</p>
<p><a href="https://github.com/junpan19/ETDM" style="color: #008CBA;"><i class="fas fa-project-diagram"></i>
Project </a><a
href="https://openaccess.thecvf.com/content/CVPR2022/papers/Isobe_Look_Back_and_Forth_Video_Super-Resolution_With_Explicit_Temporal_Difference_CVPR_2022_paper.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/2204.07114" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Text-guided Human Image
Manipulation via Image-text Shared Space</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Transactions on Pattern Analysis and
Machine Intelligence</em> (<i><b>TPAMI</b></i>), 2021.</p>
<p style="color: #333;">
Xiaogang Xu, Ying-Cong Chen, <b>Xin Tao</b>, Jiaya Jia
</p>
<p><a href="https://github.com/xiaogang00/Text-Human-Image-Manipulation" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a href="https://ieeexplore.ieee.org/document/9444850"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">MASA-SR: Matching Acceleration
and Spatial Adaptation for Reference-Based Image Super-Resolution</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2021.</p>
<p style="color: #333;">
Liying Lu, Wenbo Li, <b>Xin Tao</b>, Jiangbo Lu, Jiaya Jia
</p>
<p><a href="https://github.com/dvlab-research/MASA-SR" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="https://openaccess.thecvf.com/content/CVPR2021/papers/Lu_MASA-SR_Matching_Acceleration_and_Spatial_Adaptation_for_Reference-Based_Image_Super-Resolution_CVPR_2021_paper.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/2106.02299" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">VCNet: A Robust Approach to
Blind Image Inpainting</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>European Conference on Computer Vision</em>
(<i><b>ECCV</b></i>), 2020.</p>
<p style="color: #333;">
Yi Wang, Ying-Cong Chen, <b>Xin Tao</b>, Jiaya Jia
</p>
<p><a href="https://github.com/shepnerd/blindinpainting_vcnet" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a href="https://arxiv.org/abs/2003.06816"
style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">MuCAN: Multi-Correspondence
Aggregation Network for Video Super-Resolution</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>European Conference on Computer Vision</em>
(<i><b>ECCV</b></i>), 2020.</p>
<p style="color: #333;">
Wenbo Li, <b>Xin Tao</b>, Taian Guo, Lu Qi, Jiangbo Lu, Jiaya Jia
</p>
<p><a href="https://github.com/dvlab-research/Simple-SR" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="https://www.ecva.net/papers/eccv_2020/papers_ECCV/papers/123550341.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/2007.11803" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Particularity beyond
Commonality: Unpaired Identity Transfer with Multiple References</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>European Conference on Computer Vision</em>
(<i><b>ECCV</b></i>), 2020.</p>
<p style="color: #333;">
Ruizheng Wu, <b>Xin Tao</b>, Yingcong Chen, Xiaoyong Shen, Jiaya Jia
</p>
<p><a href="https://www.yingcong.me/publication/2020-wu-particularity/" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="https://jiaya.me/file/papers/idtransfer_eccv20.pdf" style="color: #008CBA; text-decoration: none;"><i
class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Wide-context semantic image
extrapolation</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2019.</p>
<p style="color: #333;">
Yi Wang, <b>Xin Tao</b>, Xiaoyong Shen, Jiaya Jia
</p>
<p><a href="https://github.com/dvlab-research/outpainting_srn" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="http://openaccess.thecvf.com/content_CVPR_2019/papers/Wang_Wide-Context_Semantic_Image_Extrapolation_CVPR_2019_paper.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="projects/imgtrans/teaser.png" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Attribute-Driven Spontaneous
Motion in Unpaired Image Translation</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE International Conference on Computer
Vision</em> (<i><b>ICCV</b></i>), 2019.</p>
<p style="color: #333;">
Ruizheng Wu, <b>Xin Tao</b>, Xiaodong Gu, Xiaoyong Shen, Jiaya Jia
</p>
<p><a href="https://jiangsutx.github.io/" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Project
</a><a
href="https://openaccess.thecvf.com/content_ICCV_2019/papers/Wu_Attribute-Driven_Spontaneous_Motion_in_Unpaired_Image_Translation_ICCV_2019_paper.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/1907.01452" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="projects/pssnscdeblur/teaser.png" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Dynamic Scene Deblurring with
Parameter Selective Sharing and Nested Skip Connections</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2019.</p>
<p style="color: #333;">
Hongyun Gao, <b>Xin Tao</b>, Xiaoyong Shen, Jiaya Jia
</p>
<p><a href="https://github.com/firenxygao/deblur" style="color: #008CBA;"><i class="fas fa-project-diagram"></i>
Project </a><a href="https://jiangsutx.github.io/projects/pssnscdeblur/deblur_cvpr19.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="projects/srninpaint/teaser.png" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Semantic Regeneration Network
</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2019.</p>
<p style="color: #333;">
Yi Wang, <b>Xin Tao</b>, Xiaoyong Shen, Jiaya Jia
</p>
<p><a href="https://github.com/shepnerd/outpainting_srn" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="https://jiangsutx.github.io/projects/srninpaint/imgextrapolation_cvpr19.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="projects/gmcinpaint/teaser.png" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Image Inpainting via
Generative Multi-column Convolutional Neural Networks</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>Conference on Neural Information Processing
Systems</em> (<i><b>NeuIPS</b></i>), 2018.</p>
<p style="color: #333;">
Yi Wang, <b>Xin Tao</b>, Xiaojuan Qi, Xiaoyong Shen, Jiaya Jia
</p>
<p><a href="https://github.com/shepnerd/inpainting_gmcnn" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a href="https://arxiv.org/abs/1810.08771"
style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="projects/srndeblur/teaser.png" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Scale-recurrent Network for
Deep Image Deblurring</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2018.</p>
<p style="color: #333;">
<b>Xin Tao</b>, Hongyun Gao, Xiaoyong Shen, Jue Wang, Jiaya Jia
</p>
<p><a href="https://github.com/jiangsutx/SRN-Deblur" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="https://jiangsutx.github.io/projects/srndeblur/srndeblur_cvpr18.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/1802.01770" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://jiangsutx.github.io/projects/facelet/teaser.png" width="285px"
style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Facelet-Bank for Fast Portrait
Manipulation</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2018.</p>
<p style="color: #333;">
Ying-Cong Chen, Huaijia Lin, Michelle Shu, Ruiyu Li, <b>Xin Tao</b>, Xiaoyong Shen, Yangang Ye, Jiaya Jia
</p>
<p><a href="https://github.com/yingcong/Facelet_Bank" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a href="https://arxiv.org/abs/1803.05576"
style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="projects/defilter/teaser.png" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Zero-order Reverse Filtering
</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE International Conference on Computer
Vision</em> (<i><b>ICCV</b></i>), 2017.</p>
<p style="color: #333;">
<b>Xin Tao</b>, Chao Zhou, Xiaoyong Shen, Jue Wang, Jiaya Jia
</p>
<p><a href="https://github.com/jiangsutx/DeFilter" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="https://jiangsutx.github.io/projects/defilter/filter_reverse_iccv17.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/1704.04037" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="projects/spmc/teaser.png" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Detail-revealing Deep Video
Super-resolution</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE International Conference on Computer
Vision</em> (<i><b>ICCV</b></i>),<i><b>Oral,</b></i> 2017.</p>
<p style="color: #333;">
<b>Xin Tao</b>, Hongyun Gao, Renjie Liao, Jue Wang, Jiaya Jia
</p>
<p><a href="https://github.com/jiangsutx/SPMC_VideoSR" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="https://jiangsutx.github.io/projects/spmc/spmc_videosr_iccv17.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a><a
href="https://arxiv.org/abs/1704.02738" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Arxiv
</a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">High-Quality Correspondence
and Segmentation Estimation for Dual-Lens Smart-Phone Portraits</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE International Conference on Computer
Vision</em> (<i><b>ICCV</b></i>), 2017.</p>
<p style="color: #333;">
Xiaoyong Shen, Hongyun Gao, <b>Xin Tao</b>, Chao Zhou,Jiaya Jia
</p>
<p><a href="https://arxiv.org/abs/1704.02205" style="color: #008CBA;"><i class="fas fa-project-diagram"></i>
Arxiv </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Regional Foremost Matching for
Internet Images</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>ACM Transactions on Graphics</em> (<i><b>Proc.
SIGGRAPH ASIA</b></i>), 2016.</p>
<p style="color: #333;">
Xiaoyong Shen, <b>Xin Tao</b>, Chao Zhou, Hongyun Gao, Jiaya Jia
</p>
<p><a href="http://www.cse.cuhk.edu.hk/leojia/papers/foremost_matching_sa16.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="https://placehold.co/400x285?text=To+Be+Updated" width="285px" style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Deep Automatic Portrait
Matting</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>European Conference on Computer Vision</em>
(<i><b>ECCV</b></i>),<i><b>Spotlight,</b></i> 2016.</p>
<p style="color: #333;">
Xiaoyong Shen, <b>Xin Tao</b>, Hongyun Gao, Chao Zhou, Jiaya Jia
</p>
<p><a href="http://xiaoyongshen.me/papers/deepmatting.pdf" style="color: #008CBA; text-decoration: none;"><i
class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="http://www.cse.cuhk.edu.hk/~leojia/images/depthsingle.jpg" width="285px"
style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Break Ames Room Illusion:
Depth from General Single Images</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>ACM Transactions on Graphics</em> (<i><b>Proc.
SIGGRAPH ASIA</b></i>), 2015.</p>
<p style="color: #333;">
Jianping Shi, <b>Xin Tao</b>, Li Xu, Jiaya Jia
</p>
<p><a href="http://www.cse.cuhk.edu.hk/~leojia/projects/sblurdetect/index.html" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="http://www.cse.cuhk.edu.hk/~leojia/papers/blurestimate_sa15.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="http://www.cse.cuhk.edu.hk/~leojia/images/videosuper.jpg" width="285px"
style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Video Super-Resolution via
Deep Draft-Ensemble Learning</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE International Conference on Computer
Vision</em> (<i><b>ICCV</b></i>), 2015.</p>
<p style="color: #333;">
Renjie Liao, <b>Xin Tao</b>, Ruiyu Li, Ziyang Ma, Jiaya Jia
</p>
<p><a href="http://www.cse.cuhk.edu.hk/~leojia/projects/DeepSR/index.html" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="http://www.cse.cuhk.edu.hk/~leojia/papers/videosr_iccv15.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="http://www.cse.cuhk.edu.hk/~leojia/images/mfsr.jpg" width="285px"
style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Handling Motion Blur in
Multi-Frame Super-Resolution</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>IEEE Conference on Computer Vision and Pattern
Recognition</em> (<i><b>CVPR</b></i>), 2015.</p>
<p style="color: #333;">
Ziyang Ma, Renjie Liao, <b>Xin Tao</b>, Li Xu, Jiaya Jia, Enhua Wu
</p>
<p><a href="http://www.cse.cuhk.edu.hk/~leojia/projects/mfsr/index.html" style="color: #008CBA;"><i
class="fas fa-project-diagram"></i> Project </a><a
href="http://www.cse.cuhk.edu.hk/~leojia/papers/mfsr_blur_cvpr15.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
<tr>
<td width="306">
<img src="http://www.cse.cuhk.edu.hk/~leojia/images/inversekernel.jpg" width="285px"
style="box-shadow: 4px 4px 8px #888">
</td>
<td>
<p style="color: #080808; font-size: 20px; font-style: normal; margin-bottom: 0;">Inverse Kernels for Fast
Spatial Deconvolution</p>
<p style="font-size: 14px; margin-top: 0; margin-bottom: 1;"><em>European Conference on Computer Vision</em>
(<i><b>ECCV</b></i>), 2014.</p>
<p style="color: #333;">
Li Xu, <b>Xin Tao</b>, Jiaya Jia
</p>
<p><a href="https://example.com/project2" style="color: #008CBA;"><i class="fas fa-project-diagram"></i> Project
</a><a href="http://www.cse.cuhk.edu.hk/~leojia/papers/inversekernel_eccv14.pdf"
style="color: #008CBA; text-decoration: none;"><i class="fas fa-file-pdf"></i> Paper </a></p>
</td>
</tr>
</table>
</div>
<h2>Education Background</h2>
<table id="tbEducation" width="100%">
<tr>
<td>
<b>Ph.D.</b> <br>
<a href="https://www.cse.cuhk.edu.hk/v7/en/index.html">Computer Science and Engineering</a> <br>
August 2013 - September 2018 | <a href="http://www.cuhk.edu.hk/english/index.html">The Chinese University of
Hong Kong</a><br>
<p>    Advisor: <a href="http://www.cse.cuhk.edu.hk/~leojia/">Jiaya Jia</a></p>
</td>
<td>
<img src="pic/cuhk.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
<tr>
<td>
<b>B. Eng.</b> <br>
<a href="http://english.seiee.sjtu.edu.cn/">Information Engineering</a> | <b>Honored Class (TRC)</b><br>
January 2011 - January 2013 | <a href="http://en.sjtu.edu.cn/">Shanghai Jiao Tong University</a> <br>
</td>
<td>
<img src="pic/sjtu.png" width="60px" style="box-shadow: 4px 4px 8px #888">
</td>
</tr>
</table>
<!-- <h2>Honors & Awards</h2>
<table style="border-spacing:2px" width="100%">
<tr>
<td>CUHK Certificate of Merit for Best Teaching Assistant Award</td>
<td>2014-2015</td>
</tr>
<tr>
<td>CUHK Postgraduate Studentship</td>
<td>2013-present</td>
</tr>
<tr>
<td>Shanghai outstanding graduates (Top 1%)</td>
<td>2013</td>
</tr>
<tr>
<td>National Scholarship (Top 1%)</td>
<td>2011</td>
</tr>
<tr>
<td>SJTU Academic Excellence Scholarship: First-class Prize (Top 1%)</td>
<td>2011</td>
</tr>
<tr>
<td>Third Prize, China Undergraduate Mathematical Contest in Modeling (CUMCM 2011)</td>
<td>2011</td>
</tr>
<tr>
<td>Honorable Mention Prize in Mathematical Contest In Modeling 2011 (MCM 2011)</td>
<td>2011</td>
</tr>
</table> -->
<h2>Professional Activities</h2>
<table style="border-spacing:2px" width="100%">
<tr>
<td>
<b>Journal Reviewer</b><br>
</td>
</tr>
<tr><td>IEEE Transactions on Pattern Analysis and Machine Intelligence <b>(TPAMI)</b></td></tr>
<tr><td>Transaction on Graphics <b>(TOG)</b></td></tr>
<tr><td>International Journal of Computer Vision <b>(IJCV)</b></td></tr>
<tr><td>Transactions on Image Processing <b>(TIP)</b></td></tr>
<tr><td>IEEE Transactions on Multimedia</td></tr>
<tr>
<td>
<b>Conference Reviewer</b><br>
</td>
</tr>
<tr>
<td>IEEE Conference on Computer Vision and Pattern Recognition (CVPR)</td>
<td>2018-2024</td>
</tr>
<tr>
<td>IEEE International Conference on Computer Vision (ICCV)</td>
<td>2017-2023</td>
</tr>
<tr>
<td>European Conference on Computer Vision (ECCV)</td>
<td>2018-2024</td>
</tr>
<tr>
<td>International Conference on Machine Learning (ICML)</td>
<td>2022-2023</td>
</tr>
<tr>
<td>International Conference on Learning Representations (ICLR)</td>
<td>2021-2023</td>
</tr>
<tr>
<td>Conference on Neural Information Processing Systems (NeurIPS)</td>
<td>2021-2023</td>
</tr>
<tr>
<td>Asian Conference on Computer Vision (ACCV)</td>
<td>2018</td>
</tr>
</table>
<h2>Teaching</h2>
<table id="tbTeaching" border="0" width="100%">
<tbody>
<tr>
<td>CSCI3290 Computational Photography</td>
<td>2013-2014 / 2014-2015 / 2015-2016 / 2016-2017 Fall</td>
</tr>
<tr>
<td>CSCI1050 Hands-on Introduction to MATLAB</td>
<td>2013-2014 Spring</td>
</tr>
<tr>
<td>CSCI5280 Image Processing and Computer Vision</td>
<td>2014-2015 / 2015-2016 Spring</td>
</tr>
</tbody>
</table>
<!-- <h2>Miscellanies</h2> -->
<!-- <li>
<h4>Some of My Friends</h4> 
<a href="http://appsrv.cse.cuhk.edu.hk/~xuli/">Li Xu</a>, 
<a href="http://appsrv.cse.cuhk.edu.hk/~cwlu/">Cewu Lu</a>, 
<a href="http://appsrv.cse.cuhk.edu.hk/~qyan/">Qiong Yan</a>, 
<a href="http://shijianping.me/">Jianping Shi</a>, 
<a href="http://i.cs.hku.hk/~xghan/">Xiaoguang Han</a>, 
<a href="http://www.math.zju.edu.cn/ruizhenhu/">Ruizhen Hu</a>, 
<a href="http://appsrv.cse.cuhk.edu.hk/~rjliao/">Renjie Liao</a>, 
<a href="">Ziyang Ma</a>, 
<a href=""http://appsrv.cse.cuhk.edu.hk/~xtao/"">Xin Tao</a>
<p style="margin-top:3px"> </p>
</li> -->
<!--
<li>
<h4>Coding Resources</h4> 
<a href="http://opencv.itseez.com/">OpenCV</a>, 
<a href="http://www.cgal.org/">CGAL</a>, 
<a href="http://www.opengl.org/">OpenGL</a>, 
<a href="http://www.nvidia.com/object/cuda_home_new.html">CUDA</a>, 
<a href="http://www.wholetomato.com/">Visual Assist</a>, 
<a href="www.mosek.com/">Mosek</a>, 
<a href="http://www.mathworks.cn/products/matlab/">Matlab</a>, 
<a href="http://software.intel.com/en-us/articles/intel-mkl/">Math Kernel Library</a>, 
<a href="http://www.cs.umd.edu/~mount/ANN/">ANN</a>, 
<a href="http://www.netlib.org/lapack/">LAPACK</a>, 
<a href="http://www.tau.ac.il/~stoledo/taucs/">TAUCS</a>, 
<a href="http://www.codeproject.com/Articles/1300/CxImage">CXimage</a>
<p style="margin-top:3px">
</p>
</li>
-->
<div id="footer">
<div id="footer-text"></div>
</div>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-85204102-1', 'auto');
ga('send', 'pageview');
</script>
<script src="http://cdn.bootcss.com/canvas-nest.js/1.0.1/canvas-nest.min.js" opacity='0.6' color="0,68,255"
zIndex="-1"></script>
</body>
</html>