forked from jonbarron/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·3422 lines (3248 loc) · 183 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
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Jon Barron</title>
<meta name="author" content="Jon Barron">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌐</text></svg>">
</head>
<body>
<table style="width:100%;max-width:800px;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr style="padding:0px">
<td style="padding:0px">
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr style="padding:0px">
<td style="padding:2.5%;width:63%;vertical-align:middle">
<p style="text-align:center">
<name>Jon Barron</name>
</p>
<p>I am a senior staff research scientist at <a href="https://ai.google/research">Google Research</a>, where I work on computer vision and machine learning.
</p>
<p>
At Google I've worked on <a href="https://ai.googleblog.com/2020/12/portrait-light-enhancing-portrait.html">Portrait Light</a>, <a href="https://ai.googleblog.com/2014/04/lens-blur-in-new-google-camera-app.html">Lens Blur</a>, <a href="https://ai.googleblog.com/2014/10/hdr-low-light-and-high-dynamic-range.html">HDR+</a>, <a href="https://www.google.com/get/cardboard/jump/">Jump</a>, <a href="https://ai.googleblog.com/2017/10/portrait-mode-on-pixel-2-and-pixel-2-xl.html">Portrait Mode</a>, <a href="https://www.youtube.com/watch?v=JSnB06um5r4">Glass</a>, and <a href="https://www.matthewtancik.com/nerf">NeRF</a>. I did my PhD at <a href="http://www.eecs.berkeley.edu/">UC Berkeley</a>, where I was advised by <a href="http://www.cs.berkeley.edu/~malik/">Jitendra Malik</a> and funded by the <a href="http://www.nsfgrfp.org/">NSF GRFP</a>. I've received the <a href="https://www2.eecs.berkeley.edu/Students/Awards/15/">C.V. Ramamoorthy Distinguished Research Award</a> and the <a href="https://www.thecvf.com/?page_id=413#YRA">PAMI Young Researcher Award</a>.
</p>
<p style="text-align:center">
<a href="mailto:[email protected]">Email</a>  / 
<a href="data/JonBarron-CV.pdf">CV</a>  / 
<a href="data/JonBarron-bio.txt">Bio</a>  / 
<a href="https://scholar.google.com/citations?hl=en&user=jktWnL8AAAAJ">Google Scholar</a>  / 
<a href="https://twitter.com/jon_barron">Twitter</a>  / 
<a href="https://github.com/jonbarron/">Github</a>
</p>
</td>
<td style="padding:2.5%;width:40%;max-width:40%">
<a href="images/JonBarron.jpg"><img style="width:100%;max-width:100%" alt="profile photo" src="images/JonBarron_circle.jpg" class="hoverZoomLink"></a>
</td>
</tr>
</tbody></table>
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr>
<td style="padding:20px;width:100%;vertical-align:middle">
<heading>Research</heading>
<p>
I'm interested in computer vision, machine learning, optimization, and image processing. Much of my research is about inferring the physical world (shape, motion, color, light, etc) from images. Representative papers are <span class="highlight">highlighted</span>.
</p>
</td>
</tr>
</tbody></table>
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr onmouseout="nerfsuper_stop()" onmouseover="nerfsuper_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='nerfsuper_image'><video width=100% height=100% muted autoplay loop>
<source src="images/nerf_supervision.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/nerf_supervision.jpg' width="160">
</div>
<script type="text/javascript">
function nerfsuper_start() {
document.getElementById('nerfsuper_image').style.opacity = "1";
}
function nerfsuper_stop() {
document.getElementById('nerfsuper_image').style.opacity = "0";
}
nerfsuper_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://waymo.com/research/block-nerf/">
<papertitle>NeRF-Supervision: Learning Dense Object Descriptors from Neural Radiance Fields</papertitle>
</a>
<br>
<a href="https://yenchenlin.me/">Lin Yen-Chen</a>,
<a href="http://www.peteflorence.com/">Pete Florence</a>,
<strong>Jonathan T. Barron</strong>, <br>
<a href="https://scholar.google.com/citations?user=_BPdgV0AAAAJ&hl=en">Tsung-Yi Lin</a>,
<a href="https://meche.mit.edu/people/faculty/[email protected]">Alberto Rodriguez</a>,
<a href="http://web.mit.edu/phillipi/">Phillip Isola</a>
<br>
<em>ICRA</em>, 2022
<br>
<a href="http://yenchenlin.me/nerf-supervision/">project page</a> /
<a href="https://arxiv.org/abs/2203.01913">arXiv</a> /
<a href="https://www.youtube.com/watch?v=_zN-wVwPH1s">video</a> /
<a href="https://github.com/yenchenlin/nerf-supervision-public">code</a> /
<a href="https://colab.research.google.com/drive/13ISri5KD2XeEtsFs25hmZtKhxoDywB5y?usp=sharing">colab</a>
<p></p>
<p>NeRF works better than RGB-D cameras or multi-view stereo when learning object descriptors.</p>
</td>
</tr>
<tr onmouseout="mip360_stop()" onmouseover="mip360_start()" bgcolor="#ffffd0">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='mip360_image'><video width=100% height=100% muted autoplay loop>
<source src="images/mip360_sat.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/mip360_sat.jpg' width="160">
</div>
<script type="text/javascript">
function mip360_start() {
document.getElementById('mip360_image').style.opacity = "1";
}
function mip360_stop() {
document.getElementById('mip360_image').style.opacity = "0";
}
mip360_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="http://jonbarron.info/mipnerf360">
<papertitle>Mip-NeRF 360: Unbounded Anti-Aliased Neural Radiance Fields</papertitle>
</a>
<br>
<strong>Jonathan T. Barron</strong>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<a href="https://scholar.harvard.edu/dorverbin/home">Dor Verbin</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<a href="https://phogzone.com/">Peter Hedman</a>
<br>
<em>CVPR</em>, 2022   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="http://jonbarron.info/mipnerf360">project page</a>
/
<a href="https://arxiv.org/abs/2111.12077">arXiv</a>
/
<a href="https://youtu.be/zBSH-k9GbV4">video</a>
<p></p>
<p>mip-NeRF can be extended to produce realistic results on unbounded scenes.</p>
</td>
</tr>
<tr onmouseout="refnerf_stop()" onmouseover="refnerf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='refnerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/refnerf.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/refnerf.jpg' width="160">
</div>
<script type="text/javascript">
function refnerf_start() {
document.getElementById('refnerf_image').style.opacity = "1";
}
function refnerf_stop() {
document.getElementById('refnerf_image').style.opacity = "0";
}
refnerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://dorverbin.github.io/refnerf/index.html">
<papertitle>Ref-NeRF: Structured View-Dependent Appearance for Neural Radiance Fields</papertitle>
</a>
<br>
<a href="https://scholar.harvard.edu/dorverbin/home">Dor Verbin</a>,
<a href="https://phogzone.com/">Peter Hedman</a>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>, <br>
<a href="Todd Zickler">Todd Zickler</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>
<br>
<em>CVPR</em>, 2022   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="https://dorverbin.github.io/refnerf/index.html">project page</a>
/
<a href="https://arxiv.org/abs/2112.03907">arXiv</a>
/
<a href="https://youtu.be/qrdRH9irAlk">video</a>
<p></p>
<p>Explicitly modeling reflections in NeRF produces realistic shiny surfaces and accurate surface normals, and lets you edit materials.</p>
</td>
</tr>
<tr onmouseout="rawnerf_stop()" onmouseover="rawnerf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='rawnerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/rawnerf.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/rawnerf.jpg' width="160">
</div>
<script type="text/javascript">
function rawnerf_start() {
document.getElementById('rawnerf_image').style.opacity = "1";
}
function rawnerf_stop() {
document.getElementById('rawnerf_image').style.opacity = "0";
}
rawnerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://bmild.github.io/rawnerf/index.html">
<papertitle>NeRF in the Dark: High Dynamic Range View Synthesis from Noisy Raw Images</papertitle>
</a>
<br>
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<a href="https://phogzone.com/">Peter Hedman</a>,
<a href="http://www.ricardomartinbrualla.com/">Ricardo Martin-Brualla</a>, <br>
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<strong>Jonathan T. Barron</strong>
<br>
<em>CVPR</em>, 2022   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="https://bmild.github.io/rawnerf/index.html">project page</a>
/
<a href="https://arxiv.org/abs/2111.13679">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=JtBS4KBcKVc">video</a>
<p></p>
<p>
Properly training NeRF on raw camera data enables HDR view synthesis and bokeh, and outperforms multi-image denoising.</p>
</td>
</tr>
<tr onmouseout="regnerf_stop()" onmouseover="regnerf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='regnerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/regnerf_after.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/regnerf_before.jpeg' width="160">
</div>
<script type="text/javascript">
function regnerf_start() {
document.getElementById('regnerf_image').style.opacity = "1";
}
function regnerf_stop() {
document.getElementById('regnerf_image').style.opacity = "0";
}
regnerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://m-niemeyer.github.io/regnerf/index.html">
<papertitle>RegNeRF: Regularizing Neural Radiance Fields for View Synthesis from Sparse Inputs</papertitle>
</a>
<br>
<a href="https://m-niemeyer.github.io/">Michael Niemeyer</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>, <br>
<a href="https://msmsajjadi.github.io/">Mehdi S. M. Sajjadi</a>,
<a href="http://www.cvlibs.net/">Andreas Geiger</a>,
<a href="http://www2.informatik.uni-freiburg.de/~radwann/">Noha Radwan</a>
<br>
<em>CVPR</em>, 2022   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="https://m-niemeyer.github.io/regnerf/index.html">project page</a>
/
<a href="https://arxiv.org/abs/2112.00724">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=QyyyvA4-Kwc">video</a>
<p></p>
<p>Regularizing unseen views during optimization enables view synthesis from as few as 3 input images.</p>
</td>
</tr>
<tr onmouseout="blocknerf_stop()" onmouseover="blocknerf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='blocknerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/blocknerf_after.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/blocknerf_before.jpg' width="160">
</div>
<script type="text/javascript">
function blocknerf_start() {
document.getElementById('blocknerf_image').style.opacity = "1";
}
function blocknerf_stop() {
document.getElementById('blocknerf_image').style.opacity = "0";
}
blocknerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://waymo.com/research/block-nerf/">
<papertitle>Block-NeRF: Scalable Large Scene Neural View Synthesis</papertitle>
</a>
<br>
<a href="http://matthewtancik.com/">Matthew Tancik</a>,
<a href="http://casser.io/">Vincent Casser</a>,
<a href="https://sites.google.com/site/skywalkeryxc/">Xinchen Yan</a>,
<a href="https://scholar.google.com/citations?user=5mJUkI4AAAAJ&hl=en">Sabeek Pradhan</a>, <br>
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://sites.google.com/corp/view/kretzschmar/">Henrik Kretzschmar</a>
<br>
<em>CVPR</em>, 2022   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="https://waymo.com/research/block-nerf/">project page</a>
/
<a href="https://arxiv.org/abs/2202.05263">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=6lGMCAzBzOQ">video</a>
<p></p>
<p>We can do city-scale reconstruction by training multiple NeRFs with millions of images.</p>
</td>
</tr>
<tr onmouseout="hnerf_stop()" onmouseover="hnerf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='hnerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/hnerf_after.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/hnerf_before.jpg' width="160">
</div>
<script type="text/javascript">
function hnerf_start() {
document.getElementById('hnerf_image').style.opacity = "1";
}
function hnerf_stop() {
document.getElementById('hnerf_image').style.opacity = "0";
}
hnerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://grail.cs.washington.edu/projects/humannerf/">
<papertitle>HumanNeRF: Free-viewpoint Rendering of Moving People from Monocular Video</papertitle>
</a>
<br>
<a href="https://homes.cs.washington.edu/~chungyi/">Chung-Yi Weng</a>,
<a href="https://homes.cs.washington.edu/~curless/">Brian Curless</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>, <br>
<strong>Jonathan T. Barron</strong>,
<a href="https://www.irakemelmacher.com/">Ira Kemelmacher-Shlizerman </a>
<br>
<em>CVPR</em>, 2022   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="https://grail.cs.washington.edu/projects/humannerf/">project page</a>
/
<a href="https://arxiv.org/abs/2201.04127">arXiv</a>
/
<a href="https://youtu.be/GM-RoZEymmw">video</a>
<p></p>
<p>Combining NeRF with pose estimation lets you use a monocular video to do free-viewpoint rendering of a human.</p>
</td>
</tr>
<tr onmouseout="urf_stop()" onmouseover="urf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='urf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/urf.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/urf.jpg' width="160">
</div>
<script type="text/javascript">
function urf_start() {
document.getElementById('urf_image').style.opacity = "1";
}
function urf_stop() {
document.getElementById('urf_image').style.opacity = "0";
}
urf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://urban-radiance-fields.github.io/">
<papertitle>Urban Radiance Fields</papertitle>
</a>
<br>
<a href="http://www.krematas.com/">Konstantinos Rematas</a>,
<a href="https://andrewhliu.github.io/">Andrew Liu</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul P. Srinivasan</a>,
<strong>Jonathan T. Barron</strong>, <br>
<a href="https://taiya.github.io/">Andrea Tagliasacchi</a>,
<a href="https://www.cs.princeton.edu/~funk/">Tom Funkhouser</a>,
<a href="https://sites.google.com/corp/view/vittoferrari"> Vittorio Ferrari</a>
<br>
<em>CVPR</em>, 2022
<br>
<a href="https://urban-radiance-fields.github.io/">project page</a>
/
<a href="https://arxiv.org/abs/2111.14643">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=qGlq5DZT6uc">video</a>
<p></p>
<p>
Incorporating lidar and explicitly modeling the sky lets you reconstruct urban environments.</p>
</td>
</tr>
<tr onmouseout="ddp_stop()" onmouseover="ddp_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='ddp_image'>
<img src='images/ddp_after.jpg' width="160"></div>
<img src='images/ddp_before.jpg' width="160">
</div>
<script type="text/javascript">
function ddp_start() {
document.getElementById('ddp_image').style.opacity = "1";
}
function ddp_stop() {
document.getElementById('ddp_image').style.opacity = "0";
}
ddp_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://arxiv.org/abs/2112.03288">
<papertitle>Dense Depth Priors for Neural Radiance Fields from Sparse Input Views</papertitle>
</a>
<br>
<a href="https://niessnerlab.org/members/barbara_roessle/profile.html">Barbara Roessle</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<a href="https://www.niessnerlab.org/">Matthias Nießner</a>
<br>
<em>CVPR</em>, 2022
<br>
<a href="https://arxiv.org/abs/2112.03288">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=zzkvvdcvksc">video</a>
<p></p>
<p>
Dense depth completion techniques applied to freely-available sparse stereo data can improve NeRF reconstructions in low-data regimes.
</p>
</td>
</tr>
<tr onmouseout="clipnerf_stop()" onmouseover="clipnerf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='clipnerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/dreamfield_after.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/dreamfield_before.jpg' width="160">
</div>
<script type="text/javascript">
function clipnerf_start() {
document.getElementById('clipnerf_image').style.opacity = "1";
}
function clipnerf_stop() {
document.getElementById('clipnerf_image').style.opacity = "0";
}
clipnerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://ajayj.com/dreamfields">
<papertitle>Zero-Shot Text-Guided Object Generation with Dream Fields</papertitle>
</a>
<br>
<a href="https://www.ajayj.com/">Ajay Jain</a>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://people.eecs.berkeley.edu/~pabbeel/">Pieter Abbeel</a>,
<a href="https://cs.stanford.edu/~poole/">Ben Poole</a>
<br>
<em>CVPR</em>, 2022
<br>
<a href="https://ajayj.com/dreamfields">project page</a>
/
<a href="https://arxiv.org/abs/2112.01455">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=1Fke6w46tv4">video</a>
<p></p>
<p>Supervising the CLIP embeddings of NeRF renderings lets you to generate 3D objects from text prompts.</p>
</td>
</tr>
<tr onmouseout="malle_stop()" onmouseover="malle_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='malle_image'>
<img src='images/MalleConv_after.jpg' width="160"></div>
<img src='images/MalleConv_before.jpg' width="160">
</div>
<script type="text/javascript">
function malle_start() {
document.getElementById('malle_image').style.opacity = "1";
}
function malle_stop() {
document.getElementById('malle_image').style.opacity = "0";
}
malle_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://yifanjiang.net/MalleConv.html">
<papertitle>Fast and High-quality Image Denoising via Malleable Convolutions</papertitle>
</a>
<br>
<a href="https://yifanjiang.net/">Yifan Jiang</a>,
<a href="https://bartwronski.com/">Bartlomiej Wronski</a>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>, <br>
<strong>Jonathan T. Barron</strong>,
<a href="https://spark.adobe.com/page/CAdrFMJ9QeI2y/">Zhangyang Wang</a>,
<a href="https://people.csail.mit.edu/tfxue/">Tianfan Xue</a>
<br>
<em>arXiv</em>, 2021
<br>
<a href="https://yifanjiang.net/MalleConv.html">project page</a>
/
<a href="https://arxiv.org/abs/2201.00392">arXiv</a>
<p></p>
<p>
We denoise images efficiently by predicting spatially-varying kernels at low resolution and using a fast fused op to jointly upsample and apply these kernels at full resolution.
</p>
</td>
</tr>
<tr onmouseout="survey_stop()" onmouseover="survey_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='survey_image'>
<img src='images/survey_after.png' width="160"></div>
<img src='images/survey_before.png' width="160">
</div>
<script type="text/javascript">
function survey_start() {
document.getElementById('survey_image').style.opacity = "1";
}
function survey_stop() {
document.getElementById('survey_image').style.opacity = "0";
}
survey_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://arxiv.org/abs/2111.05849">
<papertitle>Advances in Neural Rendering</papertitle>
</a>
<br>
<a href="https://people.mpi-inf.mpg.de/~atewari/">Ayush Tewari</a>,
<a href="https://justusthies.github.io/">Justus Thies</a>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<a href="https://people.mpi-inf.mpg.de/~tretschk/">Edgar Tretschk</a>,
<a href="https://homes.cs.washington.edu/~yifan1/">Yifan Wang</a>,
<a href="https://christophlassner.de/">Christoph Lassner</a>,
<a href="https://vsitzmann.github.io/">Vincent Sitzmann</a>,
<a href="http://ricardomartinbrualla.com/">Ricardo Martin-Brualla</a>,
<a href="https://stephenlombardi.github.io/">Stephen Lombardi</a>,
<a href="http://www.cs.cmu.edu/~tsimon/">Tomas Simon</a>,
<a href="https://www.mpi-inf.mpg.de/departments/visual-computing-and-artificial-intelligence">Christian Theobalt</a>,
<a href="https://www.niessnerlab.org/">Matthias Niessner</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://stanford.edu/~gordonwz/">Gordon Wetzstein</a>,
<a href="https://zollhoefer.com/">Michael Zollhoefer</a>,
<a href="https://people.mpi-inf.mpg.de/~golyanik/">Vladislav Golyanik</a>
<br>
<em>Arxiv</em>, 2021
<br>
<p></p>
<p>
A survey of recent progress in neural rendering.
</p>
</td>
</tr>
<tr onmouseout="npil_stop()" onmouseover="npil_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='npil_image'>
<img src='images/npil_after.jpg' width="160"></div>
<img src='images/npil_before.jpg' width="160">
</div>
<script type="text/javascript">
function npil_start() {
document.getElementById('npil_image').style.opacity = "1";
}
function npil_stop() {
document.getElementById('npil_image').style.opacity = "0";
}
npil_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://markboss.me/publication/2021-neural-pil/">
<papertitle>Neural-PIL: Neural Pre-Integrated Lighting for Reflectance Decomposition</papertitle>
</a>
<br>
<a href="https://markboss.me">Mark Boss</a>,
<a href="https://varunjampani.github.io">Varun Jampani</a>,
<a href="https://uni-tuebingen.de/en/fakultaeten/mathematisch-naturwissenschaftliche-fakultaet/fachbereiche/informatik/lehrstuehle/computergrafik/lehrstuhl/mitarbeiter/raphael-braun/">Raphael Braun</a>, <br>
<a href="http://people.csail.mit.edu/celiu/">Ce Liu</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://uni-tuebingen.de/en/faculties/faculty-of-science/departments/computer-science/lehrstuehle/computergrafik/computer-graphics/staff/prof-dr-ing-hendrik-lensch/">Hendrik P. A. Lensch</a>
<br>
<em>NeurIPS</em>, 2021
<br>
<a href="https://markboss.me/publication/2021-neural-pil/">project page</a> /
<a href="https://www.youtube.com/watch?v=p5cKaNwVp4M">video</a> /
<a href="https://arxiv.org/abs/2110.14373">arXiv</a>
<p></p>
<p>
Replacing a costly illumination integral with a simple network query enables more accurate novel view-synthesis and relighting compared to NeRD.
</p>
</td>
</tr>
<tr onmouseout="hypernerf_stop()" onmouseover="hypernerf_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='hypernerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/hypernerf_after.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/hypernerf_before.jpg' width="160">
</div>
<script type="text/javascript">
function hypernerf_start() {
document.getElementById('hypernerf_image').style.opacity = "1";
}
function hypernerf_stop() {
document.getElementById('hypernerf_image').style.opacity = "0";
}
hypernerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://hypernerf.github.io/">
<papertitle>HyperNeRF: A Higher-Dimensional Representation
for Topologically Varying Neural Radiance Fields</papertitle>
</a>
<br>
<a href="https://keunhong.com">Keunhong Park</a>,
<a href="https://utkarshsinha.com">Utkarsh Sinha</a>,
<a href="https://phogzone.com/">Peter Hedman</a>,
<strong>Jonathan T. Barron</strong>, <br>
<a href="http://sofienbouaziz.com">Sofien Bouaziz</a>,
<a href="https://www.danbgoldman.com">Dan B Goldman</a>,
<a href="http://www.ricardomartinbrualla.com">Ricardo Martin-Brualla</a>,
<a href="https://homes.cs.washington.edu/~seitz/">Steven M. Seitz</a>
<br>
<em>SIGGRAPH Asia</em>, 2021
<br>
<a href="https://hypernerf.github.io/">project page</a>
/
<a href="https://arxiv.org/abs/2106.13228">arXiv</a>
<p></p>
<p>Applying ideas from level set methods to NeRF lets you represent scenes that deform and change shape.</p>
</td>
</tr>
<tr onmouseout="nerfactor_stop()" onmouseover="nerfactor_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='nerfactor_image'>
<img src='images/nerfactor_after.png' width="160"></div>
<img src='images/nerfactor_before.png' width="160">
</div>
<script type="text/javascript">
function nerfactor_start() {
document.getElementById('nerfactor_image').style.opacity = "1";
}
function nerfactor_stop() {
document.getElementById('nerfactor_image').style.opacity = "0";
}
nerfactor_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://people.csail.mit.edu/xiuming/projects/nerfactor/">
<papertitle>NeRFactor: Neural Factorization of Shape and Reflectance<br>
Under an Unknown Illumination</papertitle>
</a>
<br>
<a href="https://people.csail.mit.edu/xiuming/">Xiuming Zhang</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<a href="https://boyangdeng.com/">Boyang Deng</a>,<br>
<a href="https://www.pauldebevec.com/">Paul Debevec</a>,
<a href="http://billf.mit.edu/">William T. Freeman</a>,
<strong>Jonathan T. Barron</strong>
<br>
<em>SIGGRAPH Asia</em>, 2021
<br>
<a href="https://people.csail.mit.edu/xiuming/projects/nerfactor/">project page</a>
/
<a href="https://arxiv.org/abs/2106.01970">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=UUVSPJlwhPg">video</a>
<p></p>
<p>By placing priors on illumination and materials, we can recover NeRF-like models of the intrinsics of a scene from a single multi-image capture.</p>
</td>
<tr onmouseout="dualfont_stop()" onmouseover="dualfont_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='dualfont_image'><img src='images/dualfont_after.png'></div>
<img src='images/dualfont_before.png'>
</div>
<script type="text/javascript">
function dualfont_start() {
document.getElementById('dualfont_image').style.opacity = "1";
}
function dualfont_stop() {
document.getElementById('dualfont_image').style.opacity = "0";
}
dualfont_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://arxiv.org/abs/2109.06627">
<papertitle>Scalable Font Reconstruction with Dual Latent Manifolds</papertitle>
</a>
<br>
<a href="http://www.cs.cmu.edu/~asrivats/">Nikita Srivatsan</a>,
<a href="http://siwu.io/">Si Wu</a>,
<strong>Jonathan T. Barron</strong>,
<a href="http://cseweb.ucsd.edu/~tberg/">Taylor Berg-Kirkpatrick</a>
<br>
<em>EMNLP</em>, 2021
<br>
<p></p>
<p>VAEs can be used to disentangle a font's style from its content, and to generalize to characters that were never observed during training.</p>
</td>
</tr>
<tr onmouseout="mipnerf_stop()" onmouseover="mipnerf_start()" bgcolor="#ffffd0">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='mipnerf_image'><video width=100% height=100% muted autoplay loop>
<source src="images/mipnerf_ipe_yellow.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/mipnerf_ipe_yellow.png' width="160">
</div>
<script type="text/javascript">
function mipnerf_start() {
document.getElementById('mipnerf_image').style.opacity = "1";
}
function mipnerf_stop() {
document.getElementById('mipnerf_image').style.opacity = "0";
}
mipnerf_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="http://jonbarron.info/mipnerf">
<papertitle>Mip-NeRF: A Multiscale Representation for Anti-Aliasing Neural Radiance Fields</papertitle>
</a>
<br>
<strong>Jonathan T. Barron</strong>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<a href="http://matthewtancik.com/">Matthew Tancik</a>, <br>
<a href="https://phogzone.com/">Peter Hedman</a>,
<a href="http://www.ricardomartinbrualla.com/">Ricardo Martin-Brualla</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>
<br>
<em>ICCV</em>, 2021   <font color="red"><strong>(Oral Presentation, Best Paper Honorable Mention)</strong></font>
<br>
<a href="http://jonbarron.info/mipnerf">project page</a>
/
<a href="https://arxiv.org/abs/2103.13415">arXiv</a>
/
<a href="https://youtu.be/EpH175PY1A0">video</a>
/
<a href="https://github.com/google/mipnerf">code</a>
<p></p>
<p>NeRF is aliased, but we can anti-alias it by casting cones and prefiltering the positional encoding function.</p>
</td>
</tr>
<tr onmouseout="nerfbake_stop()" onmouseover="nerfbake_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='nerfbake_image'><video width=100% height=100% muted autoplay loop>
<source src="images/nerfbake_15.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/nerfbake_160.png' width="160">
</div>
<script type="text/javascript">
function nerfbake_start() {
document.getElementById('nerfbake_image').style.opacity = "1";
}
function nerfbake_stop() {
document.getElementById('nerfbake_image').style.opacity = "0";
}
nerfbake_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="http://nerf.live">
<papertitle>Baking Neural Radiance Fields for Real-Time View Synthesis</papertitle>
</a>
<br>
<a href="https://phogzone.com/">Peter Hedman</a>,
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<a href="https://bmild.github.io/">Ben Mildenhall</a>,
<strong>Jonathan T. Barron</strong>,
<a href="https://www.pauldebevec.com/">Paul Debevec</a>
<br>
<em>ICCV</em>, 2021   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="http://nerf.live">project page</a>
/
<a href="https://arxiv.org/abs/2103.14645">arXiv</a>
/
<a href="https://www.youtube.com/watch?v=5jKry8n5YO8">video</a>
/
<a href="https://nerf.live/#demos">demo</a>
<p></p>
<p>Baking a trained NeRF into a sparse voxel grid of colors and features lets you render it in real-time in your browser.</p>
</td>
<tr onmouseout="nerfie_stop()" onmouseover="nerfie_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='nerfie_image'><video width=100% height=100% muted autoplay loop>
<source src="images/nerfie_after.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/nerfie_before.jpg' width="160">
</div>
<script type="text/javascript">
function nerfie_start() {
document.getElementById('nerfie_image').style.opacity = "1";
}
function nerfie_stop() {
document.getElementById('nerfie_image').style.opacity = "0";
}
nerfie_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://nerfies.github.io/">
<papertitle>Nerfies: Deformable Neural Radiance Fields</papertitle>
</a>
<br>
<a href="https://keunhong.com">Keunhong Park</a>,
<a href="https://utkarshsinha.com">Utkarsh Sinha</a>,
<strong>Jonathan T. Barron</strong>, <br>
<a href="http://sofienbouaziz.com">Sofien Bouaziz</a>,
<a href="https://www.danbgoldman.com">Dan B Goldman</a>,
<a href="https://homes.cs.washington.edu/~seitz/">Steven M. Seitz</a>,
<a href="http://www.ricardomartinbrualla.com">Ricardo-Martin Brualla</a>
<br>
<em>ICCV</em>, 2021   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="https://nerfies.github.io/">project page</a> /
<a href="https://arxiv.org/abs/2011.12948">arXiv</a> /
<a href="https://www.youtube.com/watch?v=MrKrnHhk8IA">video</a>
<p></p>
<p>Building deformation fields into NeRF lets you capture non-rigid subjects, like people.
</p>
</td>
</tr>
<tr onmouseout="c5_stop()" onmouseover="c5_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='c5_image'>
<img src='images/c5_after.jpg' width="160"></div>
<img src='images/c5_before.jpg' width="160">
</div>
<script type="text/javascript">
function c5_start() {
document.getElementById('c5_image').style.opacity = "1";
}
function c5_stop() {
document.getElementById('c5_image').style.opacity = "0";
}
c5_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://arxiv.org/abs/2011.11890">
<papertitle>Cross-Camera Convolutional Color Constancy</papertitle>
</a>
<br>
<a href="https://sites.google.com/corp/view/mafifi">Mahmoud Afifi</a>,
<strong>Jonathan T. Barron</strong>,
<a href="http://www.chloelegendre.com/">Chloe LeGendre</a>,
<a href="https://research.google/people/105312/">Yun-Ta Tsai</a>,
<a href="https://www.linkedin.com/in/fbleibel/">Francois Bleibel</a>
<br>
<em>ICCV</em>, 2021   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<p></p>
<p>
With some extra (unlabeled) test-set images, you can build a hypernetwork that calibrates itself at test time to previously-unseen cameras.
</p>
</td>
</tr>
<tr onmouseout="dualdefocus_stop()" onmouseover="dualdefocus_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='dualdefocus_image'>
<img src='images/dualdefocus_after.jpg' width="160"></div>
<img src='images/dualdefocus_before.jpg' width="160">
</div>
<script type="text/javascript">
function dualdefocus_start() {
document.getElementById('dualdefocus_image').style.opacity = "1";
}
function dualdefocus_stop() {
document.getElementById('dualdefocus_image').style.opacity = "0";
}
dualdefocus_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://imaging.cs.cmu.edu/dual_pixels/">
<papertitle>Defocus Map Estimation and Deblurring from a Single Dual-Pixel Image</papertitle>
</a>
<br>
<a href="https://shumianxin.github.io/">Shumian Xin</a>,
<a href="http://nealwadhwa.com">Neal Wadhwa</a>,
<a href="https://people.csail.mit.edu/tfxue/">Tianfan Xue</a>,
<strong>Jonathan T. Barron</strong>, <br>
<a href="https://pratulsrinivasan.github.io/">Pratul Srinivasan</a>,
<a href="http://people.csail.mit.edu/jiawen/">Jiawen Chen</a>,
<a href="https://www.cs.cmu.edu/~igkioule/">Ioannis Gkioulekas</a>,
<a href="http://rahuldotgarg.appspot.com/">Rahul Garg</a>
<br>
<em>ICCV</em>, 2021   <font color="red"><strong>(Oral Presentation)</strong></font>
<br>
<a href="https://imaging.cs.cmu.edu/dual_pixels/">project page</a> /
<a href="https://github.com/cmu-ci-lab/dual_pixel_defocus_estimation_deblurring">code</a>
<br>
<p></p>
<p>
Multiplane images can be used to simultaneously deblur dual-pixel images, despite variable defocus due to depth variation in the scene.
</p>
</td>
</tr>
<tr onmouseout="nerd_stop()" onmouseover="nerd_start()">
<td style="padding:20px;width:25%;vertical-align:middle">
<div class="one">
<div class="two" id='nerd_image'><video width=100% height=100% muted autoplay loop>
<source src="images/nerd_160.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<img src='images/nerd_160.jpg' width="160">
</div>
<script type="text/javascript">
function nerd_start() {
document.getElementById('nerd_image').style.opacity = "1";
}
function nerd_stop() {
document.getElementById('nerd_image').style.opacity = "0";
}
nerd_stop()
</script>
</td>
<td style="padding:20px;width:75%;vertical-align:middle">
<a href="https://markboss.me/publication/2021-nerd/">
<papertitle>NeRD: Neural Reflectance Decomposition from Image Collections</papertitle>
</a>
<br>
<a href="https://markboss.me">Mark Boss</a>,
<a href="https://uni-tuebingen.de/en/fakultaeten/mathematisch-naturwissenschaftliche-fakultaet/fachbereiche/informatik/lehrstuehle/computergrafik/lehrstuhl/mitarbeiter/raphael-braun/">Raphael Braun</a>,