forked from yetweka/yet-weka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiggraph16.html
1506 lines (1503 loc) · 77.7 KB
/
siggraph16.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
<h2>Conditionally accepted to SIGGRAPH 2016</h2>
<dt><B>1 Connected Fermat Spirals for Layered Fabrication</B></a>
<a href="http://www.cs.sfu.ca/~haoz/papers.html">Abstract</a>
<a href="http://www.cs.sfu.ca/~haoz/papers.html">Preprint</a>
</dt>
<dd>
Haisen Zhao,
Fanglin Gu
(<a href="http://en.sdu.edu.cn/">Shandong University</a>),
<a href="http://ttic.uchicago.edu/~huangqx/index.html">Qixing Huang</a>
(<a href="http://www.ttic.edu/">Toyota Technological Institute at Chicago</a>),
J. A. Garcia Galicia
(<a href="http://purdue.edu/">Purdue University</a>),
<a href="http://www-bcf.usc.edu/~yongchen/">Yong Chen</a>
(<a href="http://www.usc.edu/">University of Southern California</a>),
<a href="http://www.cs.sdu.edu.cn/zh/60">Changhe Tu</a>
(<a href="http://en.sdu.edu.cn/">Shandong University</a>),
<a href="http://hpcg.purdue.edu/bbenes/">Bedrich Benes</a>
(<a href="http://purdue.edu/">Purdue University</a>),
<a href="http://www.cs.sfu.ca/~haoz">Hao Zhang</a>
(<a href="http://www.sfu.ca/">Simon Fraser University</a>),
<a href="http://www.math.tau.ac.il/~dcor/">Daniel Cohen-Or</a>
(<a href="http://www.tau.ac.il/">Tel Aviv University</a>),
<a href="http://www.cs.sdu.edu.cn/~baoquan/">Baoquan Chen</a>
(<a href="http://www.sdu.edu.cn/">Shandong University</a>)
</dd>
<dt><B>2 Mesh Arrangements for Solid Geometry</B></a>
<a href="http://www.cs.columbia.edu/cg/mesh-arrangements/">Abstract</a>
<a href="http://www.cs.columbia.edu/cg/mesh-arrangements/">Preprint</a>
<a href="http://libigl.github.io/libigl/tutorial/tutorial.html#booleanoperationsonmeshes">Code</a>
</dt>
<dd>
<a href="https://www.cs.nyu.edu/~qnzhou/">Qingnan Zhou</a>
(<a href="http://www.nyu.edu/">New York University</a>),
<a href="http://www.cs.columbia.edu/~eitan/">Eitan Grinspun</a>
(<a href="http://www.columbia.edu/">Columbia University</a>),
<a href="http://mrl.nyu.edu/~dzorin/">Denis Zorin</a>
(<a href="http://www.nyu.edu/">New York University</a>),
<a href="http://www.cs.columbia.edu/~jacobson/">Alec Jacobson</a>
(<a href="http://www.columbia.edu/">Columbia University</a>)
</dd>
<dt><B>3 Computational Design of Reconfigurables</B></a>
<a href="http://www.cs.columbia.edu/cg/reconfigurables/">Abstract</a>
<a href="http://www.cs.columbia.edu/cg/reconfigurables/">Preprint</a>
<a href="http://www.cs.columbia.edu/cg/reconfigurables/">Video</a>
</dt>
<dd>
<a href="http://www.cs.columbia.edu/~akash/">Akash Garg</a>,
<a href="http://www.cs.columbia.edu/~jacobson/">Alec Jacobson</a>,
<a href="http://www.cs.columbia.edu/~eitan/">Eitan Grinspun</a>
(<a href="http://www.columbia.edu/">Columbia University</a>)
</dd>
<dt><B>4 Rig Animation with a Tangible and Modular Input Device</B></a>
<a href="http://ait.ethz.ch/projects/2016/puppet/">Abstract</a>
<a href="http://ait.ethz.ch/projects/2016/puppet/">Preprint</a>
<a href="http://ait.ethz.ch/projects/2016/puppet/">Video</a>
</dt>
<dd>
Olivier Glauser,
Wan-Chun Ma
(<a href="http://www.ethz.ch/">ETH Zurich</a>),
<a href="http://cs.nyu.edu/~panozzo/">Daniele Panozzo</a>
(<a href="http://www.ethz.ch/">ETH Zurich</a> and <a href="http://www.nyu.edu/">New York University</a>),
<a href="http://www.cs.columbia.edu/~jacobson/">Alec Jacobson</a>
(<a href="http://www.columbia.edu/">Columbia University</a>),
<a href="http://ait.ethz.ch/people/hilliges/">Otmar Hilliges</a>,
<a href="http://igl.ethz.ch/people/sorkine/">Olga Sorkine-Hornung</a>
(<a href="http://www.ethz.ch/">ETH Zurich</a>)
</dd>
<dt><B>5 Multiple-Scattering Microfacet BSDFs with the Smith Model</B></a>
<a href="https://eheitzresearch.wordpress.com/240-2/">Abstract</a>
<a href="https://eheitzresearch.wordpress.com/240-2/">Preprint</a>
<a href="https://eheitzresearch.wordpress.com/240-2/">Video</a>
<a href="https://eheitzresearch.wordpress.com/240-2/">Code</a>
</dt>
<dd>
<a href="https://eheitzresearch.wordpress.com/">Eric Heitz</a>,
<a href="https://jo.dreggn.org/home/">Johannes Hanika</a>
(<a href="http://www.kit.edu/english/index.php">Karlsruhe Institute of Technology</a>),
<a href="http://www.eugenedeon.com/">Eugene d??Eon</a>
(<a href="http://unity3d.com/">8i</a>),
<a href="https://cg.ivd.kit.edu/english/dachsbacher/">Carsten Dachsbacher</a>
(<a href="http://www.kit.edu/english/index.php">Karlsruhe Institute of Technology</a>)
</dd>
<dt><B>6 Position-Normal Distributions for Efficient Rendering of Specular Microstructure</B></a>
<a href="http://www.eecs.berkeley.edu/~lingqi/">Abstract</a>
<a href="http://www.eecs.berkeley.edu/~lingqi/">Preprint</a>
<a href="http://www.eecs.berkeley.edu/~lingqi/">Video</a>
</dt>
<dd>
<a href="http://www.eecs.berkeley.edu/~lingqi/">Ling-Qi Yan</a>
(<a href="http://www.berkeley.edu/">University of California at Berkeley</a>),
<a href="http://miloshasan.net/">Milos Hasan</a>
(<a href="http://www.autodesk.com/">Autodesk</a>),
<a href="http://www.cs.cornell.edu/~srm/">Steve Marschner</a>
(<a href="http://www.cornell.edu/">Cornell University</a>),
<a href="http://cseweb.ucsd.edu/~ravir/">Ravi Ramamoorthi</a>
(<a href="http://www.ucsd.edu/">University of California, San Diego</a>)
</dd>
<dt><B>7 Ebb: A DSL for Physical Simulation on CPUs and GPUs</B><a href="https://gilbo.github.io/liszt-ebb/publications/">Abstract</a>
<a href="https://gilbo.github.io/liszt-ebb/publications/">Preprint</a>
<a href="http://ebblang.org/">Code</a>
</dt>
<dd>
<a href="http://www.gilbertbernstein.com/">Gilbert Bernstein</a>,
Chinmayee Shah,
Crystal Lemire,
<a href="https://github.com/zdevito">Zachery DeVito</a>,
<a href="http://graphics.stanford.edu/~mdfisher/index.html">Matthew Fisher</a>,
<a href="http://csl.stanford.edu/~pal/">Philip Levis</a>,
<a href="http://graphics.stanford.edu/~hanrahan/">Pat Hanrahan</a>
(<a href="http://www.stanford.edu/">Stanford University</a>)
</dd>
<dt><B>8 Automatically Scheduling Halide Image Processing Pipelines</B></a>
<a href="http://graphics.cs.cmu.edu/projects/halidesched/">Abstract</a>
<a href="http://graphics.cs.cmu.edu/projects/halidesched/">Preprint</a>
</dt>
<dd>
<a href="http://rmullapudi.bitbucket.org/">Ravi Teja Mullapudi</a>,
<a href="http://people.csail.mit.edu/jrk/">Jonathan Ragan-Kelley</a>
(<a href="http://www.stanford.edu/">Stanford University</a>),
<a href="http://people.csail.mit.edu/abadams">Andrew Adams</a>
(<a href="http://www.csail.mit.edu/">MIT CSAIL</a>),
<a href="http://www.dsharlet.com/">Dillon Sharlet</a>
(<a href=""></a>),
<a href="http://www.cs.cmu.edu/~kayvonf/">Kayvon Fatahalian</a>
(<a href="http://www.cmu.edu/">Carnegie Mellon University</a>)
</dd>
<dt><B>9 ProxImaL: Efficient Image Optimization using Proximal Algorithms</B></a>
<a href="http://graphics.stanford.edu/~niessner/heide2016proximal.html">Abstract</a>
</dt>
<dd>
<a href="http://www.cs.ubc.ca/~fheide/">Felix Heide</a>
(<a href="http://stanford.edu/">Stanford University</a> and <a href="http://www.ubc.ca/">The University of British Columbia</a>),
<a href="http://web.stanford.edu/~stevend2/">Steven Diamond</a>,
<a href="http://people.csail.mit.edu/jrk/">Jonathan Ragan-Kelley</a>,
<a href="http://www.graphics.stanford.edu/~niessner/">Matthias Niesner</a>
(<a href="http://www.stanford.edu/">Stanford University</a>),
<a href="https://www.cs.ubc.ca/~heidrich/">Wolfgang Heidrich</a>
(<a href="http://www.ubc.ca/">The University of British Columbia</a>),
<a href="http://web.stanford.edu/~gordonwz/">Gordon Wetzstein</a>
(<a href="http://stanford.edu/">Stanford University</a>)
</dd>
<dt><B>10 Rigel: Flexible Multi-Rate Image Processing Hardware</B></a>
</dt>
<dd>
<a href="http://graphics.stanford.edu/~jhegarty">James Hegarty</a>,
Ross Daly,
Zachary DeVito,
<a href="http://people.csail.mit.edu/jrk/">Jonathan Ragan-Kelley</a>,
<a href="http://graphics.stanford.edu/~hanrahan/">Pat Hanrahan</a>
(<a href="http://www.stanford.edu/">Stanford University</a>)
</dd>
<dt><B>11 CofiFab: Coarse-to-Fine Fabrication of Large 3D Objects</B></a>
<a href="http://staff.ustc.edu.cn/~songpeng/subpage/2016-SIGGRAPH-CofiFab/index.html">Abstract</a>
<a href="http://staff.ustc.edu.cn/~songpeng/subpage/2016-SIGGRAPH-CofiFab/index.html">Preprint</a>
<a href="http://staff.ustc.edu.cn/~songpeng/subpage/2016-SIGGRAPH-CofiFab/index.html">Video</a>
<a href="http://staff.ustc.edu.cn/~songpeng/subpage/2016-SIGGRAPH-CofiFab/index.html">Data</a>
</dt>
<dd>
<a href="http://staff.ustc.edu.cn/~songpeng/">Peng Song</a>
(<a href="http://en.ustc.edu.cn/">University of Science and Technology of China</a>),
<a href="http://www.bdeng.me/">Bailin Deng</a>
(<a href="http://www.hull.ac.uk/">University of Hull</a>),
Ziqi Wang,
Zhichao Dong,
Wei Li
(<a href="http://en.ustc.edu.cn/">University of Science and Technology of China</a>),
<a href="http://www.cse.cuhk.edu.hk/~cwfu">Chi-Wing Fu</a>
(<a href="http://www.cuhk.edu.hk/english/index.html">The Chinese University of Hong Kong</a>),
<a href="http://staff.ustc.edu.cn/~lgliu/">Ligang Liu</a>
(<a href="http://en.ustc.edu.cn/">University of Science and Technology of China</a>)
</dd>
<dt><B>12 Beyond Developable: Computational Design and Fabrication with Auxetic Materials</B></a>
<a href="http://lgg.epfl.ch/publications/2016/BeyondDevelopable/index.php">Abstract</a>
<a href="http://lgg.epfl.ch/publications/2016/BeyondDevelopable/index.php">Preprint</a>
</dt>
<dd>
<a href="https://people.epfl.ch/mina.konakovic">Mina Konakovic</a>
(<a href="http://www.epfl.ch/">EPFL</a>),
<a href="http://www.cs.cmu.edu/~kmcrane/index.html">Keenan Crane</a>
(<a href="http://www.cmu.edu/">Carnegie Mellon University</a>),
<a href="http://www.bdeng.me/">Bailin Deng</a>
(<a href="http://www.hull.ac.uk/">University of Hull</a>),
<a href="http://sofienbouaziz.com/">Sofien Bouaziz</a>,
Daniel Piker,
<a href="http://lgg.epfl.ch/people.php?p=1">Mark Pauly</a>
(<a href="http://www.epfl.ch/">EPFL</a>)
</dd>
<dt><B>13 Crowd-driven Mid-scale Layout Design</B></a>
<a href="http://people.sutd.edu.sg/~saikit/projects/layout/index.html">Abstract</a>
<a href="http://people.sutd.edu.sg/~saikit/projects/layout/index.html">Preprint</a>
<a href="http://people.sutd.edu.sg/~saikit/projects/layout/index.html">Video</a>
</dt>
<dd>
<a href="http://www.tianf.org/">Tian Feng</a>
(<a href="http://www.sutd.edu.sg/">Singapore University of Technology and Design</a>),
<a href="http://www.cs.umb.edu/~craigyu/">Lap-Fai (Craig) Yu</a>
(<a href="http://www.umb.edu/">University of Massachusetts Boston</a>),
<a href="http://people.sutd.edu.sg/~saikit/">Sai-Kit Yeung</a>
(<a href="http://www.sutd.edu.sg/">Singapore University of Technology and Design</a>),
<a href="https://www.comp.nus.edu.sg/~kkyin/">KangKang Yin</a>
(<a href="http://www.nus.edu.sg/">National University of Singapore</a>),
<a href="http://www.kunzhou.net/">Kun Zhou</a>
(<a href="http://www.zju.edu.cn/english/">Zhejiang University</a>)
</dd>
<dt><B>14 Wasserstein Barycentric Coordinates: Histogram Regression Using Optimal Transport</B></a>
<a href="http://liris.cnrs.fr/~nbonneel/WassersteinBarycentricCoordinates/">Abstract</a>
<a href="http://liris.cnrs.fr/~nbonneel/WassersteinBarycentricCoordinates/">Preprint</a>
<a href="http://liris.cnrs.fr/~nbonneel/WassersteinBarycentricCoordinates/">Video</a>
<a href="http://liris.cnrs.fr/~nbonneel/WassersteinBarycentricCoordinates/">Code</a>
</dt>
<dd>
<a href="http://liris.cnrs.fr/~nbonneel/">Nicolas Bonneel</a>
(<a href="http://liris.cnrs.fr/">Univ. Lyon, CNRS, LIRIS</a>),
<a href="http://gpeyre.github.io/">Gabriel Peyre</a>
(<a href="https://www.ceremade.dauphine.fr/">CNRS, Univ. Paris-Dauphine</a>),
<a href="http://www.iip.ist.i.kyoto-u.ac.jp/member/cuturi/">Marco Cuturi</a>
(<a href="http://www.kyoto-u.ac.jp/en">Kyoto University</a>)
</dd>
<dt><B>15 Mapping Virtual and Physical Reality</B></a>
<a href="https://www.youtube.com/watch?v=YK9m0wkwjTE&feature=youtu.be">Video</a>
</dt>
<dd>
<a href="http://www3.cs.stonybrook.edu/~qisun1/">Qi Sun</a>
(<a href="http://www.stonybrook.edu/">Stony Brook University</a>),
<a href="http://www.liyiwei.org/">Li-Yi Wei</a>
(<a href="http://www.hku.hk/">University of Hong Kong</a>)
<a href="http://www3.cs.stonybrook.edu/~ari/">Arie E. Kaufman</a>
(<a href="http://www.stonybrook.edu/">Stony Brook University</a>)
</dd>
<dt><B>16 Legible Compact Calligrams</B></a>
<a href="http://www.cs.sfu.ca/~haoz/papers.html">Abstract</a>
<a href="http://www.cs.sfu.ca/~haoz/papers.html">Preprint</a>
</dt>
<dd>
<a href="http://changqingzou.weebly.com/">Changqing Zou</a>,
(<a href="http://www.sfu.ca/">Simon Fraser University</a>),
<a href="http://jjcao.github.io/index.html">Junjie Cao</a>
(<a href="http://en.dlut.edu.cn/">Dalian University of Technology</a>),
<a href="http://warunika.weebly.com/">Warunika Ranaweera</a>,
<a href="http://ialhashim.github.io/">Ibraheem Alhashim</a>,
<a href="http://www.cs.sfu.ca/~pingtan/">Ping Tan</a>
(<a href="http://www.sfu.ca/">Simon Fraser University</a>),
<a href="http://www.cs.ubc.ca/~sheffa/">Alla Sheffer</a>
(<a href="http://www.ubc.ca/">University of British Columbia</a>),
<a href="http://www.cs.sfu.ca/~haoz">Hao Zhang</a>
(<a href="http://www.sfu.ca/">Simon Fraser University</a>)
</dd>
<dt><B>17 Learning How Objects Function via Co-Analysis of Interactions</B></a>
<a href="http://vcc.szu.edu.cn/research/2016/Icon2/">Abstract</a>
<a href="http://www.cs.sfu.ca/~haoz/papers.html">Preprint</a>
</dt>
<dd>
<a href="http://csse.szu.edu.cn/staff/ruizhenhu/">Ruizhen Hu</a>
(<a href="http://www.szu.edu.cn/2014/en/">Shenzhen University</a>),
<a href="http://people.scs.carleton.ca/~olivervankaick/index.html">Oliver van Kaick</a>
(<a href="https://carleton.ca/">Carleton University</a>),
Bojian Wu
(<a href="http://english.siat.cas.cn/">SIAT</a>),
<a href="http://vcc.szu.edu.cn/~huihuang/">Hui Huang</a>
(<a href="http://www.szu.edu.cn/2014/en/">Shenzhen University</a> and <a href="http://english.siat.cas.cn/">SIAT</a>)
<a href="http://www.faculty.idc.ac.il/arik/site/index.asp">Ariel Shamir</a>
(<a href="http://portal.idc.ac.il/he/main/homepage/pages/homepage.aspx">The Interdisciplinary Center</a>),
<a href="http://www.cs.sfu.ca/~haoz">Hao Zhang</a>
(<a href="http://www.sfu.ca/">Simon Fraser University</a>)
</dd>
<dt><B>18 Fitting Procedural Yarn Models for Realistic Cloth Rendering</B></a>
<a href="http://shuangz.com/publications.htm">Abstract</a>
<a href="http://shuangz.com/publications.htm#ctcloth-sg16">Preprint</a>
<a href="http://shuangz.com/publications.htm#ctcloth-sg16">Video</a>
<a href="http://shuangz.com/publications.htm#ctcloth-sg16">Code</a>
</dt>
<dd>
<a href="http://shuangz.com/">Shuang Zhao</a>
(<a href="http://www.uci.edu/">University of California, Irvine</a>),
<a href="https://www.cs.cornell.edu/~fujun/">Fujun Luan</a>,
<a href="http://www.cs.cornell.edu/~kb/">Kavita Bala</a>
(<a href="http://www.cornell.edu">Cornell University</a>)
</dd>
<dt><B>19 RAID: A Relation-Augmented Image Descriptor</B></a>
<a href="http://geometry.cs.ucl.ac.uk/projects/2016/image-relationships/">Abstract</a>
<a href="http://geometry.cs.ucl.ac.uk/projects/2016/image-relationships/">Preprint</a>
<a href="http://geometry.cs.ucl.ac.uk/projects/2016/image-relationships/">Video</a>
</dt>
<dd>
<a href="https://paulguerrero.github.io/">Paul Guerrero</a>,
<a href="http://www0.cs.ucl.ac.uk/staff/n.mitra/">Niloy Mitra</a>
(<a href="http://www.ucl.ac.uk/">University College London</a>),
<a href="http://peterwonka.net/">Peter Wonka</a>
(<a href="http://www.asu.edu/">Arizona State University</a>)
</dd>
<dt><B>20 Spectral Style Transfer for Human Motion between Independent Actions</B></a>
<a href="http://www.meyumer.com/spectral_style_transfer.html">Abstract</a>
<a href="http://www.meyumer.com/spectral_style_transfer.html">Preprint</a>
<a href="http://www.meyumer.com/spectral_style_transfer.html">Video</a>
</dt>
<dd>
<a href="http://www.meyumer.com/">M. Ersin Yumer</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a>),
<a href="http://www0.cs.ucl.ac.uk/staff/n.mitra/">Niloy Mitra</a>
(<a href="http://www.ucl.ac.uk/">University College London</a>)
</dd>
<dt><B>21 Computational Network Design from Functional Specifications</B></a>
<a href="http://www.pengchihan.co/?page_id=14">Abstract</a>
<a href="http://www.pengchihan.co/?page_id=14">Preprint</a>
</dt>
<dd>
<a href="http://www.pengchihan.co/">Chi-Han Peng</a>
(<a href="http://www.ucl.ac.uk/">University College London</a>),
<a href="http://www.yongliangyang.net/">Yong-Liang Yang</a>
(<a href="http://www.bath.ac.uk/">University of Bath</a>),
Fan Bao,
Daniel Fink
(<a href="http://www.ucl.ac.uk/">University College London</a>),
<a href="https://sites.google.com/site/yandongming/">Dong-Ming Yan</a>
(<a href="http://www.kaust.edu.sa/">KAUST</a>),
<a href="http://peterwonka.net/">Peter Wonka</a>
(<a href="http://www.asu.edu/">Arizona State University</a>),
<a href="http://www0.cs.ucl.ac.uk/staff/n.mitra/">Niloy Mitra</a>
(<a href="http://www.ucl.ac.uk/">University College London</a>)
</dd>
<dt><B>22 PATEX: Exploring Pattern Variations</B></a>
<a href="http://geometry.cs.ucl.ac.uk/projects/2016/pattern-variations/">Abstract</a>
<a href="http://geometry.cs.ucl.ac.uk/projects/2016/pattern-variations/">Preprint</a>
<a href="http://geometry.cs.ucl.ac.uk/projects/2016/pattern-variations/">Video</a>
</dt>
<dd>
<a href="https://paulguerrero.github.io/">Paul Guerrero</a>,
(<a href="http://www.ucl.ac.uk/">University College London</a>),
<a href="http://www.gilbertbernstein.com/">Gilbert Bernstein</a>
(<a href="https://www.stanford.edu/">Stanford University</a>)
<a href="http://www.adobe.com/technology/people/san-francisco/wilmot-li.html">Wilmot Li</a>
(<a href="http://research.adobe.com/">Adobe Research</a>),
<a href="http://www0.cs.ucl.ac.uk/staff/n.mitra/">Niloy Mitra</a>
(<a href="http://www.ucl.ac.uk/">University College London</a>)
</dd>
<dt><B>23 Acoustic Voxels: Computational Optimization of Modular Acoustic Filters</B></a>
<a href="http://www.cs.columbia.edu/cg/lego/">Abstract</a>
<a href="http://www.cs.columbia.edu/cg/lego/">Preprint</a>
<a href="http://www.cs.columbia.edu/cg/lego/">Video</a>
</dt>
<dd>
<a href="http://dingzeyu.li/">Dingzeyu Li</a>
(<a href="http://www.columbia.edu/">Columbia University</a>),
<a href="http://people.csail.mit.edu/dilevin/">David Levin</a>
(<a href="http://web.mit.edu/">Massachusetts Institute of Technology</a> and <a href="http://thewaltdisneycompany.com/">The Walt Disney Company</a>),
<a href="http://people.csail.mit.edu/wojciech">Wojciech Matusik</a>
(<a href="http://web.mit.edu/">Massachusetts Institute of Technology</a>),
<a href="http://www.cs.columbia.edu/~cxz/index.htm">Changxi Zheng</a>
(<a href="http://www.columbia.edu/">Columbia University</a>)
</dd>
<dt><B>24 Pose-Space Subspace Dynamics</B></a>
<a href="http://run.usc.edu/multiModal/">Abstract</a>
<a href="http://run.usc.edu/multiModal/">Preprint</a>
<a href="http://run.usc.edu/multiModal/">Video</a>
</dt>
<dd>
<a href="http://www-scf.usc.edu/~hongyixu/">Hongyi Xu</a>,
<a href="http://www-bcf.usc.edu/~jbarbic/">Jernej Barbic</a>
(<a href="http://www.cs.usc.edu/">University of Southern California</a>)
</dd>
<dt><B>25 Perspective-aware Manipulation of Portrait Photos</B></a>
<a href="http://gfx.cs.princeton.edu/pubs/Fried_2016_PMO/index.php">Abstract</a>
</dt>
<dd>
<a href="https://www.cs.princeton.edu/~ohad/">Ohad Fried</a>
(<a href="http://www.princeton.edu/">Princeton University</a>),
<a href="http://www.adobe.com/technology/people/seattle/eli-shechtman.html">Eli Shechtman</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a>),
<a href="http://www.danbgoldman.com/">Dan Goldman</a>
(<a href="http://www.google.com/">Google</a>),
<a href="http://www.cs.princeton.edu/~af/">Adam Finkelstein</a>
(<a href="http://www.princeton.edu/">Princeton University</a>)
</dd>
<dt><B>26 Tactile Mesh Saliency</B></a>
<a href="http://graphics.cs.yale.edu/site/publications/tactile-mesh-saliency">Preprint</a>
</dt>
<dd>
<a href="https://sites.google.com/site/manfredlau/">Manfred Lau</a>,
Kapil Dev
(<a href="http://www.lancaster.ac.uk/">Lancaster University</a>),
<a href="http://cpsc.yale.edu/people/weiqi-shi">Weiqi Shi</a>,
<a href="http://graphics.cs.yale.edu/julie/">Julie Dorsey</a>,
<a href="http://graphics.cs.yale.edu/holly/">Holly Rushmeier</a>
(<a href="http://www.yale.edu/">Yale University</a>)
</dd>
<dt><B>27 Entropic Metric Alignment for Correspondence Problems</B></a>
<a href="http://people.csail.mit.edu/jsolomon/">Preprint</a>
<a href="http://people.csail.mit.edu/jsolomon/">Code</a>
</dt>
<dd>
<a href="http://people.csail.mit.edu/jsolomon/">Justin Solomon</a>
(<a href="http://www.princeton.edu/main/">Princeton University</a>),
<a href="http://gpeyre.github.io/">Gabriel Peyre</a>
(<a href="http://www.cnrs.fr/">CNRS</a>),
<a href="http://vovakim.com/">Vladimir Kim</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a>),
<a href="http://suvrit.de/">Suvrit Sra</a>
(<a href="http://web.mit.edu/">Massachusetts Institute of Technology</a>)
</dd>
<dt><B>28 Fidelity vs. Simplicity : a Global Approach to Line Drawing Vectorization</B></a>
<a href="http://www-sop.inria.fr/reves/Basilic/2016/FLB16/">Abstract</a>
<a href="http://www-sop.inria.fr/reves/Basilic/2016/FLB16/">Preprint</a>
</dt>
<dd>
<a href="http://www-sop.inria.fr/members/Jean-Dominique.Favreau/">Jean-Dominique Favreau</a>,
<a href="https://www-sop.inria.fr/members/Florent.Lafarge/">Florent Lafarge</a>,
<a href="http://www-sop.inria.fr/members/Adrien.Bousseau/">Adrien Bousseau</a>
(<a href="http://www.inria.fr/centre/sophia/">INRIA</a>)
</dd>
<dt><B>29 Interactive Sketching of Urban Procedural Models</B></a>
<a href="http://hpcg.purdue.edu/publications.html">Preprint</a>
<a href="http://hpcg.purdue.edu/publications.html">Video</a>
</dt>
<dd>
Gen Nishida,
<a href="https://www.cs.purdue.edu/homes/igarciad/">Ignacio Garcia-Dorado</a>
(<a href="http://www.purdue.edu/">Purdue University</a>),
<a href="http://www-sop.inria.fr/members/Adrien.Bousseau/">Adrien Bousseau</a>
(<a href="http://www.inria.fr/centre/sophia/">INRIA</a>),
<a href="http://hpcg.purdue.edu/bbenes/">Bedrich Benes</a>,
<a href="https://www.cs.purdue.edu/homes/aliaga/">Daniel G. Aliaga</a>
(<a href="http://www.purdue.edu/">Purdue University</a>)
</dd>
<dt><B>30 Real-time Rendering on a Power Budget</B></a>
<a href="http://www.cad.zju.edu.cn/home/rwang/projects/power-optimization/power.html#powerparam">Abstract</a>
<a href="http://www.cad.zju.edu.cn/home/rwang/projects/power-optimization/power.html#powerparam">Preprint</a>
<a href="http://www.cad.zju.edu.cn/home/rwang/projects/power-optimization/power.html#powerparam">Video</a>
</dt>
<dd>
<a href="http://www.cad.zju.edu.cn/home/rwang/">Rui Wang</a>,
Bowen Yu
(<a href="http://www.zju.edu.cn/english/">Zhejiang University</a>),
<a href="http://webdiis.unizar.es/~juliom/">Julio Marco</a>
(<a href="http://www.unizar.es/">Universidad de Zaragoza</a>),
Tianlei Hu
(<a href="http://www.zju.edu.cn/english/">Zhejiang University</a>),
<a href="http://giga.cps.unizar.es/~diegog/">Diego Gutierrez</a>
(<a href="http://www.unizar.es/">Universidad de Zaragoza</a>),
<a href="http://www.cad.zju.edu.cn/home/bao/">Hujun Bao</a>
(<a href="http://www.zju.edu.cn/english">Zhejiang University</a>)
</dd>
<dt><B>31 Non-Linear Shape Optimization Using Local Subspace Projections</B></a>
<a href="https://www.cg.tuwien.ac.at/research/publications/2016/musialski_2016_sosp/">Abstract</a>
<a href="https://www.cg.tuwien.ac.at/research/publications/2016/musialski_2016_sosp/">Preprint</a>
</dt>
<dd>
<a href="https://users.cg.tuwien.ac.at/pm/">Przemyslaw Musialski</a>,
<a href="https://www.cg.tuwien.ac.at/staff/ChristianHafner.html">Christian Hafner</a>,
<a href="http://kunst2.tuwien.ac.at/index.php?idcatside=11">Florian Rist</a>,
<a href="http://www.cg.tuwien.ac.at/staff/MichaelBirsak.html">Michael Birsak</a>,
<a href="http://www.cg.tuwien.ac.at/staff/MichaelWimmer.html">Michael Wimmer</a>
(<a href="https://www.tuwien.ac.at/en/">Vienna University of Technology</a>),
<a href="https://www.graphics.rwth-aachen.de/person/3/">Leif Kobbelt</a>
(<a href="https://www.rwth-aachen.de/">RWTH Aachen University</a>)
</dd>
<dt><B>32 A Deep Learning Framework for Character Motion Synthesis and Editing</B></a>
</dt>
<dd>
<a href=""></a>
(<a href=""></a>),
<a href="https://twitter.com/dukecyto">Jun Saito</a>
(<a href=""></a>),
<a href=""></a>
(<a href=""></a>),
<a href=""></a>
(<a href=""></a>),
<a href=""></a>
(<a href=""></a>),
<a href=""></a>
(<a href=""></a>)
</dd>
<dt><B>33 Fusion4D: Real-time Performance Capture of Challenging Scenes</B></a>
</dt>
<dd>
M. Dou,
S. Khamis,
Y. Degtyarev,
P. Davidson,
<a href="http://www.iit.it/en/people/sean-ryan-fanello.html">Sean Ryan Fanello</a>,
A. Kowdle,
S. Orts Escolano,
C. Rhemann,
(<a href="http://www.iit.it/">Istituto Italiano di Tecnologia</a>),
<a href="http://research.microsoft.com/en-us/people/davidkim/">David Kim</a>,
David Sweeney,
J. Taylor,
<a href="http://research.microsoft.com/en-us/um/people/pkohli/">Pushmeet Kohli</a>,
V. Tankovich,
<a href="http://research.microsoft.com/en-us/people/shahrami/">Shahram Izadi</a>
(<a href="http://research.microsoft.com/en-us/labs/cambridge/">Microsoft Research Cambridge</a>)
</dd>
<dt><B>34 Roto++: Accelerating Professional Rotoscoping using Shape Manifolds</B></a>
<a href="http://visual.cs.ucl.ac.uk/pubs/rotopp/">Abstract</a>
<a href="http://visual.cs.ucl.ac.uk/pubs/rotopp/">Preprint</a>
<a href="http://visual.cs.ucl.ac.uk/pubs/rotopp/">Video</a>
</dt>
<dd>
<a href="http://www0.cs.ucl.ac.uk/staff/W.Li/index.html">Wenbin Li</a>
(<a href="http://www.ucl.ac.uk/">University College London</a>),
Fabio Viola
(<a href="https://deepmind.com/">Google DeepMind</a> and <a href="https://www.thefoundry.co.uk/">The Foundry</a>),
Jonathan Starck
(<a href="https://www.thefoundry.co.uk/">The Foundry</a>),
<a href="http://www0.cs.ucl.ac.uk/staff/G.Brostow/">Gabriel J. Brostow</a>
(<a href="http://www.ucl.ac.uk/">University College London</a>),
<a href="http://cs.bath.ac.uk/~nc537/">Neill D.F. Campbell</a>
(<a href="http://www.bath.ac.uk/">University of Bath</a> and <a href="http://www.ucl.ac.uk/">University College London</a>)
</dd>
<dt><B>35 Surface-Only Liquids</B></a>
<a href="http://www.cs.columbia.edu/cg/surfaceliquids/">Abstract</a>
<a href="http://www.cs.columbia.edu/cg/surfaceliquids/">Preprint</a>
<a href="http://www.cs.columbia.edu/cg/surfaceliquids/">Video</a>
</dt>
<dd>
<a href="http://www.cs.columbia.edu/~fang/">Fang Da</a>
(<a href="http://www.columbia.edu/">Columbia University</a>),
David Hahn
(<a href="http://www.ist.ac.at/">Institute of Science and Technology Austria (IST Austria)</a>),
<a href="https://cs.uwaterloo.ca/~c2batty/">Christopher Batty</a>
(<a href="http://www.uwaterloo.ca/">University of Waterloo</a>),
<a href="http://pub.ist.ac.at/group_wojtan/">Chris Wojtan</a>
(<a href="http://www.ist.ac.at/">Institute of Science and Technology Austria (IST Austria)</a>),
<a href="http://www.cs.columbia.edu/~eitan/">Eitan Grinspun</a>
(<a href="http://www.columbia.edu/">Columbia University</a>)
</dd>
<dt><B>36 Generalized Non-reflecting Boundaries for Fluid Re-Simulation</B></a>
<a href="http://pub.ist.ac.at/~mortenbh//publications/GNRBfFRS_2016/">Abstract</a>
<a href="http://pub.ist.ac.at/~mortenbh//publications/GNRBfFRS_2016/">Preprint</a>
<a href="http://pub.ist.ac.at/~mortenbh//publications/GNRBfFRS_2016/">Video</a>
<a href="http://pub.ist.ac.at/~mortenbh//publications/GNRBfFRS_2016/">Code</a>
</dt>
<dd>
<a href="http://pub.ist.ac.at/~mortenbh/">Morten Bojsen-Hansen</a>,
<a href="http://pub.ist.ac.at/group_wojtan/">Chris Wojtan</a>
(<a href="http://www.ist.ac.at/">Institute of Science and Technology Austria</a>)
</dd>
<dt><B>37 Fast Approximations for Boundary Element Based Brittle Fracture Simulation</B></a>
<a href="http://pub.ist.ac.at/group_wojtan/projects/2016_Hahn_FastFracture/">Abstract</a>
<a href="http://pub.ist.ac.at/group_wojtan/projects/2016_Hahn_FastFracture/">Preprint</a>
<a href="http://pub.ist.ac.at/group_wojtan/projects/2016_Hahn_FastFracture/">Video</a>
<a href="http://pub.ist.ac.at/group_wojtan/projects/2016_Hahn_FastFracture/">Code</a>
</dt>
<dd>
David Hahn,
<a href="http://pub.ist.ac.at/group_wojtan/">Chris Wojtan</a>
(<a href="http://www.ist.ac.at/">Institute of Science and Technology Austria (IST Austria)</a>)
</dd>
<dt><B>38 Generating Dynamically Feasible Trajectories for Quadrotor Cameras</B></a>
<a href="http://graphics.stanford.edu/papers/feasible_trajectories/">Abstract</a>
<a href="http://graphics.stanford.edu/papers/feasible_trajectories/">Preprint</a>
<a href="http://graphics.stanford.edu/papers/feasible_trajectories/">Video</a>
</dt>
<dd>
<a href="http://graphics.stanford.edu/~mlrobert/">Mike Roberts</a>,
<a href="http://graphics.stanford.edu/~hanrahan/">Pat Hanrahan</a>
(<a href="http://www.stanford.edu/">Stanford University</a>)
</dd>
<dt><B>39 Physics-driven Pattern Adjustment for Direct 3D Garment Editing</B></a>
<a href="http://vovakim.com/">Preprint</a>
</dt>
<dd>
Aric Bartle
(<a href="http://www.stanford.edu/">Stanford University</a>),
<a href="http://www.cs.ubc.ca/~sheffa/">Alla Sheffer</a>
(<a href="http://www.ubc.ca/">University of British Columbia</a>),
<a href="http://vovakim.com/">Vladimir G. Kim</a>,
<a href="http://www.cs.columbia.edu/~kaufman/">Danny Kaufman</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a>),
<a href="https://www.gaslampgames.com/about/nicholas-vining/">Nicholas Vining</a>
(<a href="http://www.ubc.ca/">University of British Columbia</a>),
<a href="http://www.floraine.org/">Floraine Berthouzoz</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a>)
</dd>
<dt><B>40 PiGraphs: Learning Interaction Snapshots from Observations</B></a>
<a href="http://graphics.stanford.edu/projects/pigraphs/">Abstract</a>
<a href="http://graphics.stanford.edu/projects/pigraphs/">Preprint</a>
<a href="http://graphics.stanford.edu/projects/pigraphs/">Video</a>
</dt>
<dd>
<a href="http://graphics.stanford.edu/~msavva/">Manolis Savva</a>,
<a href="http://www.stanford.edu/~angelx">Angel X. Chang</a>,
<a href="http://graphics.stanford.edu/~hanrahan/">Pat Hanrahan</a>,
<a href="http://graphics.stanford.edu/~mdfisher/">Matthew Fisher</a>,
<a href="http://www.graphics.stanford.edu/~niessner/">Matthias Niesner</a>
(<a href="http://www.stanford.edu/">Stanford University</a>)
</dd>
<dt><B>41 Procedural Voronoi Foams for Additive Manufacturing</B></a>
<a href="https://sites.google.com/site/jonasmartinezbayona/procvorfoam">Abstract</a>
</dt>
<dd>
<a href="https://sites.google.com/site/jonasmartinezbayona/home">Jonas Martinez</a>,
<a href="http://www.jdumas.org/">Jeremie Dumas</a>,
<a href="http://www.antexel.com/sylefeb/research">Sylvain Lefebvre</a>
(<a href="http://www.inria.fr/">INRIA</a>)
</dd>
<dt><B>42 Erosion Thickness on Medial Axes of 3D Shapes</B></a>
<a href="http://students.cec.wustl.edu/~yajieyan/et_sig16/et_sig16.html">Abstract</a>
<a href="http://students.cec.wustl.edu/~yajieyan/et_sig16/et_sig16.html">Preprint</a>
</dt>
<dd>
<a href="http://students.cec.wustl.edu/~yajieyan/#bio">Yajie Yan</a>
(<a href="http://www.cse.wustl.edu/">Washington University in St Louis</a>),
<a href="http://mathcs.slu.edu/people/ksykes2">Kyle Sykes</a>
<a href="http://mathcs.slu.edu/~chambers/">Erin Chambers</a>,
<a href="http://dehn.slu.edu/">David Letscher</a>
(<a href="http://www.slu.edu/">St. Louis University</a>),
<a href="http://www.cse.wustl.edu/~taoju/index.htm">Tao Ju</a>
(<a href="http://www.cse.wustl.edu/">Washington University in St Louis</a>)
</dd>
<dt><B>43 Toward Animating Water with Complex Acoustic Bubbles</B></a>
<a href="http://www.cs.cornell.edu/projects/Sound/bubbles/">Abstract</a>
<a href="http://www.cs.cornell.edu/projects/Sound/bubbles/">Preprint</a>
<a href="http://www.cs.cornell.edu/projects/Sound/bubbles/">Video</a>
</dt>
<dd>
<a href="http://www.cs.cornell.edu/~langlois/">Timothy R. Langlois</a>
(<a href="http://www.cornell.edu">Cornell University</a>),
<a href="http://www.cs.columbia.edu/~cxz/index.htm">Changxi Zheng</a>
(<a href="http://www.columbia.edu/">Columbia University</a>),
<a href="http://www.cs.cornell.edu/~djames/">Doug James</a>
(<a href="http://www.stanford.edu/">Stanford University</a>)
</dd>
<dt><B>44 AutoHair: Fully Automatic Hair Modeling from A Single Image</B></a>
</dt>
<dd>
<a href="http://gaps-zju.org/mlchai/">Menglei Chai</a>,
<a href="http://tianjiashao.com/">Tianjia Shao</a>,
<a href="http://www.cad.zju.edu.cn/home/hwu/">Hongzhi Wu</a>,
Yanlin Weng,
<a href="http://www.kunzhou.net/">Kun Zhou</a>
(<a href="http://www.zju.edu.cn/english/">Zhejiang University</a>)
</dd>
<dt><B>45 Real-time Facial Animation with Image-based Dynamic Avatars</B></a>
</dt>
<dd>
<a href="https://sites.google.com/site/zjucaochen/home">Chen Cao</a>,
<a href="http://www.cad.zju.edu.cn/home/hwu/">Hongzhi Wu</a>,
Yanlin Weng,
<a href="http://tianjiashao.com/">Tianjia Shao</a>,
<a href="http://www.kunzhou.net/">Kun Zhou</a>
(<a href="http://www.zju.edu.cn/english/">Zhejiang University</a>)
</dd>
<dt><B>46 Time-varying Weathering in Texture Space</B></a>
<a href="http://www.math.tau.ac.il/~dcor/pubs.html">Preprint</a>
<a href="https://www.cs.tau.ac.il/~yanirk/">Video</a>
</dt>
<dd>
Rachele Bellini,
<a href="https://www.cs.tau.ac.il/~yanirk/">Yanir Kleiman</a>,
<a href="http://www.math.tau.ac.il/~dcor/">Daniel Cohen-Or</a>
(<a href="http://www.tau.ac.il/">Tel Aviv University</a>)
</dd>
<dt><B>47 Shadow Theatre: Discovering Human Motion from a Sequence of Silhouettes</B></a>
<a href="http://mrl.snu.ac.kr/research/ProjectShadowTheatre/ShadowTheatre.htm">Abstract</a>
<a href="http://mrl.snu.ac.kr/research/ProjectShadowTheatre/ShadowTheatre.htm">Preprint</a>
<a href="http://mrl.snu.ac.kr/research/ProjectShadowTheatre/ShadowTheatre.htm">Video</a>
</dt>
<dd>
<a href="http://mrl.snu.ac.kr/~nonaxis/">Jungdam Won</a>,
<a href="http://mrl.snu.ac.kr/~jehee/">Jehee Lee</a>
(<a href="http://mrl.snu.ac.kr/~jehee/">Seoul National University</a>)
</dd>
<dt><B>48 Fast and Exact Discrete Geodesic Computation Based on Triangle-Oriented Wavefront Propagation</B></a>
<a href="http://i.cs.hku.hk/~xghan/Projects/VTP.htm">Abstract</a>
<a href="http://i.cs.hku.hk/~xghan/Projects/VTP.htm">Preprint</a>
</dt>
<dd>
Yipeng Qin*
(<a href="https://www1.bournemouth.ac.uk/">Bournemouth University</a>),
<a href="http://i.cs.hku.hk/~xghan/">Xiaoguang Han</a>*
(<a href="http://www.hku.hk/">The University of Hong Kong</a>),
<a href="http://staffprofiles.bournemouth.ac.uk/display/hyu">Hongchuan Yu</a>
(<a href="https://www1.bournemouth.ac.uk/">Bournemouth University</a>),
<a href="http://i.cs.hku.hk/~yzyu/">Yizhou Yu</a>
(<a href="http://www.hku.hk/">The University of Hong Kong</a>),
<a href="https://jzhang.bournemouth.ac.uk/">Jianjun Zhang</a>
(<a href="https://www1.bournemouth.ac.uk/">Bournemouth University</a>)
(* Joint first authors)
</dd>
<dt><B>49 Bijective Maps from Simplicial Foliations</B></a>
<a href="https://www.graphics.rwth-aachen.de/publication/03259/">Abstract</a>
<a href="https://www.vci.rwth-aachen.de/publication/03259/">Preprint</a>
</dt>
<dd>
<a href="https://www.graphics.rwth-aachen.de/person/7/">Marcel Campen</a>,
<a href="http://vgc.poly.edu/~csilva/">Claudio Silva</a>,
<a href="http://mrl.nyu.edu/~dzorin/">Denis Zorin</a>
(<a href="http://www.nyu.edu/">New York University</a>)
</dd>
<dt><B>50 Drucker-Prager Elastoplasticity for Sand Animation</B></a>
<a href="http://web.cs.ucla.edu/~cffjiang/sand/sand.html">Abstract</a>
<a href="http://web.cs.ucla.edu/~cffjiang/sand/sand.html">Preprint</a>
<a href="http://web.cs.ucla.edu/~cffjiang/sand/sand.html">Video</a>
</dt>
<dd>
<a href="http://web.cs.ucla.edu/~gklar/">Gergely Klar</a>,
T. Gast, A. Pradhana, C. Fu
(<a href="http://www.ucla.edu/">University Of California, Los Angeles</a>),
<a href="http://hydra.math.ucla.edu/~craig/">Craig Schroeder</a>
(<a href="http://www.disneyanimation.com/">Walt Disney Animation Studios</a>),
<a href="http://www.cs.ucla.edu/~cffjiang/">Chenfanfu Jiang</a>,
<a href="http://www.math.ucla.edu/~jteran">Joseph Teran</a>
(<a href="http://www.ucla.edu/">University Of California, Los Angeles</a>)
</dd>
<dt><B>51 Computational Design of Stable Planar-Rod Structures</B></a>
</dt>
<dd>
<a href="http://www.gmrv.es/~edermiguel/#aboutme">Eder Miguel</a>
(<a href="https://ist.ac.at/">IST Austria</a>),
Mathias Leputre
(<a href=""></a>),
<a href="https://ist.ac.at/research/research-groups/bickel-group/">Bernd Bickel</a>
(<a href="https://ist.ac.at/">IST Austria</a>)
</dd>
<dt><B>52 An Interaction-Aware, Perceptual Model for Non-Linear Elastic Objects</B></a>
<a href="http://pdf.mmci.uni-saarland.de/projects/ComplianceModel/">Abstract</a>
<a href="http://pdf.mmci.uni-saarland.de/projects/ComplianceModel/">Preprint</a>
<a href="http://pdf.mmci.uni-saarland.de/projects/ComplianceModel/">Video</a>
</dt>
<dd>
<a href="http://dai.fmph.uniba.sk/w/Michal_Piovarci">Michal Piovarči</a>
(<a href="http://www.mmci.uni-saarland.de/en/start">Saarland University, MMCI</a> and <a href="https://uniba.sk/en">Comenius University</a>),
<a href="https://www.disneyresearch.com/people/david-levin/">David I.W. Levin</a>
(<a href="http://www.disneyresearch.com/research-labs/disney-research-pittsburgh/">Disney Research Pittsburgh</a>),
Jason Rebello
(<a href="http://www.harvard.edu/">Harvard University</a>),
<a href="http://people.csail.mit.edu/desaic/">Desai Chen</a>
(<a href="http://www.csail.mit.edu/">MIT CSAIL</a>),
<a href="http://www.sccg.sk/~durikovic/">Roman Ďurikovič</a>
(<a href="https://uniba.sk/en">Comenius University</a>),
<a href="http://vcg.seas.harvard.edu/">Hanspeter Pfister</a>
(<a href="http://www.harvard.edu/">Harvard University</a>),
<a href="http://people.csail.mit.edu/wojciech">Wojciech Matusik</a>
(<a href="http://www.csail.mit.edu/">MIT CSAIL</a>),
<a href="http://people.mpi-inf.mpg.de/~pdidyk/">Piotr Didyk</a>
(<a href="http://www.mmci.uni-saarland.de/en/start">Saarland University, MMCI</a> and <a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a>)
</dd>
<dt><B>53 Cinema 3D: Large Scale Automultiscopic Display</B></a>
<a href="http://www.wisdom.weizmann.ac.il/~netefrat/cinema3D/">Abstract</a>
<a href="http://www.wisdom.weizmann.ac.il/~netefrat/cinema3D/">Preprint</a>
</dt>
<dd>
Netalee Efrat
(<a href="http://www.weizmann.ac.il/">The Weizmann Institute of Science</a>),
<a href="http://people.mpi-inf.mpg.de/~pdidyk/">Piotr Didyk</a>
(<a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a> and <a href="http://www.mmci.uni-saarland.de/en/start">Saarland University, MMCI</a>),
<a href="http://cfg.mit.edu/content/michael-mike-foshey">Mike Foshey</a>,
<a href="http://people.csail.mit.edu/wojciech">Wojciech Matusik</a>
(<a href="http://www.csail.mit.edu/">MIT CSAIL</a>),
<a href="http://www.wisdom.weizmann.ac.il/~levina/">Anat Levin</a>
(<a href="http://www.weizmann.ac.il/">The Weizmann Institute of Science</a>)
</dd>
<dt><B>54 GazeStereo3D: Seamless Disparity Manipulations</B></a>
<a href="http://resources.mpi-inf.mpg.de/GazeStereo3D/">Abstract</a>
<a href="http://resources.mpi-inf.mpg.de/GazeStereo3D/">Preprint</a>
<a href="http://resources.mpi-inf.mpg.de/GazeStereo3D/">Video</a>
</dt>
<dd>
<a href="http://www.mpi-inf.mpg.de/~pkellnho/">Petr Kellnhofer</a>
(<a href="http://www.csail.mit.edu/">MIT CSAIL</a> and <a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a>),
<a href="http://people.mpi-inf.mpg.de/~pdidyk/">Piotr Didyk</a>
(<a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a> and <a href="http://www.mmci.uni-saarland.de/en/start">Saarland University, MMCI</a>),
<a href="http://www.mpi-inf.mpg.de/~karol/">Karol Myszkowski</a>
(<a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a>),
<a href="http://www.cs.sfu.ca/~mhefeeda/">Mohamed M. Hefeeda</a>
(<a href="http://qcri.org.qa/">Qatar Computing Research Institute</a>),
<a href="http://www.mpi-inf.mpg.de/~hpseidel/">Hans-Peter Seidel</a>
(<a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a>),
<a href="http://people.csail.mit.edu/wojciech">Wojciech Matusik</a>
(<a href="http://www.csail.mit.edu/">MIT CSAIL</a>)
</dd>
<dt><B>55 Emulating Displays with Continuously Varying Frame Rates</B></a>
<a href="http://resources.mpi-inf.mpg.de/FrameRateEmulation/">Abstract</a>
<a href="http://resources.mpi-inf.mpg.de/FrameRateEmulation/">Preprint</a>
</dt>
<dd>
<a href="https://people.mpi-inf.mpg.de/~ktemplin/">Krzysztof Templin</a>
(<a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a>),
<a href="http://people.mpi-inf.mpg.de/~pdidyk/">Piotr Didyk</a>
(<a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a> and <a href="http://www.mmci.uni-saarland.de/en/start">Saarland University, MMCI</a>),
<a href="http://www.mpi-inf.mpg.de/~karol/">Karol Myszkowski</a>,
<a href="http://www.mpi-inf.mpg.de/~hpseidel/">Hans-Peter Seidel</a>
(<a href="https://www.mpi-inf.mpg.de/home/">MPI Informatik</a>)
</dd>
<dt><B>56 Realtime 3D Eye Gaze Animation Using a Single RGB Camera</B></a>
</dt>
<dd>
Congyi Wang
(<a href="http://english.ict.cas.cn/">Institute of Computing Technology, Chinese Academy of Sciences</a>),
<a href="http://students.cse.tamu.edu/fuhaoshi/">Fuhao Shi</a>
(<a href="http://www.tamu.edu/">Texas A&M University</a>),
Shihong Xia
(<a href="http://english.ict.cas.cn/">Institute of Computing Technology, Chinese Academy of Sciences</a>),
<a href="http://faculty.cs.tamu.edu/jchai/">Jinxiang Chai</a>
(<a href="http://www.tamu.edu/">Texas A&M University</a>),
</dd>
<dt><B>57 Real-time Skeletal Skinning with Optimized Centers of Rotation</B></a>
</dt>
<dd>
<a href="http://graphics.cs.uh.edu/ble/">Binh Huy Le</a>
(<a href="http://www.disneyresearch.com/research-labs/disney-research-pittsburgh/">Disney Research Pittsburgh</a>),
<a href="http://www.cs.cmu.edu/%7Ejkh">Jessica Hodgins</a>
(<a href="http://www.cmu.edu/">Carnegie Mellon University</a> and <a href="http://www.disneyresearch.com/research-labs/disney-research-pittsburgh/">Disney Research Pittsburgh</a>)
</dd>
<dt><B>58 Let there be Color!: Joint End-to-end Learning of Global and Local Image Priors for Automatic Image Colorization with Simultaneous Classification</B></a>
<a href="http://hi.cs.waseda.ac.jp/~iizuka/projects/colorization/">Abstract</a>
<a href="http://hi.cs.waseda.ac.jp/~iizuka/projects/colorization/">Preprint</a>
<a href="http://hi.cs.waseda.ac.jp/~iizuka/projects/colorization/">Images</a>
</dt>
<dd>
<a href="http://hi.cs.waseda.ac.jp/~iizuka/index_eng.html">Satoshi Iizuka</a>*,
<a href="http://hi.cs.waseda.ac.jp/~esimo/">Edgar Simo-Serra</a>*,
<a href="http://www.f.waseda.jp/hfs/indexE.html">Hiroshi Ishikawa</a>
(<a href="http://www.waseda.jp/top/en">Waseda University</a>)
(*equal contribution)
</dd>
<dt><B>59 Learning to Simplify: Fully Convolutional Networks for Rough Sketch Cleanup</B></a>
<a href="http://hi.cs.waseda.ac.jp/~esimo/en/research/sketch/">Abstract</a>
<a href="http://hi.cs.waseda.ac.jp/~esimo/en/research/sketch/">Preprint</a>
</dt>
<dd>
<a href="http://hi.cs.waseda.ac.jp/~esimo/">Edgar Simo-Serra</a>*,
<a href="http://hi.cs.waseda.ac.jp/~iizuka/index_eng.html">Satoshi Iizuka</a>*,
Kazuma Sasaki,
<a href="http://www.f.waseda.jp/hfs/indexE.html">Hiroshi Ishikawa</a>
(<a href="http://www.waseda.jp/top/en">Waseda University</a>)
(*equal contribution)
</dd>
<dt><B>60 Efficient Dynamic Skinning with Low-Rank Helper Bone Controllers</B></a>
<a href="http://mukai-lab.org/projects/#SIGGRAPH2016">Abstract</a>
<a href="http://mukai-lab.org/projects/#SIGGRAPH2016">Preprint</a>
</dt>
<dd>
<a href="http://mukai-lab.org/mukai/index.html">Tomohiko Mukai</a>
(<a href="http://www.u-tokai.ac.jp/english/">Tokai University</a>),
<a href="http://www.val.cs.tut.ac.jp/kuriyama.en.html">Shigeru Kuriyama</a>
(<a href="http://www.tut.ac.jp/english/">Toyohashi University of Technology</a>)
</dd>
<dt><B>61 Real-Time Polygonal-Light Shading with Linearly Transformed Cosines</B></a>
<a href="https://eheitzresearch.wordpress.com/415-2/">Abstract</a>
<a href="https://eheitzresearch.wordpress.com/415-2/">Preprint</a>
<a href="https://eheitzresearch.wordpress.com/415-2/">Video</a>
<a href="https://eheitzresearch.wordpress.com/415-2/">Code</a>
</dt>
<dd>
<a href="https://eheitzresearch.wordpress.com/">Eric Heitz</a>,
<a href="http://onrendering.com/~jdupuy/">Jonathan Dupuy</a>
(<a href="http://unity3d.com/">Unity Technologies</a>),
Stephen Hill
(<a href="https://www.ubisoft.com/en-GB/">Ubisoft</a>),
David Neubelt
(<a href="http://www.readyatdawn.com/">Ready At Dawn Studios</a>)
</dd>
<dt><B>62 Schrodinger's Smoke</B></a>
<a href="https://youtu.be/5C9BLAXCe1I">Video</a>
<a href="http://multires.caltech.edu/pubs/SchrodingersSmokeCode.zip">Code</a>
</dt>
<dd>
Albert Chern
(<a href="http://www.caltech.edu/">California Institute of Technology</a>),
<a href="http://page.math.tu-berlin.de/~knoeppel/">Felix Knoppel</a>,
<a href="http://page.math.tu-berlin.de/~pinkall/">Ulrich Pinkall</a>
(<a href="http://www.tu-berlin.de/">Technische Universitat Berlin</a>),
<a href="http://users.cms.caltech.edu/~ps/">Peter Schroder</a>
(<a href="http://www.caltech.edu/">California Institute of Technology</a>),
Steffen Weismann
(<a href="http://www.google.com/">Google Inc.</a>)
</dd>
<dt><B>63 Rich360: Optimized Spherical Representation from Structured Panoramic Camera Arrays</B></a>
<a href="http://vml.kaist.ac.kr/publication/journal/2016/2016JungjinLee_TOG.html">Abstract</a>
<a href="http://vml.kaist.ac.kr/publication/journal/2016/2016JungjinLee_TOG.html">Preprint</a>
<a href="http://vml.kaist.ac.kr/publication/journal/2016/2016JungjinLee_TOG.html">Video</a>
</dt>
<dd>
Jungjin Lee, Bumki Kim, Kyehyun Kim, Younghui Kim,
<a href="http://vml.kaist.ac.kr/prof.html">Junyong Noh</a>
(<a href="http://www.kaist.edu/html/en/index.html">KAIST</a>)
</dd>
<dt><B>64 SketchiMo: Sketch-based Motion Editing for Articulated Characters</B></a>
<a href="http://vml.kaist.ac.kr/publication/journal/2016/2016ByungkukChoi_TOG.html">Abstract</a>
<a href="http://vml.kaist.ac.kr/publication/journal/2016/2016ByungkukChoi_TOG.html">Preprint</a>
<a href="http://vml.kaist.ac.kr/publication/journal/2016/2016ByungkukChoi_TOG.html">Video</a>
</dt>
<dd>
Byungkuk Choi*, Roger Blanco i Ribera*, J. P. Lewis, Yeongho Seol, Seokpyo Hong,
Haegwang Eom, Sunjin Jung,
<a href="http://vml.kaist.ac.kr/prof.html">Junyong Noh</a>
(<a href="http://www.kaist.edu/html/en/index.html">KAIST</a>)
(*equal contribution)
</dd>
<dt><B>65 Preserving Geometry and Topology for Fluid Flows with Thin Obstacles and Narrow Gaps</B></a>
<a href="https://cs.uwaterloo.ca/~c2batty/">Abstract</a>
</dt>
<dd>
<a href="http://www.inf.ufrgs.br/~vcazevedo/">Vinicius C. Azevedo</a>
(<a href="http://www.inf.ufrgs.br/en">Instituto de Informatica - UFRGS</a>),
<a href="https://cs.uwaterloo.ca/~c2batty/">Christopher Batty</a>
(<a href="http://www.uwaterloo.ca/">University of Waterloo</a>),
<a href="http://inf.ufrgs.br/~oliveira/">Manuel M. Oliveira</a>
(<a href="http://www.inf.ufrgs.br/en">Instituto de Informatica -- UFRGS</a>)
</dd>
<dt><B>66 A System for Rapid Exploration of Shader Optimization Choices</B></a>
<a href="http://graphics.cs.cmu.edu/projects/spire/">Abstract</a>
<a href="http://graphics.cs.cmu.edu/projects/spire/">Preprint</a>
</dt>
<dd>
<a href="http://www.csyong.net/">Yong He</a>
(<a href="http://www.cmu.edu/">Carnegie Mellon University</a>),
<a href="https://research.nvidia.com/users/tim-foley">Tim Foley</a>
(<a href="http://www.nvidia.com/object/about-nvidia.html">NVIDIA Corporation</a>),
<a href="http://www.cs.cmu.edu/~kayvonf/">Kayvon Fatahalian</a>
(<a href="http://www.cmu.edu/">Carnegie Mellon University</a>)
</dd>
<dt><B>67 Artist-Directed Dynamics for 2D Animation</B></a>
<a href="http://www.cc.gatech.edu/~ybai30/artistic_dynamics/artistic_dynamics.html">Abstract</a>
<a href="http://www.cc.gatech.edu/~ybai30/artistic_dynamics/artistic_dynamics.html">Preprint</a>
<a href="http://www.cc.gatech.edu/~ybai30/artistic_dynamics/artistic_dynamics.html">Video</a>
</dt>
<dd>
<a href="http://www.cc.gatech.edu/~ybai30/index.html">Yunfei Bai</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a> and <a href="http://www.gatech.edu/">Georgia Institute of Technology</a>),
<a href="http://www.cs.columbia.edu/~kaufman/">Danny Kaufman</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a>),
<a href="http://www.cc.gatech.edu/~karenliu/Home.html">C. Karen Liu</a>
(<a href="http://www.gatech.edu/">Georgia Institute of Technology</a>),
<a href="http://people.csail.mit.edu/jovan/">Jovan Popovic</a>
(<a href="http://www.adobe.com/technology.html">Adobe Research</a>)
</dd>
<dt><B>68 Live Intrinsic Video</B></a>
<a href="https://gvv.mpi-inf.mpg.de/projects/LiveIntrinsicVideo/">Abstract</a>
<a href="https://gvv.mpi-inf.mpg.de/projects/LiveIntrinsicVideo/">Preprint</a>
<a href="https://gvv.mpi-inf.mpg.de/projects/LiveIntrinsicVideo/">Video</a>
</dt>
<dd>
<a href="http://www.mpi-inf.mpg.de/~ameka/">Abhimitra Meka</a>,
<a href="http://www.mpi-inf.mpg.de/~mzollhoef/">Michael Zollhoefer</a>
(<a href="http://www.mpi-inf.mpg.de/">Max Planck Institute for Informatics</a>),
<a href="http://richardt.name/">Christian Richardt</a>
(<a href="http://www.mpi-inf.mpg.de/">Max Planck Institute for Informatics</a> and <a href="http://www.intel-vci.uni-saarland.de/">Intel Visual Computing Institute</a>),
<a href="http://www.mpi-inf.mpg.de/~theobalt/">Christian Theobalt</a>
(<a href="http://www.mpi-inf.mpg.de/">Max Planck Institute for Informatics</a>)
</dd>
<dt><B>69 Efficient GPU Rendering of Subdivision Surfaces using Adaptive Quadtrees</B></a>
<a href="http://www.graphics.stanford.edu/~niessner/brainerd2016efficient.html">Abstract</a>
<a href="http://www.graphics.stanford.edu/~niessner/brainerd2016efficient.html">Preprint</a>
<a href="http://www.graphics.stanford.edu/~niessner/brainerd2016efficient.html">Video</a>
</dt>
<dd>
<a href="http://wadeb.com/">Wade Brainerd</a>
(<a href="https://www.activision.com/">Activision</a>),
<a href="https://research.nvidia.com/users/tim-foley">Tim Foley</a>,
Manuel Kraemer,
Henry Moreton
(<a href="http://www.nvidia.com/object/about-nvidia.html">NVIDIA Corporation</a>),
<a href="http://www.graphics.stanford.edu/~niessner/">Matthias Niesner</a>
(<a href="http://www.stanford.edu/">Stanford University</a>)
</dd>
<dt><B>70 Multi-Scale Label-Map Extraction for Texture Synthesis</B></a>
<a href="http://graphics.cs.yale.edu/site/publications/multi-scale-label-map-extraction-texture-synthesis">Abstract</a>
<a href="http://graphics.cs.yale.edu/site/publications/multi-scale-label-map-extraction-texture-synthesis">Preprint</a>
<a href="http://graphics.cs.yale.edu/site/publications/multi-scale-label-map-extraction-texture-synthesis">Video</a>
</dt>
<dd>
<a href="http://graphics.cs.yale.edu/site/people/yitzchak-lockerman">Yitzchak Lockerman</a>
(<a href="http://www.yale.edu/">Yale University</a>),
<a href="http://icube-igg.unistra.fr/fr/index.php/Basile_Sauvage">Basile Sauvage</a>,
<a href="http://dpt-info.u-strasbg.fr/~allegre/">Remi Allegre</a>,
<a href="https://dpt-info.u-strasbg.fr/~dischler/">Jean-Michel Dischler</a>
(<a href="https://icube.unistra.fr/en/">ICube - University of Strasbourg</a>),
<a href="http://graphics.cs.yale.edu/julie/">Julie Dorsey</a>,
<a href="http://graphics.cs.yale.edu/holly/">Holly Rushmeier</a>
(<a href="http://www.yale.edu/">Yale University</a>)
</dd>
<dt><B>71 Automatic Triage for a Photo Series</B></a>
<a href="http://www.juew.org/publication/publications.htm">Preprint</a>
</dt>
<dd>
<a href="http://www.cs.princeton.edu/~huiwenc/">Huiwen Chang</a>,
<a href="http://yf.io/">Fisher Yu</a>
(<a href="http://www.princeton.edu/">Princeton University</a>),
<a href="http://www.juew.org/">Jue Wang</a>
(<a href="http://research.adobe.com/">Adobe Research</a>),
Douglas Ashley,
<a href="http://www.cs.princeton.edu/~af/">Adam Finkelstein</a>
(<a href="http://www.princeton.edu/">Princeton University</a>)
(<a href=""></a>)
</dd>
<dt><B>72 Volume-encoded UV-maps</B></a>
<a href="http://vcg.isti.cnr.it/volume-encoded-uv-maps/">Abstract</a>
<a href="http://vcg.isti.cnr.it/volume-encoded-uv-maps/">Preprint</a>
<a href="http://vcg.isti.cnr.it/volume-encoded-uv-maps/">Data</a>
<a href="http://vcg.isti.cnr.it/volume-encoded-uv-maps/">Code</a>
</dt>
<dd>
<a href="http://vcg.isti.cnr.it/~tarini/">Marco Tarini</a>
(<a href="http://www.dista.uninsubria.it/">University of Insubria</a> and <a href="http://vcg.isti.cnr.it/">ISTI/CNR</a>)
</dd>