-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1222 lines (1179 loc) · 69.3 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>
<title>MVR3D 2017: Multiview Relationships in 3D Data</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="ICCV, Multiview Registration, Point Clouds, Scan to 3d, Computer Vision, 3D Reconstruction, Workshop, ICCV Workshop">
<meta name="description" content="ICCV 2017 Workshop on Multiview Relationships in 3D Data targeting multiview geometry and 3D vision of rigid and non-rigid objects.">
<meta name="author" content="Tolga Birdal">
<meta name="viewport" content="width=device-width, initial-scale=0.75">
<meta http-equiv="Cache-control" content="public" max-age="86400">
<!--== CSS Files ==-->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/style.min.css" rel="stylesheet" media="screen">
<link href="css/animate.min.css" rel="stylesheet" media="screen">
<link href="css/font-awesome.css" rel="stylesheet" media="screen">
<link href="css/flexslider.css" rel="stylesheet" media="screen">
<link href="css/fancySelect.css" rel="stylesheet" media="screen">
<link href="css/owl.carousel.css" rel="stylesheet" media="screen">
<link href="css/responsive.css" rel="stylesheet" media="screen">
<!--== Google Fonts ==-->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,400italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-98679125-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="home"></div>
<header id="header" class="header" data-stellar-ratio="0.5">
<!--== Preloader ==-->
<div id="preloader"><div class="preloader"></div></div>
<!--== Caption ==-->
<div class="header-caption" data-stellar-ratio="2">
<div class="container">
<div class="box">
<!--<h2w>Multiview Relationships in 3D Data<br/></h2w><h3w>In Conjunction with ICCV 2017<br/></h3w>-->
<h2w>In Conjunction with ICCV 2017<br/></h2w>
<span class="typed"></span>
</div>
</div>
</div>
<!--== Header Background ==-->
<div id="header-background" class="header-background">
<ul class="slides">
<li><img src="images/demo/white_logo_color_background_small.jpg" alt="ICCV Workshop 2017 - MVR3D2017"></li>
<!--<li><img src="images/demo/bg-slide-02.jpg" alt="Slide 2"></li>-->
</ul>
</div>
</header>
<div id="navigation-wrap" class="navigation-wrap">
<div id="navigation" class="navigation">
<div class="container">
<nav class="navbar navbar-custom" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#menu">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!--== Site Menu ==-->
<div class="collapse navbar-collapse" id="menu">
<ul class="nav navbar-nav">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#callforpapers">The Call</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#dates">Dates</a></li>
<li><a href="#awards">Awards</a></li>
<li><a href="#submission">Submission</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#partners">Sponsors</a></li>
<li><a href="#pc">PC</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#news">News</a></li>
<li><a href="#location">Location</a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
<div class="container content">
<!--===============================-->
<!--== About ======================-->
<!--===============================-->
<section id="about">
<div class="row">
<div class="col-sm-12 col-md-2">
<div class="section-header text-left">
<img src="images/demo/dark_logo_transparent_background_small.png" alt="ICCV Workshop MVR3D 2017">
</div>
</div>
<div class="col-sm-12 col-md-6">
<!--<h4>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</h4>-->
<p>The recent improvements in the 3D sensing technologies have caused a remarkable amplification in the utilization of 3D data. 3D information has found tremendous use in Autonomous Driving, 3D Mapping, Quality Control, Drones and UAVs or Robot Guidance to name but a few applicative domains. These applications typically fuse different modalities such as range images, stereo triangulations, structure-from-motion reconstructions or laser scans. A common flexible representation governing all these are point clouds. Thus, in many of the applications that rely on multiple 3D acquisitions, good registration of point clouds is a prerequisite. Yet, when unstructured dense scans of large scenes are of concern, establishing the alignment in a fully automatic manner is far from being trivial -- a difficulty that is exacerbated when the scans in question are allowed to undergo locally non-rigid deformations due to miscalibration of the capturing device or object movement.
<p>In such a complex scenario, researchers are now taking on the challenge of accurately auto-stitching tens of millions of unstructured/structured points that include symmetries, self-similarities and that do not admit scan-order constraints. This workshop will be dedicated to exploring the theoretical and practical aspects of obtaining multi-view global alignment and registration of scans captured by any 3D data modality. Our main objective is to gather together industry experts, academic researchers, and practitioners of 3D data acquisition and scene reconstruction into a lively environment for discussing methodologies and challenges raised by the emergence of large-scale 3D reconstruction applications; as a targeted topic venue, this workshop will offer participants a unique opportunity to network with a diverse but focused research community.</p>
</div>
<div class="col-xs-6 col-md-2">
<div class="number wow bounceIn" data-wow-duration="0.8s" data-wow-delay="0.5s">
<b class="accent">8</b>
Speakers
</div>
</div>
<div class="col-xs-6 col-md-2">
<div class="number wow bounceIn" data-wow-duration="0.8s" data-wow-delay="0.8s">
<b class="accent">1</b>
Day
</div>
</div>
</div>
</section>
<section id="callforpapers">
<div class="row">
<div class="col-sm-12 col-md-2">
<div class="section-header text-left">
<h2><b>Call for Papers</b></h2>
</div>
</div>
<div class="col-sm-12 col-md-6">
<!--<h4>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</h4>-->
The goal of this workshop is to push the frontier in the area of global multi-scan alignment. Focal points for discussions and solicited submissions include but are not limited to:
<ul style="list-style-type:none; text-align:left;">
<li> Global point cloud alignment</li>
<li> Multiview registration using scene priors</li>
<li> Learning methods for multiview correspondence estimation</li>
<li> 3D Object reconstruction from multiple views</li>
<li> Joint registration and segmentation of multiple scans</li>
<li> Joint matching of multiple non-rigid surfaces</li>
<li> Multiview object detection</li>
<li> Multi-object Instance reconstruction</li>
<li> Feature descriptors for multiview 3D matching</li>
<li> Multiview pose estimation</li>
<li> Joint processing of multiple point clouds</li>
<li> Pose averaging and error diffusion on graphs</li>
<li> Multiview stitching of 3D scans on mobile and embedded devices</li>
<li> Practical applications of multiple scan registration on large scale settings</li>
<li> Datasets and dataset methods for ground truth acquisition</li>
</ul>
<p>An official call-for-papers is found here:</p>
<p></p>
<!--<div class="col-sm-12 col-md-12"> -->
<a class="button" href="https://mvr3d.github.io/downloads/mvr3d-call-for-papers.pdf" target="_blank">Download Call For Papers (CfP) PDF <i class="fa fa-download"></i></a>
<!--</div>-->
</div>
</div>
</section>
<!--==========-->
<!-- <section id="callforpapers">
<div class="row">
<div class="col-sm-12 col-md-2">
<div class="section-header text-left">
<h2><b>Awards</b></h2>
</div>
</div>
<div class="col-sm-12 col-md-6">
<h4>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</h4>
<ul style="list-style-type:none">
<div class="divTable">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell"><h4table>Paper Submission: </h4table></div>
<div class="divTableCell"><h4table><lti><b>July 24, 2017</b></lti> </h4table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h4table>Notification of acceptance </h4table></div>
<div class="divTableCell"><h4table><lti><b>August 18, 2017</b></lti> </h4table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h4table>Workshop Date</h4table></div>
<div class="divTableCell"><h4table><lti><b>October 28, 2017</b></lti> </h4table></div>
</div>
</div>
</div>
</ul>
<div class="row">
<div class="col-sm-12">
<p>* With these days, we hope to allow a sufficient time slot for re-submission of the unlucky ICCV papers.</p>
</div>
</div>
</div>
</div>
</section>-->
<!--===============================-->
<!--== Speakers ===================-->
<!--===============================-->
<section id="speakers" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-sm-12">
<div class="section-header text-center">
<h2>Our <b>speakers</b></h2>
<p>Our invited speakers come from top research institutions and companies around the globe, and are leading figures in the topics covered by the workshop. This diverse selection will prove valuable for academic as well as industry researchers and practitioners. Both practical and theoretical aspects of multiview 3D computer vision will be covered by the invited lecturers.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/alex-bronstein.jpg" alt="Alex Bronstein">
<div class="speaker-info">
<h3>Alex<br> <b>Bronstein</b></h3>
<p>Associate Professor<br>Technion</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="http://www.cs.technion.ac.il/~bron/" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/albronstein/" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/andrew-fitzgibbon.jpg" alt="Andrew Fitzgibbon">
<div class="speaker-info">
<h3>Andrew<br> <b>Fitzgibbon</b></h3>
<p>Partner Scientist<br>Microsoft Research</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="https://www.microsoft.com/en-us/research/people/awf/" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.facebook.com/andrew.fitzgibbon" class="fa fa-facebook"></a></li>
<li><a target="_blank" href="https://twitter.com/awfidius" class="fa fa-twitter"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/andrew-fitzgibbon-952b9370/" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/radu-horaud.jpg" alt="Radu Horaud">
<div class="speaker-info">
<h3>Radu<br> <b>Horaud</b></h3>
<p>Senior Research Scientist<br>INRIA</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="https://team.inria.fr/perception/team-members/radu-patrice-horaud" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.facebook.com/radu.horaud" class="fa fa-facebook"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/radu-patrice-horaud-9908b828/" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/vladlen-koltun.jpg" alt="Vladlen Koltun">
<div class="speaker-info">
<h3>Vladlen<br> <b>Koltun</b></h3>
<p>Principal Scientist<br>Intel</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="http://www.vladlen.info" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.facebook.com/vladlen" class="fa fa-facebook"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/andreas-nuchter.jpg" alt="Andreas Nüchter">
<div class="speaker-info">
<h3>Andreas<br> <b>Nüchter</b></h3>
<p>Professor<br>JMU Würtzburg</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="http://www7.informatik.uni-wuerzburg.de/mitarbeiter/nuechter/" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/andreas-nuechter-866905/" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/luc-robert.jpg" alt="Luc Robert">
<div class="speaker-info">
<h3>Luc<br><b> Robert</b></h3>
<p>Software Architect, Fellow<br> Bentley Systems</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="https://www.researchgate.net/profile/Luc_Robert4" class="fa fa-home"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/konrad-schiendler.jpg" alt="Konrad Schindler">
<div class="speaker-info">
<h3>Konrad<br> <b>Schindler</b></h3>
<p>Professor<br>ETH Zurich</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="http://www.prs.igp.ethz.ch/content/specialinterest/baug/institute-igp/photogrammetry-and-remote-sensing/en/group/people/person-detail.html?persid=143986" class="fa fa-home"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/speakers/zach.jpg" alt="Christopher Zach">
<div class="speaker-info">
<h3>Christopher<br> <b>Zach</b></h3>
<p>Research Scientist<br>Toshiba Europe</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="https://sites.google.com/site/christophermzach/home/" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.facebook.com/christopher.zach.35" class="fa fa-facebook"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/christopher-zach-827004103/" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<!--<div class="col-sm-12 col-md-12">
<button class="button button-icon pull-right">Show more <span class="fa fa-chevron-down"></span></button>
</div>-->
</div>
</section>
<!--==========-->
<section id="dates">
<div class="row">
<div class="col-sm-12 col-md-2">
<div class="section-header text-left">
<h2><b>Dates</b></h2>
</div>
</div>
<div class="col-sm-12 col-md-6">
<!--<h4>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</h4>-->
<ul style="list-style-type:none">
<div class="divTable">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell"><h4table>Paper submission: </h4table></div>
<div class="divTableCell"><h4table><lti><b><strike>July 27, 2017</strike></b></lti> </h4table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h4table>Notification of acceptance: </h4table></div>
<div class="divTableCell"><h4table><lti><b><strike>August 18, 2017</strike></b></lti> </h4table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h4table>Camera ready: </h4table></div>
<div class="divTableCell"><h4table><lti><b><strike>August 23, 2017</strike></b></lti> </h4table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h4table>Workshop date: </h4table></div>
<div class="divTableCell"><h4table><lti><b>October 29, 2017</b></lti> </h4table></div>
</div>
</div>
</div>
</ul>
<div class="row">
<div class="col-sm-12">
<p>* With these days, we hope to allow a sufficient time slot for re-submission of the unlucky ICCV papers.</p>
</div>
</div>
</div>
</div>
</section>
<section id="awards">
<div class="row">
<div class="col-sm-12 col-md-2">
<div class="section-header text-left">
<h2><b>Awards</b></h2>
</div>
</div>
<div class="col-sm-12 col-md-6">
<h4>Thanks to our generous supporters, we are able to grant several awards:</h4>
<ul style="text-align:left;">
<li>First author of the <b>Best Paper</b> will receive a software license for 3DF Zephyr Pro.</li>
<li>First author of the <b>Best Student Paper</b> will receive an Intel RealSense camera.</li>
<li>Authors of <b>All Accepted Papers</b> will receive licenses for 3DF Zephyr Lite software.</li>
</ul>
</div>
</div>
</section>
<section id="submission">
<div class="row">
<div class="col-sm-12 col-md-2">
<div class="section-header text-left">
<h2><b>Papers</b></h2>
</div>
</div>
<div class="col-sm-12 col-md-6">
<h4>Paper submission is through <a href="https://cmt3.research.microsoft.com/MVR3D2017/" target="_blank">Conference Management Toolkit</a>. We are looking forward to submissions, following the enlisted guidelines:</h4>
<ul style="text-align:left;">
<li> Submitted papers should not have been published, accepted or under review elsewhere. Non-peer reviewed media, such as Arxiv do not violate the terms.</li>
<li> The submissions can be up to 8 pages (excluding references).</li>
<li> All the papers must be submitted using the provided templates.</li>
<li> All the submissions will be subject to double-blind review process.
Therefore author names, affiliations, email addresses, personal
acknowledgements, etc. should be removed from the paper.</li>
<li> Every accepted paper requires that at least one
author has a workshop-inclusive <a target="_blank" href="http://iccv2017.thecvf.com/attend/registration".>ICCV registration</a></li>
<li> Here are further <a target="_blank" href="http://iccv2017.thecvf.com/files/egpaper_for_review.pdf" target="_blank">detailed guidelines</a>.</li>
</ul>
<br>
<h4>All published papers will be included in ICCV 2017 proceedings. We accept manuscripts in Latex or Word, in the same format as ICCV 2017:</h4>
<a class="button" href="http://iccv2017.thecvf.com/files/iccv2017AuthorKit.zip" target="_blank">Download Latex and Word Templates <i class="fa fa-download"></i></a>
<!--<a class="btn" href="#" target="_blank">Download Word Template<i class="fa fa-download"></i></a>-->
</div>
</div>
</section>
<!--===============================-->
<!--== Schedule ===================-->
<!--===============================-->
<section id="schedule" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-sm-12">
<div class="section-header text-left">
<h2>The <b>schedule</b></h2>
<p>We have a packed and exciting day ahead of us!</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="content-tabs">
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1">
<ul class="accordion">
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
09<sup>00</sup>
</span>
<h4 class="accordion-title">Opening Remarks</h4>
</a>
<div class="accordion-body">
<p>
Good morning everybody! We gladly welcome you to our first workshop, MVR3D 2017.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
09<sup>15</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/zach.jpg" alt="Christopher Zach">
</div>
<h4 class="accordion-title">Invited talk by <b>Christopher Zach</b>: The importance of good matches for 3D reconstruction</h4>
</a>
<div class="accordion-body">
<p>
Christopher Zach (PhD 2007 TU Graz) is currently a principal research scientist in the computer vision group at Toshiba Research Europe. Previous to that he had post-doctoral and senior researcher positions at UNC-Chapel Hill (2008–2009), ETH Zürich (2009–2011) and Microsoft Research Cambridge (2012–2014). His main research interests are structure from motion, dense 3D reconstruction from images, convex methods in computer vision and real-time computer vision.
</p>
<h4>Abstract</h4>
<p>
In the first part of my presentation I review several methods to detect false
positive matches between images before they lead to distorted 3D models, which
are difficult to rectify afterwards. These false positive matches are due to
"perceptual aliasing" and occur frequently in man-made environments. Several
complementary cues allow to identify these false positives. I also describe
situations where perceptual aliasing actually can help to improve the
reconstructed model.
In the second part I will describe recent efforts to bypass several stages of
a typical 3D reconstruction pipeline, and how to push the envelope of
initialization-free bundle adjustment. Empirical evidence (and early-stage
theoretical understanding) strongly suggests that the secret of obtaining
faithful 3D models lies mainly in using mostly outlier-free
correspondences. Thus, the often theoretically non-satisfactory steps to
obtain a sufficiently good initial 3D model (and camera poses) from pairwise
image matches might not be necessary in many cases, and one can directly apply
a suitable version of bundle adjustment from random initial values.
</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/zach.jpg" alt="Christopher Zach">
<h4>Christopher Zach</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
09<sup>55</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/vladlen-koltun.jpg" alt="Vladlen Koltun">
</div>
<h4 class="accordion-title">Invited talk by <b>Vladlen Koltun</b>: TBD</h4>
</a>
<div class="accordion-body">
<p>
Vladlen Koltun is the Director of the Intel Visual Computing Lab. He received a PhD in 2002 for new results in theoretical computational geometry, spent three years at UC Berkeley as a postdoc in the theory group, and joined the Stanford Computer Science faculty in 2005 as a theoretician. He switched to research in visual computing in 2007 and joined Intel as a Principal Researcher in 2015 to establish the Visual Computing Lab.
</p>
<h4>Abstract</h4>
<p>
TBD.
</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/vladlen-koltun.jpg" alt="Vladlen Koltun">
<h4>Vladlen Koltun</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
10<sup>35</sup>
</span>
<h4 class="accordion-title">Morning Coffee Break</h4>
</a>
<div class="accordion-body">
<p>
We are proudly serving Italian coffee!
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
10<sup>50</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/konrad-schiendler.jpg" alt="Konrad Schindler">
</div>
<h4 class="accordion-title">Invited talk by <b>Konrad Schindler</b>: Image-based reconstruction of semantically interpreted 3D city models</h4>
</a>
<div class="accordion-body">
<p>
Konrad Schindler received the Diplomingenieur (M.tech) degree in photogrammetry from Vienna University of Technology, Austria in 1999, and a PhD in computer science from Graz University of Technology, Austria, in 2003. He has worked as a photogrammetric engineer in the private industry, and has held researcher positions at Graz University of Technology, Monash University, and ETH Zurich. He became assistant professor of Image Understanding at TU Darmstadt in 2009, and since 2010 has been a tenured professor of Photogrammetry and Remote Sensing at ETH Zurich. His research interests lie in the field of computer vision, photogrammetry, and remote sensing, with a focus on image understanding and 3d reconstruction. Konrad has been president of ISPRS Technical Commission III “Photogrammetric Computer Vision and Image Analysis” for the period 2012-2016. He has received several awards, including the U. V. Helava Award 2012 for the best paper published in the ISPRS Journal 2008-2011 (with A. Ess, B. Leibe and L. Van Gool), and a honorable mentions for the Marr Prize at ICCV 2013 (with C. Vogel and S. Roth).
</p>
<h4>Abstract</h4>
<p>TBD.</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/konrad-schiendler.jpg" alt="Konrad Schindler">
<h4>Konrad Schindler</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
11<sup>30</sup>
</span>
<h4 class="accordion-title"><b>Oral Session</b></h4>
</a>
<div class="accordion-body">
<p>
We look forward to novel and exciting oral presentations of a subset of the accepted papers. A slot of 15 minutes is allocated per presentation and we advise to spare 3 minutes for questions.
</p>
<!--<div class="news">
<p>Edge SLAM: Edge Points Based Monocular Visual SLAM</p>
<p>Probabilistic Surfel Fusion for Dense LiDAR Mapping</p>
<p>Computer Vision Meets Geometric Modeling: Multi-view Reconstruction of Surface Points and Normals using Affine Correspondences</p>
</div>-->
<div style="list-style-type:none">
<div class="divTable">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Edge SLAM: Edge Points Based Monocular Visual SLAM</b><br><lti>Soumyadip Maity, Arindam Saha, Brojeshwar Bhowmick</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Probabilistic Surfel Fusion for Dense LiDAR Mapping</b><br><lti>Chanoh Park, Soohwan Kim, Peyman Moghadam, Clinton Fookes, Sridha Sridharan</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Computer Vision Meets Geometric Modeling: Multi-view Reconstruction of Surface Points and Normals using Affine Correspondences</b><br><lti>Iván Eichhardt, Levente Hajder</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Camera Pose Filtering with Local Regression Geodesics on the Riemannian Manifold of Dual Quaternions</b><br><lti>Benjamin Busam, Tolga Birdal, Nassir Navab</lti></h5table></div>
</div>
</div>
</div>
</div>
</div></li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
12<sup>30</sup>
</span>
<h4 class="accordion-title">Lunch Break</h4>
</a>
<div class="accordion-body">
<p>
The smell of that delicious Italian cusine is irresistable.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
13<sup>20</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/andrew-fitzgibbon.jpg" alt="Andrew Fitzgibbon">
</div>
<h4 class="accordion-title">Invited talk by <b>Andrew Fitzgibbon</b>: Optimization for reconstruction problems</h4>
</a>
<div class="accordion-body">
<p>
Andrew Fitzgibbon is a scientist with HoloLens at Microsoft, Cambridge, UK. He is best known for his work on 3D vision, having been a core contributor to the Emmy-award-winning 3D camera tracker “boujou” (www.boujou.com) and Kinect for Xbox 360, but his interests are broad, spanning computer vision, graphics, machine learning, and even a little neuroscience. He has published numerous highly-cited papers, and received many awards for his work, including ten “best paper” prizes at various venues, the Silver medal of the Royal Academy of Engineering, and the BCS Roger Needham award. He is a fellow of the Royal Academy of Engineering, the British Computer Society, and the International Association for Pattern Recognition. Before joining Microsoft in 2005, he was a Royal Society University Research Fellow at Oxford University, having previously studied at Edinburgh University, Heriot-Watt University, and University College, Cork.
</p>
<h4>Abstract</h4>
<p>
Sparse Gauss-Newton optimization, or “Bundle Adjustment”, is a crucial tool of 3D reconstruction. It is considered common knowledge that bundle adjustment has a small basin of convergence and needs a good initialization. For example, there are well known benchmark sequences where initialization from a random starting point using any of the mainstream bundle adjustment packages leads to essentially 0% chance of convergence to the known best optima. However, this situation is changing. In 2011, Okatani and others re-introduced the VarPro method to matrix factorization (after some “dark ages”, for which I take some blame for promulgating in 2005). This conferred remarkable improvements on the basin of convergence of that problem, which is, of course, the same problem as affine bundle adjustment. More recently, my student John Hong, working with Zach, Cipolla, and me, has shown how to bring the advantages of VarPro to projective bundle adjustment. I shall describe the main components of this work, and then speculate on future directions.
</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/andrew-fitzgibbon.jpg" alt="Andrew Fitzgibbon">
<h4>Andrew Fitzgibbon</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
14<sup>00</sup>
</span>
<h4 class="accordion-title"><b>Poster Session</b></h4>
</a>
<div class="accordion-body">
<p>
Those heated discussions and further networking...
</p>
<div style="list-style-type:none">
<div class="divTable">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell"><h5table><b>A Use-Case Study on Multi-View Hypothesis Fusion for 3D Object Classification</b><br><lti>Panagiotis Papadakis</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Accurate Depth Map Estimation from Small Motions</b><br><lti>Hossein Javidnia, Peter Corcoran</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>On Tablet 3D Structured Light Reconstruction and Registration</b><br><lti>Matea Donlic, Tomislav Petkovic, Tomislav Pribanic</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Multiview Absolute Pose Using 3D -- 2D Perspective Line Correspondences and Vertical Direction</b><br><lti>Nora Horanyi, Zoltan Kato</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Reference-based Light Field Super-resolution Using a Hybrid Imaging System</b><br><lti>Haitian Zheng, Minghao Guo, Haoqian Wang, Yebin Liu, Lu Fang</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>A Content-aware Metric for Stitched Panoramic Image Quality Assessment</b><br><lti>Luyu Yang, Zhigang Tan, Zhe Huang, Gene Cheung</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>KPPF: Keypoint-based Point-Pair-Feature for scalable automatic global registration of large RGB-D scans</b><br><lti>Lucas Malleus, Thomas Fisichella, Diane Lingrand, Frédéric Precioso, Nicolas Gros, Yann Noutary, Luc Robert, Lirone Samoun</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Edge SLAM: Edge Points Based Monocular Visual SLAM</b><br><lti>Arindam Saha, Soumyadip Maity, Brojeshwar Bhowmick</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Probabilistic Surfel Fusion for Dense LiDAR Mapping</b><br><lti>Chanoh Park, Soohwan Kim, Peyman Moghadam, Clinton Fookes, Sridha Sridharan</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Computer Vision Meets Geometric Modeling: Multi-view Reconstruction of Surface Points and Normals using Affine Correspondences</b><br><lti>Iván Eichhardt, Levente Hajder</lti></h5table></div>
</div>
<div class="divTableRow">
<div class="divTableCell"><h5table><b>Camera Pose Filtering with Local Regression Geodesics on the Riemannian Manifold of Dual Quaternions</b><br><lti>Benjamin Busam, Tolga Birdal, Nassir Navab</lti></h5table></div>
</div>
</div>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
15<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/alex-bronstein.jpg" alt="Alex Bronstein">
</div>
<h4 class="accordion-title">Invited talk by <b>Alex Bronstein</b>: Geometry and learning in 3D correspondence problems</h4>
</a>
<div class="accordion-body">
<p>
Dr. Alex Bronstein was born in 1980. He received the B.Sc. and M.Sc. (both summa cum laude) from the Department of Electrical Engineering in 2002 and 2005, and Ph.D. from the Department of Computer Science, Technion in 2007. Until 2016, Dr. Alex Bronstein was an Associate Professor in the School of Electrical Engineering at Tel Aviv University. In 2016, he has joined the Department of Computer Science at the Technion also as an Associate Professor. His main research interests are theoretical and computational methods in metric geometry and their application to problems in computer vision, pattern recognition, shape analysis, computer graphics, imaging and image processing, and machine learning. He has authored over 120 publications in leading journals and conferences, over two dozens of patents and patent applications, and the book Numerical geometry of non-rigid shapes (published by Springer). His h-index is 38. Alex Bronstein is the alumnus of the Technion Excellence Program and the Academy of Achievement, and a member of the IEEE. His research was recognized by numerous awards, including the Kasher prize (2002), Thomas Schwartz award (2002), Hershel Rich Technion Innovation award (2003), Gensler counter-terrorism prize (2003), the Copper Mountain Conference on Multigrid Methods Best Paper award (2005) and the Adams Fellowship (2006), the Krill Prize by Wolf Foundation (2012), and the European Research Council (ERC) Startup Grant (2013). Highlights of his research were featured in CNN, SIAM News, and in Prof. Guillermo Sapiro's Science Lecture "One small step for Gromov, one giant leap for shape analysis" that he gave in Oslo on the occasion of awarding Prof. Mikhail Gromov the 2009 Abel Prize, considered the "Nobel of Math". Besides scientific awards, Alex received the Technion Humanities and Arts Department prize (2001) for the translation of Shakespearean sonnets into Italian. He co-chaired the IEEE International Workshop on Non-rigid shapes and deformable image alignment (NORDIA) in 2008-2011, the International Conference on n Scale Space and Variational Methods in Computer Vision (SSVM) in 2011, served as the program chair of the Eurographics Workshop on 3D Object Retrieval (3DOR) in 2012, area chair of the IEEE Asian Conference on Computer Vision (ACCV) in 2010, and participated in program committees of major conferences in his field. Dr. Bronstein held visiting appointments in Politecnico di Milano (2008), Stanford university (2009), Verona University (2010,2014), and Duke University (from 2014). In addition to his academic activities, he was a co-founder of a Silicon Valley startup Novafora, Inc., where he served from 2004 till 2009 as a scientist and a Vice President of video technology, leading a group of researchers and engineers in developing novel Internet-scale video analysis technologies. Dr. Bronstein was one of the inventors and developers of the 3D sensing technology in the foundation of the Israeli startup Invision, subsequently acquired by Intel Corporation in 2012 and distributed under the RealSense brand.
<!-- In 2010, Michael Bronstein has joined the Institute of Computational Science in the Faculty of Informatics at the University of Lugano (USI), Switzerland, where he is currently an associate professor leading a research group on geometric and visual computing. Since 2012, he also serves as research scientist and principal engineer at the Perceptual Computing lab at Intel. Since 2016, he is appointed as associate professor of Applied Mathematics at Tel Aviv University in Israel. He also held visiting appointments at Politecnico di Milano (2008), Stanford university (2009), INRIA (2009), Technion (2013, 2014), University of Verona (2010, 2014), and Tel Aviv University (2015). His main research interests are theoretical and computational methods in spectral and metric geometry and their application to problems in computer vision, pattern recognition, shape analysis, computer graphics, image processing, and machine learning. Most recently, he is interested in deep learning on non-Euclidean structured data such as graphs and manifolds. Michael Bronstein has authored over 100 publications in leading journals and conferences, over 20 patents, the research monograph Numerical geometry of non-rigid shapes (Springer, 2008) and edited four books. He is a Senior Member of IEEE, member of SIAM and EUROGRAPHICS, and ACM Distinguished Speaker. His research was recognized by numerous awards, including the Kasher prize (2002), Thomas Schwartz award (2002), Hershel Rich Technion Innovation award and the Gensler prize for research on face recognition (2003), the Copper Mountain Conference on Multigrid Methods Best Paper award (2005), the Adams Fellowship (2005), EUROGRAPHICS Service Award (2012), and SGP Best Paper Award (2016) -->
</p>
<h4>Abstract</h4>
<p>The need to compute correspondence between three-dimensional objects is a fundamental ingredient in numerous computer vision and graphics tasks. In this talk, I will show how several geometric notions related to the Laplacian spectrum provide a set of tools for efficiently calculating correspondence between deformable shapes. I will also show how this framework combined with recent ideas in deep learning promises to bring correspondence problems to new levels of accuracy. </p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/alex-bronstein.jpg" alt="Alex Bronstein">
<h4>Alex Bronstein</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
15<sup>40</sup>
</span>
<h4 class="accordion-title">Afternoon Coffee Break</h4>
</a>
<div class="accordion-body">
<p>
We are proudly serving Italian coffee!
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
15<sup>55</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/radu-horaud.jpg" alt="Radu Horaud">
</div>
<h4 class="accordion-title">Invited talk by <b>Radu Horaud</b>: Towards high-resolution reconstruction of people using a very large number of RGB and depth cameras</h4>
</a>
<div class="accordion-body">
<p>
Radu Patrice Horaud holds a position of director of research at INRIA Grenoble Rhône-Alpes, France. He is the founder and director of the PERCEPTION team. Radu’s research interests cover computational vision, audio signal processing, audio-visual scene analysis, machine learning, and robotics. He is the author of over 200 scientific publications. Radu pioneered work in computer vision using range data (or depth images) and developed a number of principles and methods at the cross-roads of computer vision and robotics. In 2006, he started to develop audio-visual fusion and recognition techniques in conjunction with human-robot interaction. He is an area editor for the CVIU (Elsevier), a member of the advisory board for the International JRR (Sage), and an associated editor for the IJCV (Kluwer-Springer). In 2001 he was program co-chair of the IEEE Eighth ICCV and in 2015 he was program co-chair of the 17th ACM International Conference on Multimodal Interaction (ICMI’15). Radu Horaud was the scientific coordinator of the European Marie Curie network VISIONTRAIN (2005-2009), STREP projects POP (2006-2008) and HUMAVIPS (2010-2013), and the principal investigator of a collaborative project between INRIA and Samsung’s Advanced Institute of Technology (SAIT) on computer vision algorithms for 3D television (2010-2013). In 2013 he was awarded an ERC Advanced Grant for his five year project VHIA (2014-2019). In 2015 he received a three year grant (jointly with Florence Forbes) from Xerox University Affairs Committee.
</p>
<h4>Abstract</h4>
<p>TBD.</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/radu-horaud.jpg" alt="Radu Horaud">
<h4>Radu Horaud</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
16<sup>35</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/andreas-nuchter.jpg" alt="Andreas Nüchter">
</div>
<h4 class="accordion-title">Invited talk by <b>Andreas Nüchter</b>: Continuous-time SLAM for high-precise kinematic mapping of 3D point clouds</h4>
</a>
<div class="accordion-body">
<p>
Andreas Nüchter is professor of computer science (telematics) at University of Würzburg. Before summer 2013 he headed as assistant professor the Automation group at Jacobs University Bremen. Prior he was a research associate at University of Osnabrück. Further past affiliations were with the Fraunhofer Institute for Autonomous Intelligent Systems (AIS, Sankt Augustin), the University of Bonn, from which he received the diploma degree in computer science in 2002 (best paper award by the German society of informatics (GI) for his thesis) and the Washington State University. He holds a doctorate degree (Dr. rer. nat) from University of Bonn. His thesis was shortlisted for the EURON PhD award. Andreas works on robotics and automation, cognitive systems and artificial intelligence. His main research interests include reliable robot control, 3D environment mapping, 3D vision, and laser scanning technologies, resulting in fast 3D scan matching algorithms that enable robots to perceive and map their environment in 3D representing the pose with 6 degrees of freedom. The capabilities of these robotic SLAM approaches were demonstrated at RoboCup Rescue competitions, ELROB and several other events. He is a member of the GI and the IEEE.
</p>
<h4>Abstract</h4>
<p>Mobile laser scanning puts high requirements on the accuracy of the
positioning systems and the calibration of the measurement system. The
talk describes a general framework for calibrating mobile sensor
platforms that estimates all configuration parameters for any
arrangement of positioning sensors. In addition, we present a novel
Continuous-time Simultaneous Localization and Mapping (SLAM) algorithm
that corrects the system position at every point in time along its
trajectory, while simultaneously improving the quality and precision of
the entire acquired point cloud. Using this algorithm. The talk
demonstrate the capabilities of the algorithms on a wide variety of
datasets, ranging from underground mining to improving Google's
Cartographer result.
</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/andreas-nuchter.jpg" alt="Andreas Nüchter">
<h4>Andreas Nüchter</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
17<sup>05</sup>
</span>
<div class="schedule-speaker">
<img src="images/demo/speakers/luc-robert.jpg" alt="Luc Robert">
</div>
<h4 class="accordion-title">Invited talk by <b>Luc Robert</b>: Context Capture : Solving industry problems using multi-view relationships</h4>
</a>
<div class="accordion-body">
<p>
Luc Robert graduated from Ecole Polytechnique in 1988, and obtained his PhD in 3D computer vision, in 1993, from the National Research Institute for Computer Sciences and Automatics (Inria, France). After a 1-year post-doc at Carnegie Mellon University (Pittsburgh, USA) working on 3D vision for autonomous vehicles, he joined Inria as a research scientist in 1995. In 1998 he co-founded REALVIZ, a startup bringing technology from the lab to the industry of digital content creation. During the following ten years he led the development of the REALVIZ technology and products, that became industry leaders on the markets of 3D digital effects and panoramic photography. After the acquisition of REALVIZ by Autodesk in 2008, Luc drove reality capture technology development for the 123D Catch and ReCap products. In 2016, he joined the Bentley Systems team in charge of products and technology related to reality capture.<br>
</p>
<h4>Abstract</h4>
<p>TBD.</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/demo/speakers/luc-robert.jpg" alt="Luc Robert">
<h4>Luc Robert</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
17<sup>45</sup>
</span>
<h4 class="accordion-title">Closing Remarks</h4>
</a>
<div class="accordion-body">
<p>
Untill next time!
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========-->
<!--===============================-->
<!--== Partners ===================-->
<!--===============================-->
<section id="partners" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-sm-12">
<div class="section-header text-center">
<h2>Our <b>partners</b></h2>
<p>MVR3D 2017 is enabled by our generous sponsors.</p>
</div>
</div>
</div>
<div class="row">
<div class="partners">
<div class="col-sm-6 col-md-3 partner">
<!--<img src="images/demo/partners/siemens2.png" alt="Siemens">-->
<a target="_blank" href="https://www.siemens.com"><img src="images/demo/partners/siemens2.png" alt="Siemens"></a>
</div>
<div class="col-sm-6 col-md-3 partner">
<!--<img src="images/demo/partners/intel2.png" alt="Intel">-->
<a target="_blank" href="https://www.intel.com"><img src="images/demo/partners/intel2.png" alt="Intel" ></a>
</div>
<div class="col-sm-6 col-md-3 partner">
<!--<img src="images/demo/partners/intel2.png" alt="Intel">-->
<a target="_blank" href="https://www.3dflow.net"><img src="images/demo/partners/3dflow.png" alt="3D Flow" ></a>
</div>
<div class="col-sm-6 col-md-3 partner">
<!--<img src="images/demo/partners/intel2.png" alt="Intel">-->
<a target="_blank" href="http://www.unive.it/pag/16129 "><img src="images/demo/partners/dais.jpg" alt="DAIS - Dipartimento di Scienze Ambientali Informatica Statistica" ></a>
</div>
<br><br>
<div class="col-sm-6 col-md-3 partner">
<!--<img src="images/demo/partners/intel2.png" alt="Intel">-->
<a target="_blank" href="http://www.computervisiononline.com"><img src="images/demo/partners/cvo.jpg" alt="Computer Vision Online" ></a>
</div>
</div>
</div>
</section>
<!--==========-->
<section id="pc" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-sm-12">
<div class="section-header text-center">
<h2><b>Program Committee</b></h2>
<p>Your papers are in great hands! MVR3D 2017 is proudly backed by the following program committee composed of very influential computer vision researchers:</p>
<p><br></p>
<div class="divTable">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell">Ali Osman Ulusoy</div>
<div class="divTableCell">Andrea Fusiello</div>
<div class="divTableCell">Andrea Gasparetto</div>
</div>
<div class="divTableRow">
<div class="divTableCell">Andreas Geiger</div>
<div class="divTableCell">Benjamin Busam</div>
<div class="divTableCell">Bertram Drost</div>
</div>
<div class="divTableRow">
<div class="divTableCell">Edmond Boyer</div>
<div class="divTableCell">Federico Tombari</div>
<div class="divTableCell">Juergen Sturm</div>
</div>
<div class="divTableRow">
<div class="divTableCell">Luca Cosmo</div>
<div class="divTableCell">Matthew Trager</div>
<div class="divTableCell">Miroslava Slavcheva</div>
</div>
<div class="divTableRow">
<div class="divTableCell">Zorah Laehner</div>
<div class="divTableCell">Srikumar Ramalingam</div>
<div class="divTableCell">Stefan Hinterstoisser</div>
</div>
<div class="divTableRow">
<div class="divTableCell">Venu Madhav Govindu</div>
<div class="divTableCell">Vincent Lepetit</div>
<div class="divTableCell">Wadim Kehl</div>
</div>
</div>
</div>
<p><br>Of course this is not the entire list. Stay tuned for more.</p>
</div>
</div>
</div>
</section>
<section id="organizers" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-sm-12">
<div class="section-header text-center">
<h2><b>Organizers</b></h2>
<p>Here are the diligent people behind MVR3D 2017.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/organizers/tolga-birdal2.jpg" alt="Tolga Birdal">
<div class="speaker-info">
<h3><b>Tolga</b><br> Birdal</h3>
<p>PhD Candidate<br> TU Munich</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="www.tbirdal.me" class="fa fa-home"></a></li>
<li><a target="_blank" href="http://campar.in.tum.de/Main/TolgaBirdal" class="fa fa-university"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/tbirdal/" class="fa fa-linkedin"></a></li>
<li><a target="_blank" href="https://twitter.com/tolga_birdal" class="fa fa-twitter"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/organizers/emanuele-rodola.jpg" alt="Emanuele Rodolà">
<div class="speaker-info">
<h3><b>Emanuele</b><br> Rodolà</h3>
<p>PostDoc Researcher<br> USI Lugano</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="https://sites.google.com/site/erodola/home" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/erodola/" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/organizers/gul-varol.jpg" alt="Gul Varol">
<div class="speaker-info">
<h3><b>Gül</b><br> Varol</h3>
<p>PhD Candidate<br>INRIA</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="http://www.di.ens.fr/~varol/" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://twitter.com/gulvarol" class="fa fa-twitter"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/gulvarol/" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/organizers/slobodan-ilic.jpg" alt="Slobodan Ilic">
<div class="speaker-info">
<h3><b>Slobodan</b><br> Ilic</h3>
<p>Principal Scientist<br>Siemens AG</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="http://campar.in.tum.de/Main/SlobodanIlic" class="fa fa-home"></a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/slobodan-ilic-64321b1" class="fa fa-linkedin"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/organizers/umberto-castellani.png" alt="Umberto Castellani">
<div class="speaker-info">
<h3><b>Umberto</b><br> Castellani</h3>
<p>Assistant Professor<br>University of Verona</p>
</div>
<ul class="speaker-contacts">
<li><a target="_blank" href="http://profs.sci.univr.it/~castella/" class="fa fa-home"></a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/demo/organizers/andrea-torsello.jpg" alt="Andrea Torsello">