-
Notifications
You must be signed in to change notification settings - Fork 89
/
cat_papers.html
1413 lines (1306 loc) · 78.5 KB
/
cat_papers.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
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<title>Cat Paper Collection</title>
<style type="text/css">
body {
margin-top: 30px;
margin-bottom: 30px;
margin-left: 100px;
margin-right: 100px;
}
p {
margin-top: 0px;
margin-bottom: 0px;
}
.caption {
font-size: 34px;
font-weight: normal;
color: #000;
font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
}
.caption-1 {
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
}
.caption-2 {
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
font-weight: bold;
color: #990000;
}
.caption-3 {
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
font-weight: bold;
color: #F00;
}
.content {
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
text-align: justify;
}
.content a {
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
color: #000;
}
.content strong a {
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
color: #990000;
}
.title-small {
font-size: 20px;
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: bold;
color: #F90;
}
.title-large {
font-size: 28px;
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: bold;
color: #000;
}
.margin {
font-size: 10px;
line-height: 10px;
}
.margin-small {
font-size: 5px;
line-height: 5px;
}
.margin-large {
font-size: 16px;
line-height: 16px;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
content a:link {
text-decoration: none;
}
content a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
color: #06F;
font-family: Tahoma, Geneva, sans-serif;
}
strong a:active {
text-decoration: underline;
color: #06F;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
</head>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-53682931-1', 'auto');
ga('send', 'pageview');
</script>
<body>
<p id="sect-publications" class="title-large">Cat Paper Collection</p>
<table border="0" >
<tbody>
<tr>
<td width="900" >
<p class="content">As reported by Cisco, 90% of net traffic will be visual, and indeed, most of the visual data are cat photos and videos. Thus, understanding, modeling, and synthesizing our feline friends becomes a more and more critical research problem these days, especially for our cat lovers. </p>
<p class="content"> </p>
<p class="content"><em>Cat Paper Collection </em>is an academic paper collection that includes computer graphics, computer vision, and machine learning papers that produce experimental results related to <strong>cats</strong>. If you would like to add/remove an article, please send an email to <strong><a href="http://www.cs.cmu.edu/~junyanz">Jun-Yan Zhu</a></strong> (junyanz at cs dot cmu dot edu). We thank all the authors for their contribution and support.</p>
<p class="content"><br> See also <strong><a href="https://github.com/junyanz/CatPapers">GitHub</a></strong> | <strong> <a href ="https://github.com/junyanz/CatPapers/blob/master/data/reference.csv">CSV file</a></strong>
</p>
</td>
</tr>
</tbody>
</table>
<br>
<table><tbody><tr><td>
<a href="https://compvis.github.io/mask/"><img src="teasers/Hu2024b.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>MASK is All You Need</strong>
<p class="content"><a href="https://taohu.me/">Vincent Tao Hu</a>,
<a href="https://ommer-lab.com/people/ommer/">Björn Ommer</a><br>
In arXiv 2024<br>
<strong><a href="https://arxiv.org/abs/2412.06787">[Paper]</a></strong>
<strong><a href="https://compvis.github.io/mask/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://taohu.me/zigma/"><img src="teasers/Hu2024.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>ZIGMA: A DiT-style Zigzag Mamba Diffusion Model</strong>
<p class="content"><a href="https://taohu.me/">Vincent Tao Hu</a>,
<a href="https://stefan-baumann.eu/">Stefan Andreas Baumann</a>,
<a href="https://www.linkedin.com/in/ming-gui-87b76a16b/?originalSubdomain=de">Ming Gui</a>,
<a href="https://www.linkedin.com/in/grebenkovao/">Olga Grebenkova</a>,
<a href="https://www.linkedin.com/in/pingchuan-ma-492543156/">Pingchuan Ma</a>,
<a href="https://www.linkedin.com/in/js-fischer/">Johannes Fischer</a>,
<a href="https://ommer-lab.com/people/ommer/">Björn Ommer</a><br>
In ECCV 2024<br>
<strong><a href="https://arxiv.org/abs/2403.13802">[Paper]</a></strong>
<strong><a href="https://taohu.me/zigma/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/2311.17048"><img src="teasers/Han2024.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Zero-shot Referring Expression Comprehension via Structural Similarity Between Images and Captions</strong>
<p class="content"><a href="https://show-han.github.io/">Zeyu Han</a>,
<a href="https://fangruizhu.github.io/">Fangrui Zhu</a>,
<a href="https://estherbear.github.io/">Qianru Lao</a>,
<a href="https://jianghz.me/">Huaizu Jiang</a><br>
In CVPR 2024<br>
<strong><a href="https://arxiv.org/abs/2311.17048">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/2211.09324"><img src="teasers/Choi2023.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Blurring-Sharpening Process Models for Collaborative Filtering</strong>
<p class="content"><a href="https://jeongwhanchoi.me/">Jeongwhan Choi</a>,
<a href="https://seoyoungh.github.io">Seoyoung Hong</a>,
<a href="https://scholar.google.com/citations?user=VSuM3gYAAAAJ&hl=en">Noseong Park</a>,
<a href="https://scholar.google.com/citations?user=px5LGgMAAAAJ&hl=en">Sung-Bae Cho</a><br>
In SIGIR 2023<br>
<strong><a href="https://arxiv.org/abs/2211.09324">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/2304.12152"><img src="teasers/Jiang2023.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Efficient Halftoning via Deep Reinforcement Learning</strong>
<p class="content">Haitian Jiang,
Dongliang Xiong,
Xiaowen Jiang,
Li Ding,
Liang Chen,
Kai Huang<br>
In IEEE TIP 2023<br>
<strong><a href="https://arxiv.org/abs/2304.12152">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/2203.08140"><img src="teasers/Xiang2022.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Learning Spatio-Temporal Downsampling for Effective Video Upscaling</strong>
<p class="content"><a href="https://engineering.purdue.edu/people/xiaoyu.xiang.1">Xiaoyu Xiang</a>,
<a href="https://yapengtian.org/">Yapeng Tian</a>,
<a href="https://apvijay.github.io/">Vijay Rengarajan</a>,
Lucas Young,
<a href="https://scholar.google.com/citations?user=GwGsvm0AAAAJ&hl=en">Bo Zhu</a>,
Rakesh Ranjan<br>
In ECCV 2022<br>
<strong><a href="https://arxiv.org/abs/2203.08140">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://banmo-www.github.io/"><img src="teasers/Yang2022.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>BANMo: Building Animatable 3D Neural Models from Many Casual Videos</strong>
<p class="content"><a href="https://gengshan-y.github.io/">Gengshan Yang</a>,
<a href="https://minhpvo.github.io/">Minh Vo</a>,
<a href="https://nneverova.github.io/">Natalia Neverova</a>,
<a href="http://www.cs.cmu.edu/~deva/">Deva Ramanan</a>,
<a href="https://www.robots.ox.ac.uk/~vedaldi/">Andrea Vedaldi</a>,
<a href="https://jhugestar.github.io/">Hanbyul Joo</a><br>
In CVPR 2022<br>
<strong><a href="https://arxiv.org/abs/2112.12761">[Paper]</a></strong>
<strong><a href="https://banmo-www.github.io/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/2203.14863"><img src="teasers/Xiang2022b.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>HIME: Efficient Headshot Image Super-Resolution with Multiple Exemplars</strong>
<p class="content"><a href="https://engineering.purdue.edu/people/xiaoyu.xiang.1">Xiaoyu Xiang</a>,
Jon Morton,
<a href="https://fitsumreda.github.io/">Fitsum A Reda</a>,
Lucas Young,
<a href="https://fperazzi.github.io/">Federico Perazzi</a>,
Rakesh Ranjan,
Amit Kumar,
Andrea Colaco,
Jan Allebach<br>
In ArXiv 2022<br>
<strong><a href="https://arxiv.org/abs/2203.14863">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://chengao.vision/FGVC/"><img src="teasers/Gao2020.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Flow-edge Guided Video Completion</strong>
<p class="content"><a href="http://chengao.vision/">Chen Gao</a>,
Ayush Saraf,
<a href="https://filebox.ece.vt.edu/~jbhuang/">Jia-Bin Huang</a>,
<a href="https://johanneskopf.de/">Johannes Kopf</a><br>
In ECCV 2020<br>
<strong><a href="https://arxiv.org/pdf/2009.01835.pdf">[Paper]</a></strong>
<strong><a href="http://chengao.vision/FGVC/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://kaiyuyue.com/mgd/"><img src="teasers/Yue2020.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Matching Guided Distillation</strong>
<p class="content"><a href="https://kaiyuyue.com/">Kaiyu Yue</a>,
Jiangfan Deng,
<a href="http://www.f-zhou.com/">Feng Zhou</a><br>
In ECCV 2020<br>
<strong><a href="https://arxiv.org/pdf/2008.09958.pdf">[Paper]</a></strong>
<strong><a href="http://kaiyuyue.com/mgd/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://ieeexplore.ieee.org/document/8703138"><img src="teasers/Yan2019.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Strong 3D Printing by TPMS Injection</strong>
<p class="content">Xin Yan,
Cong Rao,
Lin Lu,
<a href="https://www.cs.bgu.ac.il/~asharf/">Andrei Sharf</a>,
<a href="http://irc.cs.sdu.edu.cn/~zhaohaisen/">Haisen Zhao</a>,
<a href="https://cfcs.pku.edu.cn/baoquan/">Baoquan Chen</a><br>
In IEEE TVCG 2019<br>
<strong><a href="https://ieeexplore.ieee.org/document/8703138">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://cvil.eecs.yorku.ca/projects/public_html/wb_emulation/index.html"><img src="teasers/Afifi2019.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>What Else Can Fool Deep Learning? Addressing Color Constancy Errors on Deep Neural Network Performance</strong>
<p class="content"><a href="https://sites.google.com/view/mafifi">Mahmoud Afifi</a>,
<a href="http://www.cse.yorku.ca/~mbrown/">Michael S Brown</a><br>
In ICCV 2019<br>
<strong><a href="https://arxiv.org/pdf/1912.06960.pdf">[Paper]</a></strong>
<strong><a href="http://cvil.eecs.yorku.ca/projects/public_html/wb_emulation/index.html">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://github.com/NVlabs/stylegan"><img src="teasers/Karras2019.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>A Style-Based Generator Architecture for Generative Adversarial Networks</strong>
<p class="content"><a href="https://research.nvidia.com/person/tero-karras">Tero Karras</a>,
<a href="https://users.aalto.fi/~laines9/">Samuli Laine</a>,
<a href="https://research.nvidia.com/person/timo-aila">Timo Aila</a><br>
In CVPR 2019<br>
<strong><a href="https://arxiv.org/abs/1812.04948">[Paper]</a></strong>
<strong><a href="https://github.com/NVlabs/stylegan">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://github.com/AlexiaJM/RelativisticGAN"><img src="teasers/Jolicoeur-Martineau2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>The relativistic discriminator: a key element missing from standard GAN</strong>
<p class="content"><a href="https://ajolicoeur.wordpress.com/">Alexia Jolicoeur-Martineau</a><br>
In arXiv 2018<br>
<strong><a href="https://arxiv.org/pdf/1807.00734.pdf">[Paper]</a></strong>
<strong><a href="https://github.com/AlexiaJM/RelativisticGAN">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://irc.cs.sdu.edu.cn/DSCarver/"><img src="teasers/Zhao2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>DSCarver: Decompose-and-Spiral-Carve for Subtractive Manufacturing</strong>
<p class="content"><a href="http://irc.cs.sdu.edu.cn/~zhaohaisen/">Haisen Zhao</a>,
<a href="http://www.cs.sfu.ca/~haoz/">Hao Zhang</a>,
<a href="https://sites.google.com/site/xinshiqing/">Shiqing Xin</a>,
Yuanmin Deng,
Changhe Tu,
<a href="https://i.cs.hku.hk/~wenping/">Wenping Wang</a>,
<a href="http://www.cs.tau.ac.il/~dcor/">Daniel Cohen-Or</a>,
<a href="http://www.cs.sdu.edu.cn/~baoquan/">Baoquan Chen</a><br>
In SIGGRAPH 2018<br>
<strong><a href="http://irc.cs.sdu.edu.cn/DSCarver/files/DSCarver.pdf">[Paper]</a></strong>
<strong><a href="http://irc.cs.sdu.edu.cn/DSCarver/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://fve.bfa.edu.cn/recap/nbbs/"><img src="teasers/Aberman2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Neural Best-Buddies: Sparse Cross-Domain Correspondence</strong>
<p class="content"><a href="https://kfiraberman.github.io/">Kfir Aberman</a>,
<a href="https://liaojing.github.io/html/">Jing Liao</a>,
<a href="https://rubbly.cn/">Mingyi Shi</a>,
<a href="http://www.cs.huji.ac.il/~danix/">Dani Lischinski</a>,
<a href="http://www.cs.sdu.edu.cn/~baoquan/">Baoquan Chen</a>,
<a href="https://www.cs.tau.ac.il/~dcor/">Daniel Cohen-Or</a><br>
In SIGGRAPH 2018<br>
<strong><a href="https://arxiv.org/abs/1805.04140">[Paper]</a></strong>
<strong><a href="http://fve.bfa.edu.cn/recap/nbbs/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://people.csail.mit.edu/jsolomon/assets/curve_fmaps.pdf"><img src="teasers/Gehre2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Interactive Curve Constrained Functional Maps</strong>
<p class="content"><a href="https://www.graphics.rwth-aachen.de/person/33/">Anne Gehre</a>,
<a href="https://www.radcliffe.harvard.edu/people/michael-bronstein">Michael Bronstein</a>,
<a href="https://www.graphics.rwth-aachen.de/person/3/">Leif Kobbelt</a>,
<a href="http://people.csail.mit.edu/jsolomon/">Justin Solomon</a><br>
In SGP 2018<br>
<strong><a href="https://people.csail.mit.edu/jsolomon/assets/curve_fmaps.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/pdf/1802.08195"><img src="teasers/Elsayed2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Adversarial Examples that Fool both Computer Vision and Time-Limited Humans</strong>
<p class="content"><a href="https://ai.google/research/people/GamaleldinFathyElsayed">Gamaleldin F. Elsayed</a>,
<a href="shreya-shankar.com">Shreya Shankar</a>,
<a href="https://scholar.google.com/citations?user=7N-ethYAAAAJ&hl=en">Brian Cheung</a>,
<a href="https://www.papernot.fr/">Nicolas Papernot</a>,
<a href="https://ai.google/research/people/AlexeyKurakin">Alex Kurakin</a>,
<a href="https://www.iangoodfellow.com/">Ian Goodfellow</a>,
<a href="http://www.sohldickstein.com/">Jascha Sohl-Dickstein</a><br>
In NeurIPS 2018<br>
<strong><a href="https://arxiv.org/pdf/1802.08195">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/1704.03477"><img src="teasers/Ha2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>A Neural Representation of Sketch Drawings</strong>
<p class="content"><a href="https://research.google.com/pubs/105004.html">David Ha</a>,
<a href="https://research.google.com/pubs/author39086.html">Douglas Eck</a><br>
In ICLR 2018<br>
<strong><a href="https://arxiv.org/abs/1704.03477">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://github.com/brownvc/ganimorph/"><img src="teasers/Gokaslan2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Improving Shape Deformation in Unsupervised Image-to-Image Translation</strong>
<p class="content"><a href="https://skylion007.github.io/">Aaron Gokaslan</a>,
<a href="http://vivekr.me/">Vivek Ramanujan</a>,
<a href="https://dritchie.github.io/">Daniel Ritchie</a>,
<a href="https://researchportal.bath.ac.uk/en/persons/kwang-in-kim/">Kwang In Kim</a>,
<a href="http://jamestompkin.com/">James Tompkin</a><br>
In ECCV 2018<br>
<strong><a href="https://arxiv.org/pdf/1808.04325.pdf">[Paper]</a></strong>
<strong><a href="https://github.com/brownvc/ganimorph/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://github.com/NVlabs/MUNIT"><img src="teasers/Huang2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Multimodal UNsupervised Image-to-image Translation</strong>
<p class="content"><a href="http://www.cs.cornell.edu/~xhuang/">Xun Huang</a>,
<a href="http://mingyuliu.net/">Ming-Yu Liu</a>,
<a href="https://vision.cornell.edu/se3/people/serge-belongie/">Serge Belongie</a>,
<a href="http://jankautz.com/">Jan Kautz</a><br>
In ECCV 2018<br>
<strong><a href="https://arxiv.org/pdf/1804.04732.pdf">[Paper]</a></strong>
<strong><a href="https://github.com/NVlabs/MUNIT">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://ps.is.tuebingen.mpg.de/publications/zuffi-cvpr-2018"><img src="teasers/Zuffi2018.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Lions and Tigers and Bears: Capturing Non-Rigid 3D Articulated Shape from Images</strong>
<p class="content"><a href="https://ps.is.tuebingen.mpg.de/person/szuffi">Silvia Zuffi</a>,
<a href="https://people.eecs.berkeley.edu/~kanazawa/">Angjoo Kanazawa</a>,
<a href="https://ps.is.mpg.de/~black">Michael J. Black</a><br>
In CVPR 2018<br>
<strong><a href="http://files.is.tue.mpg.de/black/papers/zuffiCVPR2018.pdf">[Paper]</a></strong>
<strong><a href="https://ps.is.tuebingen.mpg.de/publications/zuffi-cvpr-2018">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://people.eecs.berkeley.edu/~lingqi/publications/paper_fur2.pdf"><img src="teasers/Yan2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>An Efficient and Practical Near and Far Field Fur Reflectance Model</strong>
<p class="content"><a href="https://people.eecs.berkeley.edu/~lingqi/">Ling-Qi Yan</a>,
<a href="graphics.ucsd.edu/~henrik/">Henrik Wann Jensen</a>,
<a href="http://cseweb.ucsd.edu/~ravir/">Ravi Ramamoorthi</a><br>
In SIGGRAPH 2017<br>
<strong><a href="https://people.eecs.berkeley.edu/~lingqi/publications/paper_fur2.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://cseweb.ucsd.edu/~viscomp/projects/LF/papers/SIG17/lfv/"><img src="teasers/Wang2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Light Field Video Capture Using a Learning-Based Hybrid Imaging System</strong>
<p class="content"><a href="https://people.eecs.berkeley.edu/~tcwang0509/">Ting-Chun Wang</a>,
<a href="https://www.cs.cmu.edu/~junyanz/">Jun-Yan Zhu</a>,
<a href="http://nkhademi.com/">Nima Khademi Kalantari</a>,
<a href="https://people.eecs.berkeley.edu/~efros/">Alexei A. Efros</a>,
<a href="http://cseweb.ucsd.edu/~ravir/">Ravi Ramamoorthi</a><br>
In SIGGRAPH 2017<br>
<strong><a href="https://arxiv.org/abs/1705.02997">[Paper]</a></strong>
<strong><a href="http://cseweb.ucsd.edu/~viscomp/projects/LF/papers/SIG17/lfv/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://github.com/mingyuliutw/UNIT"><img src="teasers/Liu2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Unsupervised Image-to-Image Translation Networks</strong>
<p class="content"><a href="http://mingyuliu.net/">Ming-Yu Liu</a>,
<a href="http://www.iupr.com/tmb">Thomas Breuel</a>,
<a href="http://jankautz.com/">Jan Kautz</a><br>
In NIPS 2017<br>
<strong><a href="https://arxiv.org/pdf/1703.00848.pdf">[Paper]</a></strong>
<strong><a href="https://github.com/mingyuliutw/UNIT">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://junyanz.github.io/CycleGAN/"><img src="teasers/Zhu*2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks</strong>
<p class="content"><a href="http://www.cs.cmu.edu/~junyanz/">Jun-Yan Zhu*</a>,
<a href="https://taesung.me/">Taesung Park*</a>,
<a href="http://people.eecs.berkeley.edu/~isola/">Phillip Isola</a>,
<a href="https://people.eecs.berkeley.edu/~efros/">Alexei A. Efros</a><br>
In ICCV 2017<br>
<strong><a href="https://arxiv.org/abs/1703.10593">[Paper]</a></strong>
<strong><a href="https://junyanz.github.io/CycleGAN/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/1705.02193"><img src="teasers/Thewlis2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Unsupervised learning of object landmarks by factorized spatial embeddings</strong>
<p class="content"><a href="http://www.robots.ox.ac.uk/~jdt/">James Thewlis</a>,
<a href="http://homepages.inf.ed.ac.uk/hbilen/">Hakan Bilen</a>,
<a href="http://www.robots.ox.ac.uk/~vedaldi/">Andrea Vedaldi</a><br>
In ICCV 2017<br>
<strong><a href="https://arxiv.org/abs/1705.02193">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://github.com/phillipi/pix2pix"><img src="teasers/Isola2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Image-to-Image Translation with Conditional Adversarial Networks</strong>
<p class="content"><a href="https://github.com/phillipi">Phillip Isola</a>,
<a href="https://www.cs.cmu.edu/~junyanz/">Jun-Yan Zhu</a>,
<a href="https://people.eecs.berkeley.edu/~tinghuiz/">Tinghui Zhou</a>,
<a href="https://people.eecs.berkeley.edu/~efros/">Alexei A. Efros</a><br>
In CVPR 2017<br>
<strong><a href="https://arxiv.org/abs/1611.07004">[Paper]</a></strong>
<strong><a href="https://github.com/phillipi/pix2pix">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/abs/1612.06370"><img src="teasers/Pathak2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Learning Features by Watching Objects Move</strong>
<p class="content"><a href="https://people.eecs.berkeley.edu/~pathak/">Deepak Pathak</a>,
<a href="http://www.rossgirshick.info/">Ross Girshick</a>,
<a href="https://pdollar.github.io/">Piotr Dollar</a>,
<a href="https://people.eecs.berkeley.edu/~trevor/">Trevor Darrell</a>,
<a href="http://home.bharathh.info/">Bharath Hariharan</a><br>
In CVPR 2017<br>
<strong><a href="https://arxiv.org/abs/1612.06370">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://jeremywrnr.com/project/codepilot/"><img src="teasers/Warner2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>CodePilot: Scaffolding End-to-End Collaborative Software Development for Novice Programmers</strong>
<p class="content"><a href="https://jeremywrnr.com/">Jeremy Warner</a>,
<a href="http://www.pgbovine.net/index.html">Philip J. Guo</a><br>
In CHI 2017<br>
<strong><a href="http://www.pgbovine.net/publications/CodePilot-collaborative-programming-IDE_CHI-2017.pdf">[Paper]</a></strong>
<strong><a href="https://jeremywrnr.com/project/codepilot/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://joe.cat/CHI-revolt/"><img src="teasers/Chang2017.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Revolt: Collaborative Crowdsourcing for Labeling Machine Learning Datasets</strong>
<p class="content"><a href="https://joe.cat/">Joseph Chee Chang</a>,
<a href="http://saleemaamershi.com/">Saleema Amershi</a>,
<a href="https://www.ecekamar.com/">Ece Kamar</a><br>
In CHI 2017<br>
<strong><a href="https://joe.cat/images/papers/revolt-crowd-labeling.pdf">[Paper]</a></strong>
<strong><a href="https://joe.cat/CHI-revolt/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://www.graphics.rwth-aachen.de/media/papers/Campen2016_SimplicialFoliations.pdf"><img src="teasers/Campen2016.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Bijective Maps from Simplicial Foliations</strong>
<p class="content"><a href="https://www.graphics.rwth-aachen.de/person/7/">Marcel Campen</a>,
<a href="http://vgc.poly.edu/~csilva/">Claudio T. Silva</a>,
<a href="http://mrl.nyu.edu/~dzorin/">Denis Zorin</a><br>
In SIGGRAPH 2016<br>
<strong><a href="https://www.graphics.rwth-aachen.de/media/papers/Campen2016_SimplicialFoliations.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://github.com/akanazawa/catdeform"><img src="teasers/Kanazawa2016.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Learning 3D Deformation of Animals from 2D Images</strong>
<p class="content"><a href="http://www.umiacs.umd.edu/~kanazawa/">Angjoo Kanazawa</a>,
<a href="https://services.math.duke.edu/~shaharko/">Shahar Kovalsky</a>,
<a href="http://www.wisdom.weizmann.ac.il/~/ronen/">Ronen Basri</a>,
<a href="https://www.cs.umd.edu/~djacobs/">David W. Jacobs</a><br>
In Eurographics 2016<br>
<strong><a href="https://arxiv.org/abs/1507.07646">[Paper]</a></strong>
<strong><a href="https://github.com/akanazawa/catdeform">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://arxiv.org/pdf/1608.04366.pdf"><img src="teasers/Wu2016.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Infill Optimization for Additive Manufacturing--Approaching Bone-like Porous Structures</strong>
<p class="content"><a href="https://wwwcg.in.tum.de/group/persons/wu.html">Jun Wu</a>,
<a href="http://www.dtu.dk/english/service/phonebook/person?id=18078&tab=2&qt=dtupublicationquery">Niels Aage</a>,
<a href="https://wwwcg.in.tum.de/group/persons/westermann.html">Rüdiger Westermann</a>,
<a href="http://www.dtu.dk/english/service/phonebook/person?id=2278&tab=1">Ole Sigmund</a><br>
In Arxiv 2016<br>
<strong><a href="https://arxiv.org/pdf/1608.04366.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://people.eecs.berkeley.edu/~lingqi/publications/paper_fur.pdf"><img src="teasers/Yan2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Physically-Accurate Fur Reflectance: Modeling, Measurement and Rendering</strong>
<p class="content"><a href="http://people.eecs.berkeley.edu/~lingqi/">Ling-Qi Yan</a>,
<a href="http://cseweb.ucsd.edu/~c5tseng/">Chi-Wei Tseng</a>,
<a href="graphics.ucsd.edu/~henrik/">Henrik Wann Jensen</a>,
<a href="https://cseweb.ucsd.edu/~ravir/">Ravi Ramamoorthi</a><br>
In SIGGRAPH Asia 2015<br>
<strong><a href="http://people.eecs.berkeley.edu/~lingqi/publications/paper_fur.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://members.loria.fr/JDumas/publications/sfsyn/"><img src="teasers/Dumas2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>By-Example Synthesis of Structurally Sound Patterns</strong>
<p class="content"><a href="https://members.loria.fr/JDumas/">Jérémie Dumas</a>,
An Lu,
<a href="http://www.antexel.com/sylefeb/research">Sylvain Lefebvre</a>,
<a href="https://wwwcg.in.tum.de/group/persons/wu.html">Jun Wu</a>,
<a href="https://wwwcg.in.tum.de/group/persons/dick.html">Christian Dick</a><br>
In SIGGRAPH 2015<br>
<strong><a href="https://members.loria.fr/JDumas/files/papers/sfsyn/byexsyn.pdf">[Paper]</a></strong>
<strong><a href="https://members.loria.fr/JDumas/publications/sfsyn/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.cs.columbia.edu/cg/hydrographics/"><img src="teasers/Zhang2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Computational Hydrographic Printing</strong>
<p class="content">Yizhong Zhang,
Chunji Yin,
<a href="http://www.cs.columbia.edu/~cxz/">Changxi Zheng</a>,
<a href="http://www.kunzhou.net/">Kun Zhou</a><br>
In SIGGRAPH 2015<br>
<strong><a href="http://www.cs.columbia.edu/cg/hydrographics/hydrographics.pdf">[Paper]</a></strong>
<strong><a href="http://www.cs.columbia.edu/cg/hydrographics/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://people.csail.mit.edu/jsolomon/assets/convolutional_w2.compressed.pdf"><img src="teasers/Solomon2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Convolutional Wasserstein Distances: Efficient Optimal Transportation on Geometric Domains</strong>
<p class="content"><a href="http://people.csail.mit.edu/jsolomon/">Justin Solomon</a>,
<a href="http://fernandodegoes.org/">Fernando de Goes</a>,
<a href="http://gpeyre.github.io/"> Gabriel Peyre</a>,
<a href="http://www.iip.ist.i.kyoto-u.ac.jp/member/cuturi/">Marco Cuturi</a>,
<a href="http://autodeskresearch.com/people/adrianbutscher">Adrian Butscher</a>,
Andy Nguyen,
Tao Du,
<a href="http://geometry.stanford.edu/member/guibas/">Leonidas Guibas</a><br>
In SIGGRAPH 2015<br>
<strong><a href="http://people.csail.mit.edu/jsolomon/assets/convolutional_w2.compressed.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://wwwcg.in.tum.de/research/research/publications/2015/high-resolution-topology-optimization.html"><img src="teasers/Wu2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>A System for High-Resolution Topology Optimization</strong>
<p class="content"><a href="https://wwwcg.in.tum.de/group/persons/wu.html">Jun Wu</a>,
<a href="https://wwwcg.in.tum.de/group/persons/dick.html">Christian Dick</a>,
<a href="https://wwwcg.in.tum.de/group/persons/westermann.html">Rüdiger Westermann</a><br>
In IEEE Transactions on Visualization and Computer Graphics 2015<br>
<strong><a href="http://wwwcg.in.tum.de/fileadmin/user_upload/Lehrstuehle/Lehrstuhl_XV/Research/Publications/2015/TopOpt/preprint.pdf">[Paper]</a></strong>
<strong><a href="http://wwwcg.in.tum.de/research/research/publications/2015/high-resolution-topology-optimization.html">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://graphics.cs.cmu.edu/projects/deepContext/"><img src="teasers/Doersch2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Unsupervised Visual Representation Learning by Context Prediction</strong>
<p class="content"><a href="http://www.cs.cmu.edu/~cdoersch/">Carl Doersch</a>,
<a href="http://www.cs.cmu.edu/~abhinavg/">Abhinav Gupta</a>,
<a href="http://www.eecs.berkeley.edu/~efros/">Alexei A. Efros</a><br>
In ICCV 2015<br>
<strong><a href="http://arxiv.org/pdf/1505.05192v2">[Paper]</a></strong>
<strong><a href="http://graphics.cs.cmu.edu/projects/deepContext/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://people.eecs.berkeley.edu/~jonlong/long_shelhamer_fcn.pdf"><img src="teasers/Long2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Fully Convolutional Networks for Semantic Segmentation</strong>
<p class="content"><a href="http://people.eecs.berkeley.edu/~jonlong/">Jon Long</a>,
<a href="http://imaginarynumber.net/">Evan Shelhamer</a>,
<a href="http://people.eecs.berkeley.edu/~trevor/">Trevor Darrell</a><br>
In CVPR 2015<br>
<strong><a href="http://people.eecs.berkeley.edu/~jonlong/long_shelhamer_fcn.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://visual.cs.ucl.ac.uk/pubs/ccca/"><img src="teasers/Turmukhambetov2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Modeling Object Appearance using Context-Conditioned Component Analysis</strong>
<p class="content"><a href="http://www.cs.ucl.ac.uk/staff/dturmukh/">Daniyar Turmukhambetov</a>,
<a href="http://cs.bath.ac.uk/~nc537/">Neill D.F. Campbell</a>,
<a href="http://www.cs.ucl.ac.uk/staff/s.prince/">Simon J.D. Prince</a>,
<a href="http://www.cs.ucl.ac.uk/staff/s.prince/">Jan Kautz</a><br>
In CVPR 2015<br>
<strong><a href="https://www.cv-foundation.org/openaccess/content_cvpr_2015/papers/Turmukhambetov_Modeling_Object_Appearance_2015_CVPR_paper.pdf">[Paper]</a></strong>
<strong><a href="http://visual.cs.ucl.ac.uk/pubs/ccca/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://arturodeza.github.io/virality/"><img src="teasers/Deza2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Understanding Image Virality</strong>
<p class="content"><a href="http://arturodeza.wikidot.com/">Arturo Deza</a>,
<a href="https://filebox.ece.vt.edu/~parikh/">Devi Parikh</a><br>
In CVPR 2015<br>
<strong><a href="https://arxiv.org/abs/1503.02318">[Paper]</a></strong>
<strong><a href="http://arturodeza.github.io/virality/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://sites.google.com/site/marcolivesu/quadlayouts"><img src="teasers/Usai2015.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Extraction of the Quad Layout of a Triangle Mesh Guided by its Curve-Skeleton</strong>
<p class="content"><a href="http://francescousai.info/">Francesco Usai</a>,
<a href="https://sites.google.com/site/marcolivesu/">Marco Livesu</a>,
<a href="http://www.disi.unige.it/person/PuppoE/">Enrico Puppo</a>,
<a href="http://vcg.isti.cnr.it/~tarini/">Marco Tarini</a>,
<a href="http://ugo.sc.unica.it/">Riccardo Scateni</a><br>
In ACM Transactions on Graphics (TOG) 2015<br>
<strong><a href="https://drive.google.com/open?id=0B6EEjMMaU7haZG9hVVpxSjd2dEE">[Paper]</a></strong>
<strong><a href="https://sites.google.com/site/marcolivesu/quadlayouts">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://research.microsoft.com/en-us/um/people/hoppe/proj/morph/"><img src="teasers/Liao2014.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Automating Image Morphing using Structural Similarity on a Halfway Domain</strong>
<p class="content">Jing Liao,
<a href="http://www.rodlima.net/">Rodolfo Lima</a>,
<a href="http://w3.impa.br/~diego/">Diego Nehab</a>,
<a href="http://research.microsoft.com/en-us/um/people/hoppe/">Hugues Hoppe</a>,
<a href="http://www.cse.ust.hk/~psander/">Pedro Sander</a>,
<a href="http://www.cad.zju.edu.cn/home/jhyu/English.htm">Jinhui Yu</a><br>
In SIGGRAPH 2014<br>
<strong><a href="http://www.cs.ust.hk/~psander/docs/pixmorph.pdf">[Paper]</a></strong>
<strong><a href="http://research.microsoft.com/en-us/um/people/hoppe/proj/morph/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://www.cs.cmu.edu/~junyanz/projects/averageExplorer/index.html"><img src="teasers/Zhu2014.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>AverageExplorer: Interactive Exploration and Alignment of Visual Data Collections</strong>
<p class="content"><a href="https://www.cs.cmu.edu/~junyanz">Jun-Yan Zhu</a>,
<a href="http://www.cs.ucdavis.edu/~yjlee/">Yong Jae Lee</a>,
<a href="http://www.eecs.berkeley.edu/~efros/">Alexei A. Efros</a><br>
In SIGGRAPH 2014<br>
<strong><a href="https://www.cs.cmu.edu/~junyanz/projects/averageExplorer/averageExplorer.pdf">[Paper]</a></strong>
<strong><a href="https://www.cs.cmu.edu/~junyanz/projects/averageExplorer/index.html">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://sites.google.com/site/build2last43dp/"><img src="teasers/Lu2014.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Build-to-Last: Strength to Weight 3D Printed Objects</strong>
<p class="content"><a href="http://vr.sdu.edu.cn/~lulin/">Lin Lu</a>,
<a href="http://www.cs.bgu.ac.il/~asharf/">Andrei Sharf</a>,
<a href="http://irc.cs.sdu.edu.cn/~zhaohaisen/">Haisen Zhao</a>,
Yuan Wei,
Qingnan Fan,
Xuelin Chen,
<a href="http://www.animlife.com/">Yann Savoye</a>,
<a href="http://www.cs.sdu.edu.cn/zh/60">Changhe Tu</a>,
<a href="http://www.cs.tau.ac.il/~dcor/">Daniel Cohen-Or</a>,
<a href="http://www.cs.sdu.edu.cn/~baoquan/">Baoquan Chen</a><br>
In SIGGRAPH 2014<br>
<strong><a href="https://www.cs.tau.ac.il/~dcor/articles/2014/Build-to-Last.pdf">[Paper]</a></strong>
<strong><a href="https://sites.google.com/site/build2last43dp/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://sites.google.com/site/jbhuang0604/publications/struct_completion"><img src="teasers/Huang2014.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Image Completion using Planar Structure Guidance</strong>
<p class="content"><a href="https://sites.google.com/site/jbhuang0604/">Jia-Bin Huang</a>,
<a href="http://research.microsoft.com/en-us/people/sbkang/">Sing Bing Kang</a>,
<a href="http://www.ece.illinois.edu/directory/profile.asp?n-ahuja">Narendra Ahuja</a>,
<a href="http://johanneskopf.de/">Johannes Kopf</a><br>
In SIGGRAPH 2014<br>
<strong><a href="https://www.box.com/shared/static/x3zb7p2qp696dxu3wf34.pdf">[Paper]</a></strong>
<strong><a href="https://sites.google.com/site/jbhuang0604/publications/struct_completion">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://graphics.cs.uh.edu/ble/papers/2014s-ske/"><img src="teasers/Le2014.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Robust and Accurate Skeletal Rigging from Mesh Sequences</strong>
<p class="content"><a href="http://graphics.cs.uh.edu/ble/about.php">Binh Huy Le</a>,
<a href="http://graphics.cs.uh.edu/zdeng/">Zhigang Deng</a><br>
In SIGGRAPH 2014<br>
<strong><a href="http://graphics.cs.uh.edu/ble/papers/2014s-ske/skeleton-draft.pdf">[Paper]</a></strong>
<strong><a href="http://graphics.cs.uh.edu/ble/papers/2014s-ske/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://graphics.cs.cmu.edu/projects/contextPrediction/"><img src="teasers/Doersch2014.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Context as Supervisory Signal: Discovering Objects with Predictable Context</strong>
<p class="content"><a href="http://www.cs.cmu.edu/~cdoersch/">Carl Doersch</a>,
<a href="http://www.cs.cmu.edu/~abhinavg/">Abhinav Gupta</a>,
<a href="http://www.eecs.berkeley.edu/~efros/">Alexei A. Efros</a><br>
In ECCV 2014<br>
<strong><a href="http://graphics.cs.cmu.edu/projects/contextPrediction/contextPrediction.pdf">[Paper]</a></strong>
<strong><a href="http://graphics.cs.cmu.edu/projects/contextPrediction/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://vecg.cs.ucl.ac.uk/Projects/SmartGeometry/halftone_QR/halftoneQR_sigga13.html"><img src="teasers/Chu2013.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Halftone QR Codes</strong>
<p class="content"><a href="http://cgv.cs.nthu.edu.tw/hkchu">Hung-Kuo Chu</a>,
Chia-Sheng Chang,
<a href="http://www.cs.nthu.edu.tw/~rrlee/rrlee/Home.html">Ruen-Rone Lee</a>,
<a href="http://www0.cs.ucl.ac.uk/staff/n.mitra/">Niloy J. Mitra</a><br>
In SIGGRAPH Asia 2013<br>
<strong><a href="http://vecg.cs.ucl.ac.uk/Projects/SmartGeometry/halftone_QR/paper_docs/halftoneQR_sigga13.pdf">[Paper]</a></strong>
<strong><a href="http://vecg.cs.ucl.ac.uk/Projects/SmartGeometry/halftone_QR/halftoneQR_sigga13.html">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://graphics.ethz.ch/publications/papers/paperLuk13.php"><img src="teasers/Lukac2013.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Painting by feature: texture boundaries for example-based image creation</strong>
<p class="content"><a href="http://dcgi.fel.cvut.cz/people/lukacmi1">Michal Lukac</a>,
<a href="http://dcgi.fel.cvut.cz/people/fiserja9">Jakub Fiser</a>,
<a href="https://graphics.ethz.ch/~jebazin/">Jean-Charles Bazin</a>,
<a href="http://dcgi.fel.cvut.cz/people/jamriond">Ondrej Jamriska</a>,
<a href="http://www.ahornung.net/">Alexander Sorkine-Hornung</a>,
<a href="http://dcgi.felk.cvut.cz/home/sykorad/">Daniel Sykora</a><br>
In SIGGRAPH 2013<br>
<strong><a href="https://s3-us-west-1.amazonaws.com/disneyresearch/wp-content/uploads/20150324052134/Painting-by-Feature-Paper.pdf">[Paper]</a></strong>
<strong><a href="https://graphics.ethz.ch/publications/papers/paperLuk13.php">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://igl.ethz.ch/projects/winding-number"><img src="teasers/Jacobson2013.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Robust Inside-Outside Segmentation using Generalized Winding Numbers</strong>
<p class="content"><a href="http://www.cs.columbia.edu/~jacobson/">Alec Jacobson</a>,
<a href="http://www.seas.upenn.edu/~ladislav/">Ladislav Kavan</a>,
<a href="http://igl.ethz.ch/people/sorkine/">Olga Sorkine-Hornung</a><br>
In SIGGRAPH 2013<br>
<strong><a href="http://igl.ethz.ch/projects/winding-number/robust-inside-outside-segmentation-using-generalized-winding-numbers-siggraph-2013-jacobson-et-al.pdf">[Paper]</a></strong>
<strong><a href="http://igl.ethz.ch/projects/winding-number">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.oneweirdkerneltrick.com/catbasis.pdf"><img src="teasers/Caturana2013.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Cat Basis Purrsuit</strong>
<p class="content"><a href="http://dimatura.net/">Daniel Caturana</a>,
<a href="http://www.cs.cmu.edu/~dfouhey/">David Furry</a><br>
In SIGBOVIK 2013<br>
<strong><a href="http://www.oneweirdkerneltrick.com/catbasis.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.cs.berkeley.edu/~barron/KarschCVPR2013.pdf"><img src="teasers/Karsch2013.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Boundary Cues for 3D Object Shape Recovery</strong>
<p class="content"><a href="http://kevinkarsch.com/">Kevin Karsch</a>,
<a href="http://web.engr.illinois.edu/~liao17/">Zicheng Liao</a>,
Jason Rock,
<a href="http://www.cs.berkeley.edu/~barron/">Jonathan T. Barron</a>,
<a href="http://web.engr.illinois.edu/~dhoiem/">Derek Hoiem</a><br>
In CVPR 2013<br>
<strong><a href="http://www.cs.berkeley.edu/~barron/KarschCVPR2013.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://vecg.cs.ucl.ac.uk/Projects/SmartGeometry/nr_mesh/nrMesh_tog.html"><img src="teasers/Huang2013.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Near-Regular Structure Discovery Using Linear Programming</strong>
<p class="content"><a href="http://ttic.uchicago.edu/~huangqx/">Qixing Huang</a>,
<a href="http://geometry.stanford.edu/member/guibas/">Leonidas Guibas</a>,
<a href="http://www0.cs.ucl.ac.uk/staff/n.mitra/">Niloy J. Mitra</a><br>
In ACM Transactions on Graphics 2013<br>
<strong><a href="http://vecg.cs.ucl.ac.uk/Projects/SmartGeometry/nr_mesh/paper_docs/nrMesh_tog.pdf">[Paper]</a></strong>
<strong><a href="http://vecg.cs.ucl.ac.uk/Projects/SmartGeometry/nr_mesh/nrMesh_tog.html">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://hal.inria.fr/hal-00732992"><img src="teasers/Boye2012.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>A Vectorial Solver for Free-form Vector Gradients</strong>
<p class="content"><a href="http://manao.inria.fr/team/boye/">Simon Boye</a>,
<a href="http://www.labri.fr/perso/barla/blog/">Pascal Barla</a>,
<a href="http://www.labri.fr/perso/guenneba/">Gael Guennebaud</a><br>
In SIGGRAPH Asia 2012<br>
<strong><a href="https://hal.archives-ouvertes.fr/hal-00732992/PDF/vs4vg_2012.pdf">[Paper]</a></strong>
<strong><a href="https://hal.inria.fr/hal-00732992">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.cs.sfu.ca/~pingtan/Papers/sigasia12.pdf"><img src="teasers/Chen2012.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Manifold Preserving Edit Propagation</strong>
<p class="content"><a href="http://arts.buaa.edu.cn/staff/chen/index.htm">Xiaowu Chen</a>,
Dongqing Zou,
Qinping Zhao,
<a href="http://www.cs.sfu.ca/~pingtan/">Ping Tan</a><br>
In SIGGRAPH Asia 2012<br>
<strong><a href="http://www.cs.sfu.ca/~pingtan/Papers/sigasia12.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.717.3850&rep=rep1&type=pdf"><img src="teasers/Ovsjanikov2012.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Functional Maps: A Flexible Representation of Maps Between Shapes</strong>
<p class="content"><a href="http://www.lix.polytechnique.fr/~maks/">Maks Ovsjanikov</a>,
<a href="http://mirela.net.technion.ac.il/">Mirela Ben-Chen</a>,
<a href="http://people.csail.mit.edu/jsolomon/">Justin Solomon</a>,
<a href="https://autodeskresearch.com/people/adrian-butscher">Adrian Butscher</a>,
<a href="http://geometry.stanford.edu/member/guibas/">Leonidas Guibas</a><br>
In SIGGRAPH 2012<br>
<strong><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.717.3850&rep=rep1&type=pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://research.google.com/archive/unsupervised_icml2012.html"><img src="teasers/Le2012.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Building High-level Features Using Large Scale Unsupervised Learning</strong>
<p class="content"><a href="http://cs.stanford.edu/~quocle/">Quoc Le</a>,
<a href="http://www.cs.toronto.edu/~ranzato/">MarcAurelio Ranzato</a>,
<a href="http://research.google.com/pubs/RajatMonga.html">Rajat Monga</a>,
Matthieu Devin,
Kai Chen,
<a href="http://research.google.com/pubs/GregCorrado.html">Greg Corrado</a>,
<a href="http://research.google.com/people/jeff/">Jeff Dean</a>,
<a href="http://cs.stanford.edu/people/ang/">Andrew Ng</a><br>
In ICML 2012<br>
<strong><a href="http://static.googleusercontent.com/media/research.google.com/en/us/archive/unsupervised_icml2012.pdf">[Paper]</a></strong>
<strong><a href="http://research.google.com/archive/unsupervised_icml2012.html">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.robots.ox.ac.uk/~vgg/publications/2012/parkhi12a/"><img src="teasers/Parkhi2012.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Cats and Dogs</strong>
<p class="content"><a href="http://www.robots.ox.ac.uk/~vgg/publications/index.php?idAuthor=161">Omkar M Parkhi</a>,
<a href="http://www.robots.ox.ac.uk/~vedaldi/">Andrea Vedaldi</a>,
<a href="http://www.robots.ox.ac.uk/~az/">Andrew Zisserman</a>,
<a href="http://www.iiit.ac.in/~jawahar/">C. V. Jawahar</a><br>
In CVPR 2012<br>
<strong><a href="http://www.robots.ox.ac.uk/~vgg/publications/2012/parkhi12a/parkhi12a.pdf">[Paper]</a></strong>
<strong><a href="http://www.robots.ox.ac.uk/~vgg/publications/2012/parkhi12a/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://web.engr.illinois.edu/~dhoiem/publications/cvpr2012_objectsegmentation_qieyun.pdf"><img src="teasers/Dai2012.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Learning to Localize Detected Objects</strong>
<p class="content"><a href="http://web.engr.illinois.edu/~dai9/">Qieyun Dai</a>,
<a href="http://web.engr.illinois.edu/~dhoiem/">Derek Hoiem</a><br>
In CVPR 2012<br>
<strong><a href="http://web.engr.illinois.edu/~dhoiem/publications/cvpr2012_objectsegmentation_qieyun.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://sweb.cityu.edu.hk/hongbofu/projects/animatedconstructionoflinedrawings_sigga11/#.V3wdKZErI2w"><img src="teasers/Fu2011.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Animated Construction of Line Drawings</strong>
<p class="content"><a href="http://sweb.cityu.edu.hk/hongbofu/">Hongbo Fu</a>,
<a href="http://sweb.cityu.edu.hk/shizzhou/">Shizhe Zhou</a>,
<a href="http://staff.ustc.edu.cn/~lgliu/"> Ligang Liu</a>,
<a href="http://graphics.stanford.edu/~niloy/">Niloy J. Mitra</a><br>
In SIGGRAPH Asia 2011<br>
<strong><a href="http://www.jdl.ac.cn/project/faceId/paperreading/Paper/nyji_20120329_2.pdf">[Paper]</a></strong>
<strong><a href="http://sweb.cityu.edu.hk/hongbofu/projects/animatedconstructionoflinedrawings_sigga11/#.V3wdKZErI2w">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="https://www.microsoft.com/en-us/research/publication/nonlinear-revision-control-for-images/"><img src="teasers/Chen2011.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Nonlinear Revision Control for Images</strong>
<p class="content"><a href="http://www.ht-timchen.com/">Hsiang-Ting Chen</a>,
<a href="http://www.liyiwei.org/">Li-Yi Wei</a>,
<a href="https://cchang.wordpress.com/\n">Chun-Fa Chang</a><br>
In SIGGRAPH 2011<br>
<strong><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.465.986&rep=rep1&type=pdf">[Paper]</a></strong>
<strong><a href="https://www.microsoft.com/en-us/research/publication/nonlinear-revision-control-for-images/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.cs.princeton.edu/~funk/sig11.pdf"><img src="teasers/Kim2011.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Blended Intrinsic Maps</strong>
<p class="content"><a href="http://vovakim.com/">Vladimir G. Kim</a>,
<a href="http://www.wisdom.weizmann.ac.il/~ylipman/">Yaron Lipman</a>,
<a href="http://www.cs.princeton.edu/~funk/"> Thomas Funkhouser</a><br>
In SIGGRAPH 2011<br>
<strong><a href="http://www.cs.princeton.edu/~funk/sig11.pdf">[Paper]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://zurich.disneyresearch.com/OverCoat/"><img src="teasers/Schmid2011.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>OverCoat: An Implicit Canvas for 3D Painting</strong>
<p class="content">Johannes Schmid,
Martin Sebastian Senn,
<a href="https://graphics.ethz.ch/people/grossm/">Markus Gross</a>,
<a href="https://graphics.ethz.ch/~sumnerb/">Robert W. Sumner</a><br>
In SIGGRAPH 2011<br>
<strong><a href="http://zurich.disneyresearch.com/OverCoat/OverCoat-preprint-s.pdf">[Paper]</a></strong>
<strong><a href="http://zurich.disneyresearch.com/OverCoat/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.cs.cmu.edu/~kmcrane/Projects/SpinTransformations/"><img src="teasers/Crane2011.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>Spin Transformations of Discrete Surfaces</strong>
<p class="content"><a href="http://www.cs.cmu.edu/~kmcrane/">Keenan Crane</a>,
<a href="http://page.math.tu-berlin.de/~pinkall/">Ulrich Pinkall</a>,
<a href="http://users.cms.caltech.edu/~ps/">Peter Schroder</a><br>
In SIGGRAPH 2011<br>
<strong><a href="http://www.cs.cmu.edu/~kmcrane/Projects/SpinTransformations/paper.pdf">[Paper]</a></strong>
<strong><a href="http://www.cs.cmu.edu/~kmcrane/Projects/SpinTransformations/">[Project]</a></strong>
</p></tr></tbody></table><br>
<table><tbody><tr><td>
<a href="http://www.robots.ox.ac.uk/~vgg/publications/2011/Parkhi11/"><img src="teasers/Parkhi2011.jpg"/ border=1 width=210></a></td>
<td width="20"></td>
<td valign="middle" width="680"><strong>The Truth About Cats and Dogs</strong>
<p class="content"><a href="http://www.robots.ox.ac.uk/~vgg/publications/index.php?idAuthor=161">Omkar M Parkhi</a>,
<a href="http://www.robots.ox.ac.uk/~vedaldi/">Andrea Vedaldi</a>,
<a href="http://www.iiit.ac.in/~jawahar/">C. V. Jawahar</a>,
<a href="http://www.robots.ox.ac.uk/~az/">Andrew Zisserman</a><br>
In ICCV 2011<br>
<strong><a href="http://www.robots.ox.ac.uk/~vgg/publications/2011/Parkhi11/parkhi11.pdf">[Paper]</a></strong>