-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
764 lines (684 loc) · 41.9 KB
/
Copy pathindex.html
File metadata and controls
764 lines (684 loc) · 41.9 KB
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Tuur Stuyck</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Personal website of Tuur Stuyck" />
<meta name="keywords" content="computer graphics, computer vision, robotics, machine learning, physics-based simulation, virtual clothing, cloth simulation" />
<meta property="og:url" content="https://tuurstuyck.github.io/" />
<meta property="og:description" content="Tuur Stuyck" />
<meta property="og:title" content="Personal website of Tuur Stuyck" />
<meta property="og:image" content="https://tuurstuyck.github.io/images/tuurstuycksmoll-crop-u3704.jpg" />
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-40412920-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-40412920-2');
</script>
<style>
/* Global Reset & Typography */
:root {
--font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
--color-text: #333;
--color-link: #0066cc;
--bg-color: #fff;
--spacing-unit: 20px;
}
body {
font-family: var(--font-main);
color: var(--color-text);
background-color: var(--bg-color);
margin: 0;
padding: 0;
line-height: 1.6;
}
a {
color: var(--color-link);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Layout Containers */
#main {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
section {
margin-bottom: 60px;
}
/* Navigation */
nav {
background: #fff;
border-bottom: 1px solid #eee;
position: sticky;
top: 0;
z-index: 100;
padding: 10px 0;
text-align: center;
}
nav a {
margin: 0 15px;
font-weight: bold;
color: #555;
}
nav a:hover {
color: var(--color-link);
}
/* Header Images Grid - UPDATED */
.header-images {
display: flex;
justify-content: space-between;
align-items: center;
gap: 15px;
margin-bottom: 40px;
/* No wrap allowed here */
}
.header-images img {
/* Flex 1 forcing them to share space equally */
flex: 1 1 0px;
width: auto;
height: auto; /* Maintain aspect ratio */
max-height: 200px; /* Don't get taller than 200px on wide screens */
object-fit: cover;
border-radius: 8px;
min-width: 0; /* Ensures images shrink properly in flex container */
}
/* Profile Section */
.profile-section {
display: flex;
gap: 40px;
align-items: center;
margin-bottom: 30px;
}
/* Profile Image - UPDATED */
.profile-img img {
height: 220px;
width: auto;
border-radius: 12px; /* Rounded corners, rectangular shape */
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.profile-info h1 {
font-size: 2.5em;
margin: 0 0 10px 0;
}
.profile-info h2 {
font-size: 1.5em;
font-weight: normal;
margin: 0 0 10px 0;
color: #555;
}
.profile-links {
margin-top: 15px;
}
.profile-links a {
display: block;
margin-bottom: 5px;
}
/* Bio Text */
.bio-text {
text-align: justify;
max-width: 800px;
margin: 0 auto;
}
/* Section Headings */
h3 {
font-size: 1.8em;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
margin-bottom: 30px;
}
/* List Items (Publications, History, etc) */
.item-row {
display: flex;
gap: 30px;
margin-bottom: 40px;
align-items: flex-start;
}
.item-content {
flex: 1;
}
.item-title {
font-size: 1.2em;
font-weight: bold;
display: block;
margin-bottom: 5px;
}
.item-meta {
font-size: 1.1em;
color: #444;
}
/* Images in lists (Books, Logos) */
.item-image {
flex-shrink: 0;
width: 180px;
display: flex;
justify-content: center;
align-items: flex-start;
}
.item-image img {
max-width: 100%;
height: auto;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.profile-section {
flex-direction: column;
text-align: center;
}
.item-row {
flex-direction: column;
gap: 15px;
}
.item-image {
width: 100px;
margin-bottom: 10px;
}
}
</style>
</head>
<body>
<nav>
<a href="#home">Home</a>
<a href="#publications">Publications</a>
<a href="#books">Books</a>
<a href="#work">Work History</a>
<a href="#education">Education</a>
</nav>
<div id="main">
<section class="profile-section" id="home">
<div class="profile-img">
<img src="./images/tuurstuycksmoll-crop-u3704.jpg" alt="Tuur Stuyck" loading="lazy"/>
</div>
<div class="profile-info">
<h1>Tuur Stuyck</h1>
<h2>Senior Manager, Robotics - NVIDIA</h2>
<div class="profile-links">
<a href="mailto:tstuyck@gmail.com" target="_blank">tstuyck@gmail.com</a>
<a href="https://www.linkedin.com/in/tuurstuyck" target="_blank">LinkedIn</a>
<a href="https://scholar.google.com/citations?user=buAnzJsAAAAJ&hl=en" target="_blank">Google Scholar</a>
</div>
</div>
</section>
<section class="bio-text">
<p>I am a Senior Manager, Robotics at NVIDIA leading the 3D Perception and Simulation team. Prior to this, I was a Senior Staff Research Scientist Manager at Meta. I specialize in robotics, physics-based simulation, high-performance computing and machine learning. I am an experienced individual contributor and leader.</p>
<p>I chaired the 2026 SIGGRAPH Poster program and served on the 2025 SIGGRAPH Asia Technical Paper Committee, as well as the SIGGRAPH 2025 Student Research Competition Chair and on the SIGGRAPH 2019 and 2020 Immersive Pavilion Committees. I also served as a committee member for High Performance Graphics 2021.</p>
<p>I am the author of the book Cloth Simulation for Computer Graphics.</p>
<p>I previously worked at Adobe Research and Pixar Animation Studios' research group. I have made several computer animated short movies. [<a class="nonblock" href="https://www.youtube.com/user/TuurStuyck" target="_blank">link</a>]</p>
</section>
<section id="publications">
<h3>Publications</h3>
<div class="item-row">
<div class="item-content">
<span class="item-title">HYPERBONES: Realtime Bone-driven Neural Garment Simulation with Hypernetwork Conditioning</span>
<div class="item-meta">
<a href="https://sarcastitva.me/" target="_blank">A. Srivastava</a>,
<a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>,
<a href="https://rgoldade.github.io/" target="_blank">R. Goldade</a>,
<a href="https://phherholz.github.io/" target="_blank">P. Herholz</a>,
<a href="https://github.com/jiangzhongshi" target="_blank">Z. Jiang</a>,
<a href="" target="_blank">G. Lin</a>,
<a href="https://lingchen-chen.github.io/" target="_blank">L. Yang</a>,
<a href="https://nsarafianos.github.io/" target="_blank">N. Sarafianos</a>,
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>,
<a href="" target="_blank">A. Sharma</a>,
<a href="https://elrnv.com/" target="_blank">E. Larionov</a>
<br/>
ACM Transaction on Graphics (SIGGRAPH Asia 2026)<br/>
[<a href="https://sarcastitva.me/publications/hyperbones/">project</a>]
[<a href="https://arxiv.org/abs/2605.20460">paper</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Differentiable Physics for Graphics and AI</span>
<div class="item-meta">
<a href="https://www.cs.cmu.edu/~minchenl/" target="_blank">M. Li</a>, <a href="https://www.math.ucla.edu/~cffjiang/" target="_blank">C. Jiang</a>, <a href="https://yangzzzy.github.io/" target="_blank">Y. Yang</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
<a href="https://s2026.conference-schedule.org/presentation/?id=twork_111&sess=sess224"> SIGGRAPH 2026 Technical Workshop</a><br/>
[<a href="https://dpgai.github.io/SIGGRAPH2026/">project</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Neural Modular Physics for Elastic Simulation</span>
<div class="item-meta">
<a href="https://people.csail.mit.edu/liyifei/" target="_blank">Y. Li</a>, <a href="" target="_blank">H. Wu</a>, <a href="" target="_blank">Z. Xu</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://cdfg.csail.mit.edu/wojciech" target="_blank">W. Matusik</a><br/>
ICML 2026<br/>
[<a href="https://liyifei.org/publication/nmp/">project</a>]
[<a href="https://arxiv.org/pdf/2512.15083">paper</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">RigidFormer: Learning Rigid Dynamics with Transformers</span>
<div class="item-meta">
<a href="https://people.csail.mit.edu/frankzydou/" target="_blank">Z. Dou</a>, <a href="https://www.minghaoguo.com/" target="_blank">M. Guo</a>, <a href="" target="_blank">H. Wu</a>, , <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://cdfg.csail.mit.edu/wojciech" target="_blank">W. Matusik</a><br/>
arXiv 2026<br/>
Workshop Presentations RSS 2026:
<a href="https://sites.google.com/view/rss26-geometry/accepted-contributions">Geometry of Motion</a>,
<a href="https://rss2026-beyond-rigidity.github.io/">DAROMA</a>,
<a href="https://sites.google.com/view/rss2026sim2realws/home/accepted-contributions">Sim2Real</a>, and <a href="https://robot-worldmodels.github.io/papers.html">Robot World Models.</a><br/>
[<a href="https://people.csail.mit.edu/frankzydou/projects/RigidFormer/index.html">project</a>]
[<a href="https://arxiv.org/pdf/2605.09196">paper</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">HairWeaver: Few-Shot Photorealistic Hair Motion Synthesis with Sim-to-Real Guided Video Diffusion</span>
<div class="item-meta">
<a href="https://boese0601.github.io/" target="_blank">D. Chang</a>,
<a href="https://sekunde.github.io/" target="_blank">J. Hou</a>,
<a href="https://aljazbozic.github.io/" target="_blank">A. Bozic</a>,
<a href="https://il.linkedin.com/in/assaf-neuberger-0924a223" target="_blank">A. Neuberger</a>,
<a href="https://xujuefei.com/" target="_blank">F. Juefei-Xu</a>,
<a href="https://www.imdb.com/name/nm1436524/" target="_blank">O. Maury</a>,
<a href="https://www.linkedin.com/in/genelin1211" target="_blank">G. Lin</a>,
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>,
<a href="https://www.linkedin.com/in/doug-roble-752a081" target="_blank">D. Roble</a>,
<a href="https://www.ihp-lab.org/" target="_blank">M. Soleymani</a>,
<a href="https://www.linkedin.com/in/stephanegrabli" target="_blank">S. Grabli</a>
<br/>
ECCV 2026<br/>
[<a href="https://boese0601.github.io/hairweaver/">project</a>]
[<a href="https://arxiv.org/pdf/2602.11117">paper</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">SkinCells: Sparse Skinning using Voronoi Cells</span>
<div class="item-meta">
<a href="https://elrnv.com/" target="_blank">E. Larionov</a>, <a href="https://isantesteban.com/" target="_blank">I. Santesteban</a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="" target="_blank">G. Lin</a>, <a href="https://phherholz.github.io/" target="_blank">P. Herholz</a>, <a href="https://rgoldade.github.io/" target="_blank">R. Goldade</a>, <a href="https://www.cs.utah.edu/~ladislav/" target="_blank">L. Kavan</a>, <a href="" target="_blank">D. Roble</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
EuroGraphics (EG) 2026<br/>
[<a href="https://www.arxiv.org/abs/2506.14714">paper</a>] [<a href="https://www.youtube.com/watch?v=cLnU9qbnSyY">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Neuralocks: Real-Time Dynamic Neural Hair Simulation</span>
<div class="item-meta">
<a href="" target="_blank">G. Lin</a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="" target="_blank">D. Roble</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
EuroGraphics (EG) 2026<br/>
[<a href="https://arxiv.org/abs/2507.05191">paper</a>] [<a href="https://www.youtube.com/watch?v=E5EyWAhXWXQ">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Dress Anyone: Automatic Physically-Based Garment Pattern Refitting</span>
<div class="item-meta">
<a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a>, <a href="https://www.cs.utah.edu/~ladislav/" target="_blank">L. Kavan</a>, <a href="" target="_blank">G. Lin</a>, <a href="" target="_blank">D. Roble</a>, <a href="https://igl.ethz.ch/people/sorkine/" target="_blank">O. Sorkine-Hornung</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
Symposium on Computer Animation (SCA) 2025<br/>
[<a href="https://arxiv.org/pdf/2405.19148">paper</a>] [<a href="https://www.youtube.com/watch?v=v7ZdkOlEW0E">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Self-supervised Learning of Latent Space Dynamics</span>
<div class="item-meta">
<a href="https://liyuesolo.github.io/" target="_blank">Y. Li</a>, <a href="" target="_blank">G. Lin</a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a>, <a href="https://aljazbozic.github.io/" target="_blank">A. Bozic</a>, <a href="" target="_blank">D. Roble</a>, <a href="https://www.cs.utah.edu/~ladislav/" target="_blank">L. Kavan</a>, <a href="" target="_blank">S. Coros</a>, <a href="" target="_blank">B. Thomaszewski</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a><br/>
Symposium on Computer Animation (SCA) 2025<br/>
[<a href="https://arxiv.org/pdf/2507.07440">paper</a>] [<a href="https://www.youtube.com/watch?v=Ud40ayJANWA">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">3D Mesh Editing using Masked LRMs</span>
<div class="item-meta">
<a href="https://www.computerscience.uchicago.edu/people/will-gao/" target="_blank">W. Gao</a>, <a href="https://wdilin.github.io/" target="_blank">D. Wang</a>, <a href="https://ychfan.github.io/" target="_blank">Y. Fan</a>, <a href="https://aljazbozic.github.io/" target="_blank">A. Bozic</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://sites.google.com/view/zhengqinli" target="_blank">Z. Li</a>, <a href="https://www.flycooler.com/" target="_blank">Z. Dong</a>, <a href="https://www.linkedin.com/in/rakesh-r-3848538/" target="_blank">R. Ranjan</a>, <a href="https://nsarafianos.github.io/" target="_blank">N. Sarafianos</a><br/>
International Conference on Computer Vision, ICCV 2025<br/>
[<a href="https://chocolatebiscuit.github.io/MaskedLRM/">project</a>] [<a href="https://chocolatebiscuit.github.io/MaskedLRM/static/pdfs/arxiv.pdf">paper</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Quaffure: Real-Time Quasi-Static Neural Hair Simulation</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="" target="_blank">G. Lin</a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="https://aljazbozic.github.io/" target="_blank">A. Bozic</a>, <a href="https://nsarafianos.github.io/" target="_blank">N. Sarafianos</a>, <a href="" target="_blank">D. Roble</a><br/>
IEEE Conference on Computer Vision and Pattern Recognition (CVPR) 2025<br/>
[<a href="quaffure/quaffure.html">project</a>] [<a href="https://arxiv.org/abs/2412.10061">paper</a>] [<a href="https://www.youtube.com/watch?v=_kaSzSsfJuQ">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">PGC: Physics-Based Gaussian Cloth from a Single Pose</span>
<div class="item-meta">
<a href="https://tml.stanford.edu/people/michelle-guo" target="_blank">M. Guo</a>, <a href="https://mattchiangvfx.com/" target="_blank">M. Chiang</a>, <a href="https://isantesteban.com/" target="_blank">I. Santesteban</a>, <a href="https://nsarafianos.github.io/" target="_blank">N. Sarafianos</a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="" target="_blank">O. Halimi</a>, <a href="https://aljazbozic.github.io/" target="_blank">A. Bozic</a>, <a href="https://shunsukesaito.github.io/" target="_blank">S. Saito</a>, <a href="https://jiajunwu.com/" target="_blank">J. Wu</a>, <a href="https://profiles.stanford.edu/c-karen-liu" target="_blank">K. Liu</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a><br/>
IEEE Conference on Computer Vision and Pattern Recognition (CVPR) 2025<br/>
[<a href="https://phys-gaussian-cloth.github.io/">project</a>] [<a href="https://arxiv.org/pdf/2503.20779">paper</a>] [<a href="https://www.youtube.com/watch?v=Pi4Kw2wUBSU">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Garment3DGen: 3D Garment Stylization and Texture Generation</span>
<div class="item-meta">
<a href="https://nsarafianos.github.io/" target="_blank">N. Sarafianos</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://engineering.purdue.edu/people/xiaoyu.xiang.1" target="_blank">X. Xiang</a>, <a href="" target="_blank">Y. Li</a>, <a href="https://www.linkedin.com/in/jovan-cmu/" target="_blank">J. Popovic</a>, <a href="https://www.linkedin.com/in/rakesh-r-3848538/" target="_blank">R. Ranjan</a><br/>
International Conference on 3D Vision (3DV) 2025<br/>
[<a href="https://nsarafianos.github.io/garment3dgen">project</a>] [<a href="https://arxiv.org/pdf/2403.18816">paper</a>] [<a href="https://www.youtube.com/watch?v=97L6W8AilY8">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">A Mesh-based Simulation Framework using Automatic Code Generation</span>
<div class="item-meta">
<a href="https://phherholz.github.io/" target="_blank">P. Herholz</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://www.cs.utah.edu/~ladislav/" target="_blank">L. Kavan</a><br/>
ACM Transaction on Graphics (SIGGRAPH Asia 2024)<br/>
[<a href="https://dl.acm.org/doi/epdf/10.1145/3687986">paper</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Estimating Cloth Elasticity Parameters from Homogenized Yarn-level Models</span>
<div class="item-meta">
<a href="https://www.cs.cornell.edu/~joyxiaojizhang/" target="_blank">J. Zhang</a>, <a href="" target="_blank">G. Lin</a>, <a href="" target="_blank">L. Bode</a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a><br/>
Proceedings of the 17th ACM SIGGRAPH Conference on Motion, Interaction, and Games (MIG) 2024<br/>
[<a href="https://arxiv.org/pdf/2401.15169">paper</a>] [<a href="https://www.youtube.com/watch?v=bjNjxqX34AE">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">DiffAvatar: Simulation-Ready Garment Optimization with Differentiable Simulation</span>
<div class="item-meta">
<a href="https://people.csail.mit.edu/liyifei/" target="_blank">Y. Li</a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a>, <a href="https://nsarafianos.github.io/" target="_blank">N. Sarafianos</a>, <a href="https://cdfg.csail.mit.edu/wojciech" target="_blank">W. Matusik</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
IEEE Conference on Computer Vision and Pattern Recognition (CVPR) 2024<br/>
[<a href="https://people.csail.mit.edu/liyifei/publication/diffavatar/">project</a>] [<a href="https://arxiv.org/pdf/2311.12194.pdf">paper</a>] [<a href="https://youtu.be/vH2MCXneAUE?si=QLY4DlcNsHxREASd">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">DiffXPBD: Differentiable Position-Based Simulation of Compliant Constraint Dynamics</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a><br/>
Symposium on Computer Animation (SCA) 2023<br/>
[<a href="http://arxiv.org/abs/2301.01396">paper</a>] [<a href="https://youtu.be/O3bPyeFO404">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Digital Garment Generation</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://sites.google.com/site/tony2ng" target="_blank">T. Tung</a><br/>
2023 US Patent US20230088866
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">NeuWigs: A Neural Dynamic model for Volumetric Hair Capture and Animation</span>
<div class="item-meta">
<a href="https://ziyanw1.github.io/" target="_blank">Z. Wang</a>, <a href="https://sites.google.com/view/gjnam" target="_blank">G. Nam</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://stephenlombardi.github.io/" target="_blank">S. Lombardi</a>, <a href="https://sites.google.com/site/zjucaochen/home" target="_blank">C. Cao</a>, <a href="https://scholar.google.com/citations?user=ss-IvjMAAAAJ&hl=en" target="_blank">J. Saragih</a>, <a href="https://zollhoefer.com/" target="_blank">M. Zollhöfer</a>, <a href="https://www.cs.cmu.edu/~jkh/" target="_blank">J. Hodgins</a>, <a href="https://christophlassner.de/" target="_blank">C. Lassner</a><br/>
IEEE Conference on Computer Vision and Pattern Recognition(CVPR) 2023<br/>
[<a href="https://arxiv.org/pdf/2212.00613.pdf">paper</a>] [<a href="https://ziyanw1.github.io/neuwigs/">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">PhysGraph: Physics-Based Cloth Enhancement Using Graph Neural Networks</span>
<div class="item-meta">
<a href="https://scholar.google.com/citations?hl=en&user=otORCAkAAAAJ" target="_blank">O. Halimi</a>, <a href="https://elrnv.com/" target="_blank">E. Larionov</a>, <a href="" target="_blank">Z. Barzelay</a>, <a href="https://phherholz.github.io/" target="_blank">P. Herholz</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
arXiv 2023<br/>
[<a href="https://arxiv.org/pdf/2301.11841">paper</a>] [<a href="https://www.youtube.com/watch?v=s8ZFvdQdMBc&ab_channel=TuurStuyck">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Pattern-Based Cloth Registration and Sparse-View Animation</span>
<div class="item-meta">
<a href="https://scholar.google.com/citations?hl=en&user=otORCAkAAAAJ" target="_blank">O. Halimi</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://xiangdonglai.github.io/" target="_blank">D. Xiang</a>, <a href="https://scholar.google.ch/citations?user=oLi7xJ0AAAAJ&hl=en" target="_blank">T. Bagautdinov</a>, <a href="https://www.linkedin.com/in/hewen" target="_blank">H. Wen</a>, <a href="https://scholar.google.com/citations?hl=en&user=yV7LaW8AAAAJ" target="_blank">R. Kimmel</a>, <a href="https://scholar.google.com/citations?hl=en&user=YvS3QpkAAAAJ" target="_blank">T. Shiratori</a>, <a href="https://scholar.google.com/citations?hl=en&user=49ovzE4AAAAJ" target="_blank">C. Wu</a>, <a href="https://scholar.google.com/citations?hl=en&user=Yd4KvooAAAAJ" target="_blank">Y. Sheikh</a>, <a href="https://www.cs.jhu.edu/~fpradan1/" target="_blank">F. Prada</a><br/>
ACM Transaction on Graphics (SIGGRAPH Asia 2022)<br/>
[<a href="https://arxiv.org/abs/2206.03373">paper</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Dressing Avatars: Deep Photorealistic Appearance for Physically Simulated Clothing</span>
<div class="item-meta">
<a href="https://xiangdonglai.github.io/" target="_blank">D. Xiang</a>, <a href="https://scholar.google.ch/citations?user=oLi7xJ0AAAAJ&hl=en" target="_blank">T. Bagautdinov</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://www.cs.jhu.edu/~fpradan1/" target="_blank">F. Prada</a>, <a href="https://scholar.google.com/citations?user=Wx62iOsAAAAJ&hl=en" target="_blank">J. Romero</a>, <a href="https://scholar.google.com/citations?hl=en&user=vy8xXDQAAAAJ" target="_blank">W. Xu</a>, <a href="https://scholar.google.com/citations?hl=en&user=IolN_okAAAAJ" target="_blank">S. Saito</a>, <a href="https://scholar.google.com/citations?hl=en&user=-PsRtB_TuTQC" target="_blank">J. Guo</a>, <a href="https://scholar.google.com/citations?hl=en&user=ve3Ki9kAAAAJ" target="_blank">B. Smith</a>, <a href="https://scholar.google.com/citations?hl=en&user=YvS3QpkAAAAJ" target="_blank">T. Shiratori</a>, <a href="https://scholar.google.com/citations?hl=en&user=Yd4KvooAAAAJ" target="_blank">Y. Sheikh</a>, <a href="https://scholar.google.com/citations?hl=en&user=vswo4rQAAAAJ" target="_blank">J. Hodgins</a>, <a href="https://scholar.google.com/citations?hl=en&user=49ovzE4AAAAJ" target="_blank">C. Wu</a><br/>
ACM Transaction on Graphics (SIGGRAPH Asia 2022)<br/>
[<a href="https://arxiv.org/abs/2206.15470">paper</a>] [<a href="https://research.facebook.com/publications/dressing-avatars-deep-photorealistic-appearance-for-physically-simulated-clothing/">Video</a>] [<a href="https://uploadvr.com/meta-avatar-clothes-research/">UploadVR</a>] [<a href="https://80.lv/articles/meta-presented-photorealistic-clothing-for-avatars">80 Level</a>] [<a href="https://www.moguravr.com/meta-avatar-changing-clothes-research/">Mogura VR</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Virtual Elastic Objects</span>
<div class="item-meta">
<a href="https://oden.utexas.edu/people/directory/Hsiao-yu%20Chen/" target="_blank">H. Chen</a>, <a href="https://people.mpi-inf.mpg.de/~tretschk/" target="_blank">E. Tretschk</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://cgg.mff.cuni.cz/~kadlecek/" target="_blank">P. Kadlecek</a>, <a href="https://www.cs.utah.edu/~ladislav/" target="_blank">L. Kavan</a>, <a href="https://www.cs.utexas.edu/users/evouga/" target="_blank">E. Vouga</a>, <a href="https://christophlassner.de/" target="_blank">C. Lassner</a><br/>
IEEE Conference on Computer Vision and Pattern Recognition(CVPR) 2022<br/>
[<a href="https://arxiv.org/abs/2201.04623">paper</a>] [<a href="https://hsiaoyu.github.io/VEO/">Project page</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">HVH: Learning a Hybrid Neural Volumetric Representation for Dynamic Hair Performance Capture</span>
<div class="item-meta">
<a href="https://ziyanw1.github.io/" target="_blank">Z. Wang</a>, <a href="https://sites.google.com/view/gjnam" target="_blank">G. Nam</a>, <a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://stephenlombardi.github.io/" target="_blank">S. Lombardi</a>, <a href="https://zollhoefer.com/" target="_blank">M. Zollhöfer</a>, <a href="https://www.cs.cmu.edu/~jkh/" target="_blank">J. Hodgins</a>, <a href="https://christophlassner.de/" target="_blank">C. Lassner</a><br/>
IEEE Conference on Computer Vision and Pattern Recognition(CVPR) 2022<br/>
[<a href="https://arxiv.org/abs/2112.06904">paper</a>] [<a href="https://ziyanw1.github.io/hvh/">video</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Simulating garment with wrinkles based on physics-based cloth simulator and machine learning model</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://sites.google.com/site/tony2ng" target="_blank">T. Tung</a><br/>
2021 US Patent US10909744B1
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Cloth Simulation for Computer Graphics</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
2018 Synthesis Lectures on Visual Computing: Computer Graphics, Animation, Computational Photography, and Imaging.<br/>
Morgan & Claypool Publishers.
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Natural Media Simulation and Art-Directable Simulations for Computer Animation</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a><br/>
2017 PhD Thesis.
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Real-Time Oil Painting on Mobile Hardware</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="http://www.cs.columbia.edu/~fang/" target="_blank">F. Da</a>, <a href="https://sunilhadap.github.io/" target="_blank">S. Hadap</a>, <a href="https://sites.google.com/site/philipdutre/" target="_blank">P. Dutre</a><br/>
2017 Computer Graphics Forum.
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Sculpting Fluids: A New and Intuitive Approach to Art-Directable Fluids</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://sites.google.com/site/philipdutre/" target="_blank">P. Dutre</a><br/>
2016 Siggraph Poster and Research Competition Presentation<br/>
Second place ACM SIGGRAPH Research Competition 2016
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Model Predictive Control for Art-Directable Fluids</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://sites.google.com/site/philipdutre/" target="_blank">P. Dutre</a><br/>
2016 Siggraph Poster
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">Digital Painting Classroom: Learning Oil Painting Using a Tablet</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, <a href="https://sunilhadap.github.io/" target="_blank">S. Hadap</a>, <a href="https://sites.google.com/site/philipdutre/" target="_blank">P. Dutre</a><br/>
2016 Siggraph Short Talk
</div>
</div>
</div>
<div class="item-row">
<div class="item-content">
<span class="item-title">HR-Kinect-High-Resolution Dynamic 3D Scanning for Facial Expression Analysis</span>
<div class="item-meta">
<a href="https://tuurstuyck.github.io/" target="_blank"><b>T. Stuyck</b></a>, D. Vandermeulen, D. Smeets, P Claes<br/>
2013 Master thesis
</div>
</div>
</div>
</section>
<section id="books">
<h3>Books</h3>
<div class="item-row">
<div class="item-image">
<img src="./images/coverstuycksmall.jpg" alt="Cloth Simulation for Computer Graphics book cover" loading="lazy">
</div>
<div class="item-content">
<span class="item-title">Cloth Simulation For Computer Graphics</span>
<div class="item-meta">
Physics-based animation is commonplace in animated feature films and even special effects for live-action movies. Think about a recent movie and there will be some sort of special effects such as explosions or virtual worlds. Cloth simulation is no different and is ubiquitous because most virtual characters (hopefully!) wear some sort of clothing.<br/><br/>
The focus of this book is physics-based cloth simulation. We start by providing background information and discuss a range of applications. This book provides explanations of multiple cloth simulation techniques. More specifically, we start with the most simple explicitly integrated mass-spring model and gradually work our way up to more complex and commonly used implicitly integrated continuum techniques in state-of-the-art implementations. We give an intuitive explanation of the techniques and give additional information on how to efficiently implement them on a computer.<br/><br/>
Published by Morgan and Claypool Publishers: <a class="nonblock" href="https://www.morganclaypoolpublishers.com/catalog_Orig/product_info.php?cPath=22&products_id=1295">[link]</a><br/>
Buy on Amazon: <a class="nonblock" href="https://www.amazon.com/Cloth-Simulation-Computer-Graphics-Stuyck/dp/1681734117/">[link]</a><br/>
Fxguide article: <a class="nonblock" href="https://www.fxguide.com/featured/cloth-simulation-opening-the-kimono/">[link]</a>
</div>
</div>
</div>
</section>
<section id="work">
<h3>Work History</h3>
<div class="item-row">
<div class="item-image">
<img src="./images/nvidia-logo.png" alt="NVIDIA logo" loading="lazy">
</div>
<div class="item-content">
<span class="item-title">NVIDIA</span>
<div class="item-meta">
<b>Senior Manager, Robotics </b><br/>
2026 - Present
</div>
</div>
</div>
<div class="item-row">
<div class="item-image">
<img src="./images/Meta.png" alt="Meta logo" loading="lazy">
</div>
<div class="item-content">
<span class="item-title">Meta Research</span>
<div class="item-meta">
<b>Senior Staff Research Scientist Manager</b><br/>
Leading simulation technologies for robotics and avatars<br/>
2019 F8 Talk [<a class="nonblock" href="https://www.youtube.com/watch?v=FhiAFo9U_sM" target="_blank">link</a>]<br/>
2021 Oculus Connect [<a class="nonblock" href="https://www.linkedin.com/posts/tuurstuyck_virtualhumans-avatars-digitalfashion-activity-6860953280483328000-v-xf" target="_blank">link</a>]<br/>
2022 Meta Connect [<a class="nonblock" href="https://www.youtube.com/watch?v=r7raHNfPc6A&t=4s&ab_channel=VRTrailers%26Clips" target="_blank">link</a>]<br/>
2018 - 2026
</div>
</div>
</div>
<div class="item-row">
<div class="item-image">
<img src="./images/hpg.png" alt="High Performance Graphics logo" loading="lazy">
</div>
<div class="item-content">
<span class="item-title">High Performance Graphics</span>
<div class="item-meta">
Committee Member 2021 [<a class="nonblock" href="https://www.highperformancegraphics.org/2021/" target="_blank">link</a>]
</div>
</div>
</div>
<div class="item-row">
<div class="item-image">
<img src="./images/s2019_signature.jpg" alt="SIGGRAPH logo" loading="lazy">
</div>
<div class="item-content">
<span class="item-title">SIGGRAPH</span>
<div class="item-meta">
SIGGRAPH 2019, 2020<br/>
Virtual, Augmented, and Mixed Reality Committee Member<br/>
SIGGRAPH 2025<br/>
Student Research Competition Chair<br/>
SIGGRAPH 2026<br/>
Poster Chair
</div>
</div>
</div>
<div class="item-row">
<div class="item-image">
<img src="./images/pixar-crop-u3759.jpg" alt="Pixar Animation Studios logo" loading="lazy">
</div>
<div class="item-content">
<span class="item-title">Pixar Animation Studios</span>
<div class="item-meta">
<b>Postdoctoral Research Scientist</b><br/>
Space-time Control for Cloth Simulation, 2017-2018<br/><br/>
<b>Research Intern (twice)</b><br/>
Artistic Control of Cloth Simulations, Jun 2016 - Sep 2016<br/>
Space-Time Control for Cloth Simulations, Nov 2016 - Feb 2017
</div>
</div>
</div>
<div class="item-row">
<div class="item-image">
<img src="./images/Adobe-logo.png" alt="Adobe logo" loading="lazy">
</div>
<div class="item-content">
<span class="item-title">Adobe</span>
<div class="item-meta">
<b>Research collaboration</b><br/>
Continued collaboration working on research internship project, Aug 2014 - Jan 2016<br/><br/>
<b>Research Intern</b><br/>
Realistic oil paint simulation on mobile hardware, May 2014 - Aug 2014
</div>
</div>
</div>
</section>
<section id="education">
<h3>Education</h3>
<div class="item-row">
<div class="item-image">
<img src="./images/kuleuven.jpg" alt="KU Leuven logo" loading="lazy">
</div>
<div class="item-content">
<div class="item-meta">
<b>PhD Computer Science, KU Leuven</b><br/>
Natural Media Simulation and Art-Directable Simulations for Computer Graphics<br/><br/>
<b>Master of Science in Engineering, KU Leuven</b><br/>
Mathematical Engineering<br/>
Thesis: HR-Kinect - high-resolution dynamic 3D scanning for facial expression analysis<br/><br/>
<b>Bachelor of Science in Engineering, KU Leuven</b><br/>
Major: Computer Science | Minor: Electrical Engineering
</div>
</div>
</div>
</section>
</div>
</body>
</html>