-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
988 lines (844 loc) · 54.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Eugene d'Eon - Publications</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
<style type="text/css" media="screen">
#header {
background-color: #1f1f1f;
}
#mainNav ul ul {
background-color: #1f1f1f;
}
blockquote,
address {
border-left: 5px solid #1e73be;
}
#filterNav .selected,
#filterNav a.selected:hover {
background-color: #1e73be;
}
#content .project.small .title span {
background-color: #1e73be !important;
}
.flex-direction-nav li a {
background-color: #1e73be !important;
}
.posts .post .date {
background-color: #1e73be !important;
}
#googleMap {
height: 350px;
}
a {
color: #4da7ca;
}
a:hover {
color: #4290ae;
}
.button,
#searchsubmit,
input[type="submit"] {
background-color: #757575 !important;
}
</style>
<style type="text/css" id="custom-background-css">
body.custom-background {
background-color: #1f1f1f;
}
</style>
</head>
<body class="project-template-default single single-project postid-535 custom-background chrome ">
<div id="container">
<div id="header">
<div class="top">
<div class="surround">
<div class="inside clearfix">
<div id="logo">
<h1 class="logo"><a href="http://www.eugenedeon.com"><img src="logo.png"
alt="Eugene d'Eon" style="height: 100px; width: auto;" /></a></h1>
<h1 class="name">Eugene d'Eon</h1>
</div>
</div>
</div>
</div>
</div>
<div id="wrap">
<div id="middle" class="clearfix">
<div id="projects" class="full homeSection clearfix">
<div class="sectionHead">
<br /><br />
<h3><span>Publications</span></h3>
<p>Computer graphics research with a twist of neutron transport</p>
</div>
</div>
<div class="inside">
<h2 style="text-align:center;">BOOK</h2>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="http://www.eugenedeon.com/hitchhikers"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Hitchhiker's Guide to Multiple Scattering"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="http://www.eugenedeon.com/hitchhikers">A Hitchhiker’s Guide to Multiple
Scattering</a></b><br />
<i>Exact Analytic, Monte Carlo and Approximate Solutions in Transport Theory</i>
<br />
Eugene d’Eon<br />
<a href="http://www.eugenedeon.com/hitchhikers">[free pdf]</a>
</div>
<hr width="100%">
<h2 style="text-align:center;">PAPERS</h2>
<h4 style="text-align:center;">2024</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://ssteinberg.xyz/2023/03/27/rtplt/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Generalized Ray Formulation For Wave-Optics Rendering"
src="images/CD.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://ssteinberg.xyz/2023/03/27/rtplt/">A Generalized Ray Formulation For Wave-Optics Rendering</a></b><br />
<a href="https://ssteinberg.xyz/">Shlomi Steinberg</a> | <a href="https://cseweb.ucsd.edu/~ravir/">Ravi Ramamoorthi</a> | <a href="http://benedikt-bitterli.me/">Benedikt Bitterli</a> | Eugene d'Eon | Ling-Qi Yan | <a href="https://pharr.org/matt/">Matt Pharr</a> <br />
<i>SIGGRAPH Asia 2024 (to appear)</i><br />
<a href="https://ssteinberg.xyz/2023rtplt/2023_rtplt.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://ssteinberg.xyz/2024/04/05/free_space_diffractions_bsdf/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Free-Space Diffraction BSDF"
src="images/diffraction.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://ssteinberg.xyz/2024/04/05/free_space_diffractions_bsdf/">A Free-Space Diffraction BSDF</a></b><br />
<a href="https://ssteinberg.xyz/">Shlomi Steinberg</a> | <a href="https://cseweb.ucsd.edu/~ravir/">Ravi Ramamoorthi</a> | <a href="http://benedikt-bitterli.me/">Benedikt Bitterli</a> | Arshiya Mollazainali | Eugene d'Eon | <a href="https://pharr.org/matt/">Matt Pharr</a> <br />
<i><a href="https://s2024.conference-program.org/presentation/?id=papers_392&sess=sess133">SIGGRAPH 2024</a></i><br />
<a href="https://ssteinberg.xyz/2024fsdbsdf/steinberg2024_fsd_paper.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://cs.dartmouth.edu/~wjarosz/publications/seyb24from.html"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="From microfacets to participating media: A unified theory of light transport with stochastic geometry"
src="images/GPIS_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://cs.dartmouth.edu/~wjarosz/publications/seyb24from.html">From microfacets to participating media: A unified theory of light transport with stochastic geometry</a></b><br />
<a href="https://darioseyb.com/">Dario Seyb</a> | Eugene d’Eon | <a href="http://benedikt-bitterli.me/">Benedikt Bitterli</a> | <a href="https://cs.dartmouth.edu/~wjarosz/">Wojciech Jarosz</a> <br />
<i><a href="https://s2024.conference-program.org/presentation/?id=papers_124&sess=sess133">SIGGRAPH 2024</a></i><br />
<a href="https://cs.dartmouth.edu/~wjarosz/publications/seyb24from.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://diglib.eg.org/handle/10.1111/cgf15149"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="VMF Diffuse: A Unified Rough Diffuse BRDF"
src="images/vmfDiffuse.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://diglib.eg.org/handle/10.1111/cgf15149">VMF Diffuse: A Unified Rough Diffuse BRDF</a></b><br />
Eugene d’Eon | <a href="https://research.nvidia.com/labs/rtr/author/andrea-weidlich/">Andrea Weidlich</a><br />
<i><a href="https://www.egsr2024.uk/programme/">EGSR 2024</a></i><br />
<a href="https://diglib.eg.org/bitstreams/8c368715-7472-449a-9481-3c0708833b11/download">[pdf]</a> <a href="code/vmf_diffuse.nb">[Mathematica]</a> <a href="https://www.shadertoy.com/view/MXKSWW">[ShaderToy]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2023</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://research.nvidia.com/labs/rtr/approximate-mie/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="An Approximate Mie Scattering Function for Fog and Cloud Rendering"
src="images/mie_icon.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://research.nvidia.com/labs/rtr/approximate-mie/">An Approximate Mie Scattering Function for Fog and Cloud Rendering</a></b><br />
Johannes Jendersie | Eugene d’Eon<br />
<i><a href="https://s2023.siggraph.org/presentation/?id=gensub_121&sess=sess170">SIGGRAPH 2023 Talks</a></i><br />
<a href="https://research.nvidia.com/labs/rtr/approximate-mie/publications/approximate-mie.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://research.nvidia.com/labs/rtr/student-beyond/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Student-T and Beyond"
src="images/student-t-thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://research.nvidia.com/labs/rtr/student-beyond/">
Student-T and Beyond: Practical Tools for Multiple-Scattering BSDFs with General NDFs</a></b><br />
Eugene d’Eon<br />
<i><a href="https://s2023.siggraph.org/presentation/?id=gensub_181&sess=sess170">SIGGRAPH 2023 Talks</a></i><br />
<a href="https://research.nvidia.com/labs/rtr/student-beyond/publications/student-t.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://research.nvidia.com/labs/rtr/microfacet-theory-non-uniform-heightfields/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Microfacet Theory for Non-uniform Heightfields"
src="images/microfacet-thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://research.nvidia.com/labs/rtr/microfacet-theory-non-uniform-heightfields/">
Microfacet Theory for Non-uniform Heightfields</a></b><br />
Eugene d’Eon | <a href="http://benedikt-bitterli.me/">Benedikt Bitterli</a> | Andrea Weidlich | Tizian Zeltner<br />
<i><a href="https://s2023.siggraph.org/presentation/?id=papers_160&sess=sess115">SIGGRAPH 2023 Papers</a></i><br />
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/microfacet-theory-non-uniform-heightfields_1.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://www.researchgate.net/publication/372657906_High-Precision_Benchmarks_for_the_Stochastic_Rod"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="High-Precision Benchmarks for the Stochastic Rod"
src="images/binary_bench_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://www.researchgate.net/publication/372657906_High-Precision_Benchmarks_for_the_Stochastic_Rod">
High-Precision Benchmarks for the Stochastic Rod</a></b><br />
Eugene d’Eon | Anil Prinja<br />
<i>ANS M&C 2023</i><br />
<a href="pdfs/stochrod.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:90px;width:80px;float:left;">
<a href="https://www.researchgate.net/publication/370838815_Beyond_Renewal_Approximations_A_1D_Point_Process_Approach_to_Linear_Transport_in_Stochastic_Media"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Beyond Renewal Approximations: A 1D Point Process Approach to Linear Transport in Stochastic Media"
src="images/pointprocess-thumb.png"
width="80" height="90"></a>
</div>
<div>
<b>
<a href="https://www.researchgate.net/publication/370838815_Beyond_Renewal_Approximations_A_1D_Point_Process_Approach_to_Linear_Transport_in_Stochastic_Media">
Beyond Renewal Approximations: A 1D Point Process Approach to Linear Transport in Stochastic Media</a></b><br />
Eugene d’Eon<br />
<i>ANS M&C 2023</i><br />
<a href="pdfs/renewal2023.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2022</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/posfree.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Position-Free Path Integral for Homogeneous Slabs and Multiple Scattering on Smith Microfacets"
src="images/posfree_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/posfree.pdf">
A Position-Free Path Integral for Homogeneous Slabs and Multiple Scattering on Smith Microfacets</a></b><br />
<a href="http://benedikt-bitterli.me/">Benedikt Bitterli</a> | Eugene d’Eon<br />
<i><a href="https://egsr.eu/2022/program/">EGSR 2022</a></i><br />
<a href="pdfs/posfree.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2021</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/urm.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="An unbiased ray-marching transmittance estimator"
src="images/urm_thumb.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/urm.pdf">
An unbiased ray-marching transmittance estimator</a></b><br />
Markus Kettunen | Eugene d’Eon | Jacopo Pantaleoni | Jan Novak<br />
<i><a href="https://s2021.siggraph.org/presentation/?id=papers_369&sess=sess123">SIGGRAPH 2021</a></i><br />
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/urm.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/markovalbedobench.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Markovian Binary Mixtures: Benchmarks for the albedo problem"
src="images/binary_bench_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/markovalbedobench.pdf">
Markovian Binary Mixtures: Benchmarks for the albedo problem</a></b><br />
Coline Larmier | Eugene d’Eon | Andrea Zoia<br />
<i>ANS M&C 2023</i><br />
<a href="pdfs/markovalbedobench.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/lambertsphereBRDF.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="An analytic BRDF for materials with spherical Lambertian scatterers"
src="images/lambert-sphere-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/lambertsphereBRDF.pdf">
An analytic BRDF for materials with spherical Lambertian scatterers</a></b><br />
Eugene d’Eon<br />
<i>EGSR 2021 (Best Paper Award)</i><br />
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/lambertsphereBRDF.pdf">[pdf]</a> <a href="https://youtu.be/WUBf30dzk3Q?t=1264">[video]</a> <a href="https://github.com/eugenedeon/mitsuba">[code]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/zerovarT.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Zero-variance transmittance estimation"
src="images/zvt_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/zerovarT.pdf">
Zero-variance transmittance estimation</a></b><br />
Eugene d’Eon | Jan Novak<br />
<i>EGSR 2021</i><br />
<a href="https://d1qx31qr3h6wln.cloudfront.net/publications/zerovarT.pdf">[pdf]</a> <a href="https://youtu.be/TvWkwDYtBP4?t=415">[video]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2020</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/zv2020.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Zero-Variance Theory for Efficient Subsurface Scattering"
src="images/zv-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/zv2020.pdf">
Zero-Variance Theory for Efficient Subsurface Scattering</a></b><br />
Eugene d’Eon | Jaroslav Křivánek<br />
<i>SIGGRAPH 2020 Courses: Advances in Monte Carlo rendering: the legacy of Jaroslav Křivánek</i><br />
<a href="pdfs/zv2020.pdf">[pdf]</a> <a href="https://www.youtube.com/watch?v=0fzJCrLKJg0&t=3494s">[video]</a> <a href="code/zero_variance_code.zip">[code]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://github.com/eugenedeon/hitchhikersscatter/blob/master/code/MonteCarlo/Sampling/sampling_using_integral_transforms.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Random variate generation/Importance sampling using integral transforms"
src="images/sampling_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://github.com/eugenedeon/hitchhikersscatter/blob/master/code/MonteCarlo/Sampling/sampling_using_integral_transforms.pdf">
Random variate generation/Importance sampling using integral transforms</a></b><br />
Eugene d’Eon<br />
<i>Tech Report</i><br />
<a href="https://github.com/eugenedeon/hitchhikersscatter/blob/master/code/MonteCarlo/Sampling/sampling_using_integral_transforms.pdf">[pdf]</a> <a href="https://github.com/eugenedeon/hitchhikersscatter/blob/master/code/MonteCarlo/Sampling/sampling_using_integral_transforms.nb">[code]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2019</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://arxiv.org/abs/1809.05881"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Reciprocal Formulation of Nonexponential Radiative Transfer. 2: Monte Carlo Estimation and Diffusion Approximation"
src="images/nonexpii_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://arxiv.org/abs/1809.05881">
A Reciprocal Formulation of Nonexponential Radiative Transfer. 2: Monte Carlo Estimation and Diffusion Approximation</a></b><br />
Eugene d’Eon<br />
<i><a href="https://doi.org/10.1080/23324309.2019.1677717">The Journal of Computational and Theoretical Transport</a></i><br />
<a href="https://arxiv.org/abs/1809.05881">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/albedoICTT2019.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="The Albedo Problem in Nonexponential Radiative Transfer"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/albedoICTT2019.pdf">
The Albedo Problem in Nonexponential Radiative Transfer</a></b><br />
Eugene d’Eon<br />
<i>International Conference on Transport Theory (ICTT) – September, 2019, Paris</i><br />
<a href="pdfs/albedoICTT2019.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Nonexponential Radiative Transfer: Reciprocity, Monte Carlo Estimation and Diffusion Approximation"
src="logowhite.jpg"
width="80" height="80">
</div>
<div>
<b>
Nonexponential Radiative Transfer: Reciprocity, Monte Carlo Estimation and Diffusion Approximation</b><br />
Eugene d’Eon<br />
<i>International Conference on Transport Theory (ICTT) – September, 2019, Paris</i><br />
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/albedo_dD.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Radiative Transfer in half spaces of arbitrary dimension"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/albedo_dD.pdf">
Radiative Transfer in half spaces of arbitrary dimension</a></b><br />
Eugene d’Eon<br />
<i><a href="https://doi.org/10.1080/23324309.2019.1696365">The Journal of Computational and Theoretical Transport</a></i><br />
<a href="pdfs/albedo_dD.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2018</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://arxiv.org/abs/1802.02120"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Isotropic Scattering in a Flatland Half-Space"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://arxiv.org/abs/1802.02120">
Isotropic Scattering in a Flatland Half-Space</a></b><br />
Eugene d’Eon<br />
<i><a href="https://doi.org/10.1080/23324309.2018.1544566">The Journal of Computational and Theoretical Transport</a></i><br />
<a href="https://arxiv.org/abs/1802.02120">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://arxiv.org/abs/1803.03259"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Reciprocal Formulation of Nonexponential Radiative Transfer. 1: Sketch and Motivation"
src="images/nonexp_part1.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://arxiv.org/abs/1803.03259">
A Reciprocal Formulation of Nonexponential Radiative Transfer. 1: Sketch and Motivation</a></b><br />
Eugene d’Eon<br />
<i><a href="https://doi.org/10.1080/23324309.2018.1481433">The Journal of Computational and Theoretical Transport</a></i><br />
<a href="https://arxiv.org/abs/1803.03259">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2017</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://plenodb.jpeg.org/pc/8ilabs"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="JPEG Pleno Database: 8i Voxelized Full Bodies (8iVFB v2) – A Dynamic Voxelized Point Cloud Dataset"
src="images/longdress_thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://plenodb.jpeg.org/pc/8ilabs">
JPEG Pleno Database: 8i Voxelized Full Bodies (8iVFB v2) – A Dynamic Voxelized Point Cloud Dataset</a></b><br />
Eugene d’Eon | Bob Harrison | Taos Myers | Philip A. Chou<br />
<i>ISO/IEC JTC1/SC29 Joint WG11/WG1 (MPEG/JPEG) input document WG11M40059/WG1M74006, Geneva, January 2017</i><br />
<a href="https://plenodb.jpeg.org/pc/8ilabs">[data]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2016</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://t.co/814tDB1uV6"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Additional Progress Towards the Unification of Microfacet and Microflake Theories"
src="images/microfacetegsr-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://t.co/814tDB1uV6">
Additional Progress Towards the Unification of Microfacet and Microflake Theories</a></b><br />
Jonathan Dupuy | Eric Heitz | Eugene d’Eon<br />
<i>EGSR 2016</i><br />
<a href="https://t.co/814tDB1uV6">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/nonclassical_diffusion_v4.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Diffusion approximations for nonclassical Boltzmann transport in arbitrary dimension"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/nonclassical_diffusion_v4.pdf">
Diffusion approximations for nonclassical Boltzmann transport in arbitrary dimension</a></b><br />
Eugene d’Eon<br />
<i>Tech Report</i><br />
<a href="pdfs/nonclassical_diffusion_v4.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/sgcross.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="The anisotropic cross-section for the spherical Gaussian medium"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/sgcross.pdf">
The anisotropic cross-section for the spherical Gaussian medium</a></b><br />
Eugene d’Eon<br />
<i>Tech Report</i><br />
<a href="pdfs/sgcross.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://eheitzresearch.wordpress.com/240-2/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Multiple-Scattering Microfacet BSDFs with the Smith Model"
src="images/micro2016-thumb.png"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://eheitzresearch.wordpress.com/240-2/">
Multiple-Scattering Microfacet BSDFs with the Smith Model</a></b><br />
Eric Heitz | Johannes Hanika | Eugene d’Eon | Carsten Dachsbacher<br />
<i>SIGGRAPH 2016</i><br />
<a href="https://eheitzresearch.wordpress.com/240-2/">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2014</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="http://cgg.mff.cuni.cz/~jaroslav/papers/2014-zerovar/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Zero-variance-based Sampling Scheme for Monte Carlo Subsurface Scattering"
src="images/zv-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="http://cgg.mff.cuni.cz/~jaroslav/papers/2014-zerovar/">
A Zero-variance-based Sampling Scheme for Monte Carlo Subsurface Scattering</a></b><br />
Jaroslav Krivanek | Eugene d’Eon<br />
<i>ACM SIGGRAPH 2014 Talks</i><br />
<a href="https://cgg.mff.cuni.cz/~jaroslav/papers/2014-zerovar/2014-zerovar-abstract.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="http://www.fxguide.com/featured/its-not-rocket-science-oh-wait/"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Computer graphics and particle transport: our common heritage, recent cross-field parallels and the future of our rendering equation"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="http://www.fxguide.com/featured/its-not-rocket-science-oh-wait/">
Computer graphics and particle transport: our common heritage, recent cross-field parallels and the future of our rendering equation</a></b><br />
Eugene d’Eon<br />
<i>Digipro 2014</i><br />
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/nonsephair2014.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Fiber Scattering Model With Non-Separable Lobes"
src="images/hair-nonsep-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/nonsephair2014.pdf">
A Fiber Scattering Model With Non-Separable Lobes</a></b><br />
Eugene d’Eon | Steve Marschner | Johannes Hanika<br />
<i>ACM SIGGRAPH Talks 2014</i><br />
<a href="pdfs/nonsephair2014.pdf">[1-page abstract]</a> <a href="pdfs/nonsephair2014slides.pdf">[slides]</a> <a href="pdfs/hair_supplemental.pdf">[supplemental]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/diffusionbeam.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Dual-Beam 3D Searchlight BSSRDF"
src="images/dualbeam-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/diffusionbeam.pdf">
A Dual-Beam 3D Searchlight BSSRDF</a></b><br />
Eugene d’Eon<br />
<i>ACM SIGGRAPH Talks 2014</i><br />
<a href="pdfs/diffusionbeam.pdf">[abstract]</a> <a href="pdfs/dualbeam2014slides.pdf">[slides]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="http://hal.inria.fr/hal-00996995/en"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Importance Sampling Microfacet-Based BSDFs using the Distribution of Visible Normals"
src="images/heitzegsr-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="http://hal.inria.fr/hal-00996995/en">
Importance Sampling Microfacet-Based BSDFs using the Distribution of Visible Normals</a></b><br />
Eric Heitz | Eugene d’Eon<br />
<i>EGSR 2014 (Best Paper Award)</i><br />
<a href="http://hal.inria.fr/hal-00996995/en">[pdfs]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="http://www.cs.cornell.edu/projects/layered-sg14/layered.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Comprehensive Framework for Rendering Layered Materials"
src="images/layered-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="http://www.cs.cornell.edu/projects/layered-sg14/layered.pdf">
A Comprehensive Framework for Rendering Layered Materials</a></b><br />
Wenzel Jakob | Eugene d’Eon | Otto Jakob | Steve Marschner<br />
<i>ACM SIGGRAPH 2014</i><br />
<a href="http://www.cs.cornell.edu/projects/layered-sg14/layered.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2013</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="http://arxiv.org/abs/1312.1412"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Rigorous asymptotic and moment-preserving diffusion approximations for generalized linear Boltzmann transport in arbitrary dimension"
src="logowhite.jpg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="http://arxiv.org/abs/1312.1412">
Rigorous asymptotic and moment-preserving diffusion approximations for generalized linear Boltzmann transport in arbitrary dimension</a></b><br />
Eugene d’Eon<br />
<i><a href="http://dx.doi.org/10.1080/00411450.2014.910231">Transport Theory and Statistical Physics 2013</a> </i><br />
<a href="http://arxiv.org/abs/1312.1412">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://jo.dreggn.org/home/2013_hairbrief.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Importance Sampling for Physically-based Hair Fiber Models"
src="images/hairsampling-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="https://jo.dreggn.org/home/2013_hairbrief.pdf">
Importance Sampling for Physically-based Hair Fiber Models</a></b><br />
Eugene d’Eon | Steve Marschner | Johannes Hanika<br />
<i>ACM SIGGRAPH Asia 2013 Talks </i><br />
<a href="https://jo.dreggn.org/home/2013_hairbrief.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/memoryabstract.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Principle of Invariant Imbedding with Memory"
src="images/memoryrod-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/memoryabstract.pdf">
A Principle of Invariant Imbedding with Memory</a></b><br />
Eugene d’Eon<br />
<i>International Conference on Transport Theory 23 (Sept 2013, Santa Fe, New Mexico)</i><br />
<a href="pdfs/memoryabstract.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2012</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/betterdipole.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Better Dipole"
src="images/betterdipole-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/betterdipole.pdf">
A Better Dipole</a></b><br />
Eugene d’Eon<br />
<i>Technical Report, 2012</i><br />
<a href="pdfs/betterdipole.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2011</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/qd.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Quantized-Diffusion Model for Rendering Translucent Materials"
src="images/qd-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/qd.pdf">
A Quantized-Diffusion Model for Rendering Translucent Materials</a></b><br />
Eugene d’Eon | Geoffrey Irving<br />
<i>ACM SIGGRAPH 2011</i><br />
<a href="pdfs/qd.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/egsrhair.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="An Energy-Conserving Hair Reflectance Model"
src="images/hairegsr-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/egsrhair.pdf">
An Energy-Conserving Hair Reflectance Model</a></b><br />
Eugene d’Eon | Guillaume Francois | Martin Hill | Joe Letteri | Jean-Marie Aubry<br />
<i>Eurographics Symposium on Rendering 2011</i><br />
<a href="pdfs/egsrhair.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2008</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="http://www.cs.columbia.edu/cg/pdfs/150_donner08hskin.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="A Layered, Heterogeneous Reflectance Model for Acquiring and Rendering Human Skin"
src="images/hand2008-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="http://www.cs.columbia.edu/cg/pdfs/150_donner08hskin.pdf">
A Layered, Heterogeneous Reflectance Model for Acquiring and Rendering Human Skin</a></b><br />
Craig Donner | Tim Weyrich | Eugene d’Eon | Ravi Ramamoorthi | Szymon Rusinkiewicz<br />
<i>ACM SIGGRAPH Asia 2008</i><br />
<a href="http://www.cs.columbia.edu/cg/pdfs/150_donner08hskin.pdf">[pdf]</a>
</div>
<hr width="100%">
<h4 style="text-align:center;">2007</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="pdfs/efficientskin.pdf"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="Efficient Rendering of Human Skin"
src="images/efficientskin-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b>
<a href="pdfs/efficientskin.pdf">
Efficient Rendering of Human Skin</a></b><br />
Eugene d’Eon | David Luebke | Eric Enderton<br />
<i>EGSR 2007</i><br />
<a href="pdfs/efficientskin.pdf">[pdf]</a>
</div>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://developer.nvidia.com/gpugems/gpugems3/contributors"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="GPU Gems 3"
src="images/GPUGems-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b><a href="https://developer.nvidia.com/gpugems/gpugems3/contributors">
GPU Gems 3</a></b><br />
<a href="http://www.eugenedeon.com/?project=advanced-techniques-for-realistic-real-time-skin-rendering">
Chapter 14: Advanced Techniques for Realistic Real-Time Skin Rendering</a></b><br />
<a href="https://developer.nvidia.com/gpugems/gpugems3/part-iv-image-effects/chapter-24-importance-being-linear">
Chapter 24: The Importance of Being Linear</a></b><br />
</div>
<hr width="100%">
<h4 style="text-align:center;">2004</h4>
<hr width="100%">
<div style="margin-bottom:7px;margin-right:5px;height:80px;width:80px;float:left;">
<a href="https://developer.nvidia.com/gpugems/gpugems/part-vi-beyond-triangles/chapter-42-deformers"><img loading="lazy"
class="alignnone size-full wp-image-246"
alt="GPU Gems 3"
src="images/GPUGems1-thumb.jpeg"
width="80" height="80"></a>
</div>
<div>
<b><a href="https://developer.nvidia.com/gpugems/gpugems/part-vi-beyond-triangles/chapter-42-deformers">
GPU Gems</a></b><br />
<a href="https://developer.nvidia.com/gpugems/gpugems/part-vi-beyond-triangles/chapter-42-deformers">
Chapter 42: Deformers</a></b><br />
</div>
<hr width="100%">
</div>
</div>
</div>
<div id="footer">
<div class="main">
<div class="inside clearfix">
</div><!-- end footer inside-->
</div><!-- end footer main -->
<div class="secondary">
<div class="inside clearfix">
<div class="left">
<p>© 2023 <a href="http://www.eugenedeon.com"><strong>Eugene d'Eon</strong></a> All
Rights
Reserved.</p>
</div>
<div class="right">
<div style="width: 100%; overflow: hidden;">
<div style="width: 37px; height: 40px; float: right; vertical-align:middle;"><a
href="http://scholar.google.co.nz/citations?user=eGYe5bIAAAAJ"><img
src="scholar32.png" /></a>
</div>
<div style="width: 68px; line-height:32px; float: right; vertical-align:middle;">
<p>Scholar: </p>
</div>
</div>
</div>
</div><!-- end footer inside-->
</div><!-- end footer secondary-->
</div><!-- end footer -->
</div><!-- end container -->
<script>
if (window.innerWidth > 768) {
document.documentElement.style.fontSize = '130%';
}
</script>
</body>
</html>