-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbibFile.bib
1001 lines (893 loc) · 33.6 KB
/
bibFile.bib
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
@INPROCEEDINGS{stereoOdomMER,
author={Goldberg, S.B. and Maimone, M.W. and Matthies, L.},
booktitle={Proceedings, IEEE Aerospace Conference},
title={Stereo vision and rover navigation software for planetary exploration},
year={2002},
volume={5},
pages={2025-2036},
doi={10.1109/AERO.2002.1035370}
}
@INPROCEEDINGS{stereoOdomMSL,
author={Johnson, Andrew E. and Goldberg, Steven B. and Yang Cheng and Matthies, Larry H.},
booktitle={2008 IEEE International Conference on Robotics and Automation},
title={Robust and Efficient Stereo Feature Tracking for Visual Odometry},
year={2008},
volume={},
number={},
pages={39-46},
doi={10.1109/ROBOT.2008.4543184}
}
@INPROCEEDINGS{ucmMei,
author={Mei, Christopher and Rives, Patrick},
booktitle={Proceedings 2007 IEEE International Conference on Robotics and Automation},
title={Single View Point Omnidirectional Camera Calibration from Planar Grids},
year={2007},
volume={},
number={},
pages={3945-3950},
doi={10.1109/ROBOT.2007.364084}
}
@article{twoYearsVOMars,
author = {Maimone, Mark and Cheng, Yang and Matthies, Larry},
year = {2007},
month = {03},
pages = {169-186},
title = {Two Years of Visual Odometry on the Mars Exploration Rovers},
volume = {24},
journal = {Journal of Field Robotics},
}
@article{LavaTubesSauro,
title = {Lava tubes on Earth, Moon and Mars: A review on their size and morphology revealed by comparative planetology},
journal = {Earth-Science Reviews},
volume = {209},
pages = {103288},
year = {2020},
author = {Francesco Sauro and Riccardo Pozzobon and Matteo Massironi and Pierluigi {De Berardinis} and Tommaso Santagata and Jo {De Waele}},
}
@article{locusReinke,
year = 2022,
publisher = {Institute of Electrical and Electronics Engineers ({IEEE})},
pages = {1-8},
author = {Andrzej Reinke and Matteo Palieri and Benjamin Morrell and Yun Chang and Kamak Ebadi and Luca Carlone and Ali-Akbar Agha-Mohammadi},
title = {{LOCUS} 2.0: Robust and Computationally Efficient Lidar Odometry for Real-Time 3D Mapping},
journal = {{IEEE} Robotics and Automation Letters}
}
@INPROCEEDINGS{claheYadav,
author={Yadav, Garima and Maheshwari, Saurabh and Agarwal, Anjali},
booktitle={International Conference on Advances in Computing, Communications and Informatics},
title={Contrast limited adaptive histogram equalization based enhancement for real time video system},
year={2014},
pages={2392-2397},
}
@article{orbSlam2MurArtal,
year = {2017},
volume = {33},
number = {5},
pages = {1255--1262},
author = {Raul Mur-Artal and Juan D. Tardos},
title = {{ORB}-{SLAM}2: An Open-Source {SLAM} System for Monocular, Stereo, and {RGB}-D Cameras},
journal = {{IEEE} Transactions on Robotics}
}
@inproceedings{engel2016dso,
author = {J. Engel and V. Koltun and D. Cremers},
title = { Direct Sparse Odometry},
booktitle = {IEEE
Transactions on Pattern Analysis and Machine Intelligence},
volume = {40},
pages = {611--625},
year = {2017},
}
@INPROCEEDINGS{p3pKneip,
author={Kneip, Laurent and Scaramuzza, Davide and Siegwart, Roland},
booktitle={Conference on Computer Vision and Pattern Recognition},
title={A novel parametrization of the perspective-three-point problem for a direct computation of absolute camera position and orientation},
year={2011},
pages={2969-2976},
}
@inproceedings{IlluminationKasper,
author = {Kasper, Mike and McGuire, Steve and Heckman, Christoffer},
title = {{A Benchmark for Visual-Inertial Odometry Systems Employing Onboard Illumination}},
booktitle = {2019 IEEE/RSJ International Conference on Intelligent Robots and Systems},
year = {2019}
}
@article{Koval2020ASV,
title={A Subterranean Virtual Cave World for Gazebo based on the DARPA SubT Challenge},
author={Anton Koval and Christoforos Kanellakis and Emil Vidmark and Jakub Haluska and George Nikolakopoulos},
journal={ArXiv},
year={2020},
volume={abs/2004.08452}
}
@inproceedings{KAZEAlcantarilla,
author = {Fernández Alcantarilla, Pablo and Bartoli, Adrien and Davison, Andrew},
booktitle = {European Conference on Computer Vision},
year = {2012},
pages = {214-227},
title = {KAZE Features},
}
@INPROCEEDINGS{ORBRublee,
author={Rublee, Ethan and Rabaud, Vincent and Konolige, Kurt and Bradski, Gary},
booktitle={2011 International Conference on Computer Vision},
title={ORB: An efficient alternative to SIFT or SURF},
year={2011},
volume={},
number={},
pages={2564-2571},
doi={10.1109/ICCV.2011.6126544}
}
@INPROCEEDINGS{BRISKLeutenegger,
author={Leutenegger, Stefan and Chli, Margarita and Siegwart, Roland Y.},
booktitle={2011 International Conference on Computer Vision},
title={BRISK: Binary Robust invariant scalable keypoints},
year={2011},
volume={},
number={},
pages={2548-2555},
doi={10.1109/ICCV.2011.6126542}
}
@INPROCEEDINGS{SuperPointDetone,
author={DeTone, Daniel and Malisiewicz, Tomasz and Rabinovich, Andrew},
booktitle={2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops},
title={SuperPoint: Self-Supervised Interest Point Detection and Description},
year={2018},
pages={337-33712},
}
@article{UWVOFerrera,
author = {Ferrera, Maxime and Moras, Julien and Trouvé-Peloux, Pauline and Creuze, Vincent},
title = {Real-time Monocular Visual Odometry for Turbid and Dynamic Underwater Environments},
journal = {Sensors},
volume = {19},
year = {2019},
number = {3},
article-number = {687}
}
@article{PyrKLTBouguet,
title={Pyramidal implementation of the lucas kanade feature tracker},
author={J.-Y. Bouguet},
journal={Intel corporation},
year={2001}
}
@inproceedings{vivet2019pavo,
title = {PAVO: a Parallax based Bi-Monocular VO Approach For Autonomous Navigation In Various Environments},
year = {2019},
author = {Damien Vivet and Adrien Debord and Ga{\"e}l Pages},
pages = {1--7},
booktitle = {The International Conference on Digital Image \& Signal Processing},
}
@inproceedings{infoVioHsiung,
author={Hsiung, Jerry and Hsiao, Ming and Westman, Eric and Valencia, Rafael and Kaess, Michael},
booktitle={2018 IEEE/RSJ International Conference on Intelligent Robots and Systems},
title={{Information Sparsification in Visual-Inertial Odometry}},
year={2018},
pages={1146-1153},
doi={10.1109/IROS.2018.8594007}
}
@article{slidingWindowSibley,
author = {Sibley, Gabe and Matthies, Larry and Sukhatme, Gaurav},
title = {Sliding window filter with application to planetary landing},
journal = {Journal of Field Robotics},
volume = {27},
number = {5},
pages = {587-608},
year = {2010}
}
@inproceedings{omniTorres,
author = {Torres, Alex and Remetean, Emile and Moreno, Sabine and Germa, Thierry and Ginestet, Jean-Brice and Souvannavong, Fabrice},
booktitle = {International Symposium on Artificial Intelligence, Robotics and Automation in Space},
year = {2016},
title = {Omnidirectional stereoscopic vision systems for planetary exploration rovers}
}
@article{SIFTLowe,
author = {Lowe, David G.},
year = {2004},
pages = {91-110},
title = {Distinctive Image Features from Scale-Invariant Keypoints},
volume = {60},
journal = {International Journal of Computer Vision},
}
@inproceedings{doubleSphereUsenko,
author = {V. Usenko and N. Demmel and D. Cremers},
title = {The Double Sphere Camera Model},
booktitle = {International Conference on 3D Vision},
year = {2018},
}
@article{vivet2022robust,
title={Robust Filter-Based Visual Navigation Solution with Miscalibrated Bi-Monocular or Stereo Cameras},
author={Vivet, Damien and Vil{\`a}-Valls, Jordi and Pages, Ga{\"e}l and Chaumette, Eric},
journal={Remote Sensing},
volume={14},
number={6},
pages={1470},
year={2022},
publisher={MDPI}
}
@article{veluchamy2019image,
title={Image contrast and color enhancement using adaptive gamma correction and histogram equalization},
author={Veluchamy, Magudeeswaran and Subramani, Bharath},
journal={Optik},
volume={183},
pages={329--337},
year={2019},
publisher={Elsevier}
}
@article{ov2Ferrera,
author={Ferrera, Maxime and Eudes, Alexandre and Moras, Julien and Sanfourche, Martial and Le Besnerais, Guy},
journal={IEEE Robotics and Automation Letters},
title={OV$^{2}$SLAM: A Fully Online and Versatile Visual SLAM for Real-Time Applications},
year={2021},
volume={6},
number={2},
pages={1399-1406},
}
@inproceedings{lsdEngel,
author = {J. Engel and T. Schöps and D. Cremers},
title = {{LSD-SLAM}: Large-Scale Direct Monocular {SLAM}},
year = {2014},
pages = {834–849},
booktitle = {European Conference on Computer Vision},
}
@inproceedings{svoForster,
author={Forster, Christian and Pizzoli, Matia and Scaramuzza, Davide},
booktitle={2014 IEEE International Conference on Robotics and Automation},
title={{SVO}: Fast semi-direct monocular visual odometry},
year={2014},
pages={15-22}
}
@article{vinsQin,
author={Qin, Tong and Li, Peiliang and Shen, Shaojie},
journal={IEEE Transactions on Robotics},
title={VINS-Mono: A Robust and Versatile Monocular Visual-Inertial State Estimator},
volume={34},
number={4},
pages={1004-1020},
year={2018},
}
@misc{futureUndergroundSLAM,
url = {https://arxiv.org/abs/2208.01787},
author = {Ebadi, Kamak and Bernreiter, Lukas and Biggie, Harel and Catt, Gavin and Chang, Yun and Chatterjee, Arghya and Denniston, Christopher E. and Deschênes, Simon-Pierre and Harlow, Kyle and Khattak, Shehryar and Nogueira, Lucas and Palieri, Matteo and Petráček, Pavel and Petrlík, Matěj and Reinke, Andrzej and Krátký, Vít and Zhao, Shibo and Agha-mohammadi, Ali-akbar and Alexis, Kostas and Heckman, Christoffer and Khosoussi, Kasra and Kottege, Navinda and Morrell, Benjamin and Hutter, Marco and Pauling, Fred and Pomerleau, François and Saska, Martin and Scherer, Sebastian and Siegwart, Roland and Williams, Jason L. and Carlone, Luca},
title = {Present and Future of {SLAM} in Extreme Underground Environments},
publisher = {arXiv},
year = {2022},
copyright = {Creative Commons Attribution 4.0 International}
}
@article{NFRmazuran,
author = {Mazuran, Mladen and Burgard, Wolfram and Tipaldi, Gian Diego},
year = {2015},
title = {Nonlinear factor recovery for long-term {SLAM}},
volume = {35},
pages = {50-72},
journal = {The International Journal of Robotics Research}
}
@article{slidingSibley,
author = {Sibley, Gabe and Matthies, Larry and Sukhatme, Gaurav},
title = {Sliding window filter with application to planetary landing},
journal = {Journal of Field Robotics},
volume = {27},
number = {5},
pages = {587-608},
year = {2010}
}
@article{glcCarlevaris,
author={Carlevaris-Bianco, Nicholas and Kaess, Michael and Eustice, Ryan M.},
journal={IEEE Transactions on Robotics},
title={{Generic Node Removal for Factor-Graph SLAM}},
year={2014},
volume={30},
number={6},
pages={1371-1385},
}
@inproceedings{efficientZlot,
author={Zlot, Robert and Bosse, Michael},
title={Efficient large-scale 3D mobile mapping and surface reconstruction of an underground mine},
booktitle={Field and service robotics},
pages={479-493},
year={2014},
}
@software{ceresAgarwal,
author = {Agarwal, Sameer and Mierle, Keir and The Ceres Solver Team},
title = {{Ceres Solver}},
license = {Apache-2.0},
url = {https://github.com/ceres-solver/ceres-solver},
version = {2.1},
year = {2022},
month = {3}
}
@INPROCEEDINGS{g2oKummerle,
author={Kümmerle, Rainer and Grisetti, Giorgio and Strasdat, Hauke and Konolige, Kurt and Burgard, Wolfram},
booktitle={2011 IEEE International Conference on Robotics and Automation},
title={G2o: A general framework for graph optimization},
year={2011},
pages={3607-3613},
}
@article{vioNFRUsenko,
year = 2020,
publisher = {Institute of Electrical and Electronics Engineers ({IEEE})},
volume = {5},
number = {2},
pages = {422--429},
author = {Vladyslav Usenko and Nikolaus Demmel and David Schubert and Jorg Stuckler and Daniel Cremers},
title = {{Visual-Inertial Mapping With Non-Linear Factor Recovery}},
journal = {{IEEE} Robotics and Automation Letters}
}
@article{monoDavison,
author={Davison, Andrew J. and Reid, Ian D. and Molton, Nicholas D. and Stasse, Olivier},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
title={MonoSLAM: Real-Time Single Camera SLAM},
year={2007},
volume={29},
number={6},
pages={1052-1067},
}
@inproceedings{whyfilterStrasdat,
author={Strasdat, Hauke and Montiel, J. M. M. and Davison, Andrew J.},
booktitle={2010 IEEE International Conference on Robotics and Automation},
title={Real-time monocular {SLAM}: Why filter?},
year={2010},
pages={2657-2664},
}
@article{orbslam3Campos,
author={Campos, Carlos and Elvira, Richard and Rodríguez, Juan J. Gómez and M. Montiel, José M. and D. Tardós, Juan},
journal={IEEE Transactions on Robotics},
title={{ORB-SLAM3}: An Accurate Open-Source Library for Visual, Visual–Inertial, and Multimap SLAM},
year={2021},
volume={37},
number={6},
pages={1874-1890}
}
@inproceedings{Designdebeunne,
title = {{Design of a bi-monocular Visual Odometry System for Lava Tubes exploration}},
author = {Debeunne, C{\'e}sar and Vivet, Damien and Torres, Alex},
booktitle = {PNARUDE Workshop 2022 IEEE/RSJ
International Conference on Intelligent Robots and Systems},
year = {2022},
}
@misc{micro_lie,
author = {Solà, Joan and Deray, Jeremie and Atchuthan, Dinesh},
title = {A micro Lie theory for state estimation in robotics},
publisher = {arXiv},
year = {2018},
copyright = {Creative Commons Attribution Non Commercial Share Alike 4.0 International}
}
@article{factorDescVallve,
author={Vallvé, Joan and Solà, Joan and Andrade-Cetto, Juan},
journal={IEEE Robotics and Automation Letters},
title={{Graph SLAM Sparsification With Populated Topologies Using Factor Descent Optimization}},
year={2018},
volume={3},
number={2},
pages={1322-1329},
}
@inproceedings{Mars2020LVSJohnson,
author = {Johnson, Andrew and Aaron, Seth and Ansari, Homayoon and Bergh, Charles and Bourdu, Helene and Butler, Jim and Chang, Johnny and Cheng, Richard and Cheng, Yang and Clark, Kenneth and Clouse, Daniel and Donnelly, Rob and Gostelow, Kim and Jay, William and Jordan, Michael and Mohan, Swati and Montgomery, James and Morrison, Jack and Schroeder, Steven and Zheng, Jason},
year = {2022},
booktitle={AIAA SciTech 2022 Forum},
pages = {1214-1234},
title = {Mars 2020 Lander Vision System Flight Performance},
}
@INPROCEEDINGS{VONister,
author={Nister, D. and Naroditsky, O. and Bergen, J.},
booktitle={2004 IEEE Computer Society Conference on Computer Vision and Pattern Recognition},
title={Visual odometry},
year={2004},
pages={652—659},
}
@INPROCEEDINGS{isam2Kaess,
author={Kaess, Michael and Johannsson, Hordur and Roberts, Richard and Ila, Viorela and Leonard, John and Dellaert, Frank},
booktitle={2011 IEEE International Conference on Robotics and Automation},
title={{iSAM2}: Incremental smoothing and mapping with fluid relinearization and incremental variable reordering},
year={2011},
pages={3281-3288},
}
@article{sparsifVallve,
title = {Pose-graph SLAM sparsification using factor descent},
journal = {Robotics and Autonomous Systems},
volume = {119},
pages = {108-118},
year = {2019},
doi = {https://doi.org/10.1016/j.robot.2019.06.004},
author = {Joan Vallvé, Joan Solà and Juan Andrade-Cetto},
}
@inproceedings{pless2003using,
title={Using many cameras as one},
author={Pless, Robert},
booktitle={2003 IEEE Computer Society Conference on Computer Vision and Pattern Recognition, 2003. Proceedings.},
volume={2},
pages={II--587},
year={2003},
organization={IEEE}
}
@article{urban2016multicol,
title={Multicol-slam-a modular real-time multi-camera slam system},
author={Urban, Steffen and Hinz, Stefan},
journal={arXiv preprint arXiv:1610.07336},
year={2016}
}
@article{sola2008fusing,
title={Fusing monocular information in multicamera SLAM},
author={Sola, Joan and Monin, Andr{\'e} and Devy, Michel and Vidal-Calleja, Teresa},
journal={IEEE transactions on robotics},
volume={24},
number={5},
pages={958--968},
year={2008},
publisher={IEEE}
}
@article{tribou2015multi,
title={Multi-camera parallel tracking and mapping with non-overlapping fields of view},
author={Tribou, Michael J and Harmat, Adam and Wang, David WL and Sharf, Inna and Waslander, Steven L},
journal={The International Journal of Robotics Research},
volume={34},
number={12},
pages={1480--1500},
year={2015},
publisher={SAGE Publications Sage UK: London, England}
}
@article{kaveti2022design,
title={Design and Evaluation of a Generic Visual SLAM Framework for Multi-Camera Systems},
author={Kaveti, Pushyami and Thamilchelvan, Arvind and Singh, Hanumant},
journal={arXiv preprint arXiv:2210.07315},
year={2022}
}
@INPROCEEDINGS{nofovClipp,
author={Clipp, Brian and Kim, Jae-Hak and Frahm, Jan-Michael and Pollefeys, Marc and Hartley, Richard},
booktitle={2008 IEEE Workshop on Applications of Computer Vision},
title={Robust 6DOF Motion Estimation for Non-Overlapping, Multi-Camera Systems},
year={2008},
volume={},
number={},
pages={1-8},
doi={10.1109/WACV.2008.4544011}}
@INPROCEEDINGS{rt6DnofovKazik,
author={Kazik, Tim and Kneip, Laurent and Nikolic, Janosch and Pollefeys, Marc and Siegwart, Roland},
booktitle={2012 IEEE Conference on Computer Vision and Pattern Recognition},
title={Real-time 6D stereo Visual Odometry with non-overlapping fields of view},
year={2012},
pages={1529-1536},
doi={10.1109/CVPR.2012.6247843}}
@INPROCEEDINGS{calibnofovKumar,
author={Kumar, Ram Krishan and Ilie, Adrian and Frahm, Jan-Michael and Pollefeys, Marc},
booktitle={2008 IEEE Conference on Computer Vision and Pattern Recognition},
title={Simple calibration of non-overlapping cameras with a mirror},
year={2008},
volume={},
number={},
pages={1-7},
doi={10.1109/CVPR.2008.4587676}}
@inproceedings{scaleinitWang,
author = {Wang, Yifu and Kneip, Laurent},
year = {2017},
month = {10},
pages = {144-157},
title = {On Scale Initialization in Non-overlapping Multi-perspective Visual Odometry},
booktitle="Computer Vision Systems",
isbn = {978-3-319-68344-7},
doi = {10.1007/978-3-319-68345-4_13}
}
@inproceedings{usingPless,
title={Using many cameras as one},
author={Pless, Robert},
booktitle={IEEE Computer Society Conference on Computer Vision and Pattern Recognition},
volume={2},
pages={II--587},
year={2003},
organization={IEEE}
}
@book{multipleHartley,
address = {New York, NY, USA},
author = {Hartley, Richard and Zisserman, Andrew},
year = {2003},
publisher = {Cambridge University Press},
title = {Multiple View Geometry in Computer Vision},
}
@article{okvisLeutenegger,
author = {Leutenegger, Stefan and Lynen, Simon and Bosse, Michael and Siegwart, Roland and Furgale, Paul},
year = {2014},
month = {02},
pages = {},
title = {Keyframe-Based Visual-Inertial Odometry Using Nonlinear Optimization},
volume = {34},
journal = {The International Journal of Robotics Research},
doi = {10.1177/0278364914554813}
}
@article{afeOrbSLAMYu,
author = {Yu, Leijian and Yang, Erfu and Yang, Beiya},
year = {2022},
month = {05},
pages = {},
title = {AFE-ORB-SLAM: Robust Monocular VSLAM Based on Adaptive FAST Threshold and Image Enhancement for Complex Lighting Environments},
volume = {105},
journal = {Journal of Intelligent and Robotic Systems},
doi = {10.1177/0278364914554813}
}
@INPROCEEDINGS{kalibrFurgale,
author={Furgale, Paul and Rehder, Joern and Siegwart, Roland},
booktitle={2013 IEEE/RSJ International Conference on Intelligent Robots and Systems},
title={Unified temporal and spatial calibration for multi-sensor systems},
year={2013},
volume={},
number={},
pages={1280-1286},
doi={10.1109/IROS.2013.6696514}}
@inproceedings{sparsifDebeunne,
author={Debeunne, César and Vallvé, Joan and Torres, Alex and Vivet, Damien},
booktitle={2023 IEEE/RSJ International Conference on Intelligent Robots and Systems },
title={Fast Bi-Monocular Visual Odometry Using Factor Graph Sparsification},
year={2023},
pages={10716-10722},
}
@article{projBirchfield,
title={An introduction to projective geometry (for computer vision)},
author={Birchfield, Stan},
journal={Unpublished note, Stanford university},
volume={14},
year={1998}
}
@article{fisheyeBettonvil,
author = {Bettonvil, Felix},
year = {2005},
month = {01},
pages = {9-14},
title = {Fisheye lenses},
volume = {33},
journal = {WGN, Journal of the International Meteor Organization}
}
@ARTICLE{KBfisheyemodel,
author={Kannala, J. and Brandt, S.S.},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
title={A generic camera model and calibration method for conventional, wide-angle, and fish-eye lenses},
year={2006},
volume={28},
number={8},
pages={1335-1340},
doi={10.1109/TPAMI.2006.153}
}
@ARTICLE{cameraCalibrationWeng,
author={Weng, J. and Cohen, P. and Herniou, M.},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
title={Camera calibration with distortion models and accuracy evaluation},
year={1992},
volume={14},
number={10},
pages={965-980},
doi={10.1109/34.159901}
}
@INPROCEEDINGS{omniScaramuza,
author={Scaramuzza, D. and Martinelli, A. and Siegwart, R.},
booktitle={Fourth IEEE International Conference on Computer Vision Systems (ICVS'06)},
title={A Flexible Technique for Accurate Omnidirectional Camera Calibration and Structure from Motion},
year={2006},
volume={},
number={},
pages={45-45},
doi={10.1109/ICVS.2006.3}
}
@INPROCEEDINGS{selfcalibslamHeng,
AUTHOR = {Lionel Heng AND Gim Hee Lee AND Marc Pollefeys},
TITLE = {Self-Calibration and Visual SLAM with a Multi-Camera System on a Micro Aerial Vehicle},
BOOKTITLE = {Proceedings of Robotics: Science and Systems},
YEAR = {2014},
ADDRESS = {Berkeley, USA},
MONTH = {July},
DOI = {10.15607/RSS.2014.X.008}
}
@INPROCEEDINGS{aprilTagOlson,
author={Olson, Edwin},
booktitle={2011 IEEE International Conference on Robotics and Automation},
title={AprilTag: A robust and flexible visual fiducial system},
year={2011},
volume={},
number={},
pages={3400-3407},
doi={10.1109/ICRA.2011.5979561}
}
@article{sola2008fusing,
title={Fusing monocular information in multicamera SLAM},
author={Sola, Joan and Monin, Andr{\'e} and Devy, Michel and Vidal-Calleja, Teresa},
journal={IEEE transactions on robotics},
volume={24},
number={5},
pages={958--968},
year={2008},
publisher={IEEE}
}
@Article{reviewDebeunne,
AUTHOR = {Debeunne, César and Vivet, Damien},
TITLE = {A Review of Visual-LiDAR Fusion based Simultaneous Localization and Mapping},
JOURNAL = {Sensors},
VOLUME = {20},
YEAR = {2020},
NUMBER = {7},
ARTICLE-NUMBER = {2068},
}
@ARTICLE{invDepthDavison,
author={Civera, Javier and Davison, Andrew J. and Montiel, J. M. MartÍnez},
journal={IEEE Transactions on Robotics},
title={Inverse Depth Parametrization for Monocular SLAM},
year={2008},
volume={24},
number={5},
pages={932-945},
doi={10.1109/TRO.2008.2003276},
}
@INPROCEEDINGS{1ptRANSACDavison,
author={Civera, Javier and Grasa, Oscar G. and Davison, Andrew J. and Montiel, J. M. M.},
booktitle={2009 IEEE/RSJ International Conference on Intelligent Robots and Systems},
title={1-point RANSAC for EKF-based Structure from Motion},
year={2009},
volume={},
number={},
pages={3498-3504},
doi={10.1109/IROS.2009.5354410}}
@inproceedings{volumetricMeshRoth,
title = {An Efficient Volumetric Method for Building Closed Triangular Meshes from 3-D Image and Point Data},
author = {Gerhard Roth and Eko Wibowoo},
booktitle = {Proceedings of the Graphics Interface 1997 Conference, May 21-23, 1997, Kelowna, BC, Canada},
year = {1997},
month = {May},
pages = {173--180},
}
@inproceedings{visionModellingSe,
title={Vision based modeling and localization for planetary exploration rovers},
author={Se, Stephen and Ng, Ho-Kong and Jasiobedzki, Piotr and Moyung, Tai-Jing},
booktitle={55th International Astronautical Congress of the International Astronautical Federation, the International Academy of Astronautics, and the International Institute of Space Law},
pages={U--2},
year={2004}
}
@article{kimeraRosinol,
title = {Kimera: from {SLAM} to Spatial Perception with {3D} Dynamic Scene Graphs},
author = {Rosinol, A. and Violette, A. and Abate, M. and Hughes, N. and Chang, Y. and Shi, J. and Gupta, A. and Carlone, L.},
journal = {Intl. J. of Robotics Research},
volume = {40},
number = {12--14},
pages = {1510--1546},
year = {2021}
}
@inproceedings{meshRosinol,
author = {Rosinol, A. and Sattler, T. and Pollefeys, M. and Carlone, L.},
title = {Incremental {V}isual-{I}nertial {3D} {M}esh {G}eneration with {S}tructural {R}egularities},
booktitle = {IEEE Intl. Conf. on Robotics and Automation },
year = {2019},
}
@INPROCEEDINGS{lightweightMeshHerb,
author={Herb, Markus and Weiherer, Tobias and Navab, Nassir and Tombari, Federico},
booktitle={2021 IEEE International Conference on Robotics and Automation },
title={Lightweight Semantic Mesh Mapping for Autonomous Vehicles},
year={2021},
volume={},
number={},
pages={6732-3738},
}
@INPROCEEDINGS{3donthegoSchops,
author={Schöps, Thomas and Sattler, Torsten and Häne, Christian and Pollefeys, Marc},
booktitle={2015 International Conference on 3D Vision},
title={3D Modeling on the Go: Interactive 3D Reconstruction of Large-Scale Scenes on Mobile Devices},
year={2015},
volume={},
number={},
pages={291-299},
}
@inproceedings{chiselKlingensmith,
author = {Matthew Klingensmith and Ivan Dryanovski and Siddhartha Srinivasa and Jizhong Xiao},
title = {Chisel: Real Time Large Scale 3D Reconstruction Onboard a Mobile Device},
booktitle = {Proceedings of Robotics: Science and Systems (RSS '15)},
year = {2015},
month = {July},
}
@inproceedings{IncrementalSMLitvitnov,
title={Incremental Solid Modeling from Sparse and Omnidirectional Structure-from-Motion Data},
author={Vadim Litvinov and Maxime Lhuillier},
booktitle={British Machine Vision Conference},
year={2013}
}
@ARTICLE{rtMeshPiazza,
author={Piazza, Enrico and Romanoni, Andrea and Matteucci, Matteo},
journal={IEEE Robotics and Automation Letters},
title={Real-Time CPU-Based Large-Scale Three-Dimensional Mesh Reconstruction},
year={2018},
volume={3},
number={3},
pages={1584-1591},
}
@INPROCEEDINGS{ovpcmeshRuetz,
author={Ruetz, Fabio and Hernández, Emili and Pfeiffer, Mark and Oleynikova, Helen and Cox, Mark and Lowe, Thomas and Borges, Paulo},
booktitle={2019 International Conference on Robotics and Automation },
title={OVPC Mesh: 3D Free-space Representation for Local Ground Vehicle Navigation},
year={2019},
volume={},
number={},
pages={8648-8654},
doi={10.1109/ICRA.2019.8793503}
}
@INPROCEEDINGS{roughTerrainGingras,
author={Gingras, David and Lamarche, Tom and Bedwani, Jean-Luc and Dupuis, Erick},
booktitle={2010 Canadian Conference on Computer and Robot Vision},
title={Rough Terrain Reconstruction for Rover Motion Planning},
year={2010},
volume={},
number={},
pages={191-198},
doi={10.1109/CRV.2010.32}
}
@INPROCEEDINGS{highperfstereoPillai,
author={Pillai, Sudeep and Ramalingam, Srikumar and Leonard, John J.},
booktitle={2016 IEEE International Conference on Robotics and Automation },
title={High-performance and tunable stereo reconstruction},
year={2016},
volume={},
number={},
pages={3188-3195},
doi={10.1109/ICRA.2016.7487488}}
@inproceedings{ptamKlein,
author = {Klein, Georg and Murray, David},
title = {Parallel Tracking and Mapping for Small AR Workspaces},
booktitle = {Proceedings of the 2007 6th IEEE and ACM International Symposium on Mixed and Augmented Reality},
series = {ISMAR '07},
year = {2007},
isbn = {978-1-4244-1749-0},
pages = {1--10},
numpages = {10},
url = {https://doi.org/10.1109/ISMAR.2007.4538852},
doi = {10.1109/ISMAR.2007.4538852},
acmid = {1514363},
publisher = {IEEE Computer Society},
address = {Washington, DC, USA},
}
@article{eurocBurri,
author = {Burri, Michael and Nikolic, Janosch and Gohl, Pascal and Schneider, Thomas and Rehder, Joern and Omari, Sammy and Achtelik, Markus W and Siegwart, Roland},
title = {The EuRoC micro aerial vehicle datasets},
year = {2016},
doi = {10.1177/0278364915620033},
URL = {http://ijr.sagepub.com/content/early/2016/01/21/0278364915620033.abstract},
eprint = {http://ijr.sagepub.com/content/early/2016/01/21/0278364915620033.full.pdf+html},
journal = {The International Journal of Robotics Research}
}
@ARTICLE{KittiGeiger,
author = {Andreas Geiger and Philip Lenz and Christoph Stiller and Raquel Urtasun},
title = {Vision meets Robotics: The KITTI Dataset},
journal = {International Journal of Robotics Research (IJRR)},
year = {2013}
}
@article{ibowlcdGarcia,
author={Emilio Garcia-Fidalgo and Alberto Ortiz},
journal={IEEE Robotics and Automation Letters},
title={iBoW-LCD: An Appearance-Based Loop-Closure Detection Approach Using Incremental Bags of Binary Words},
year={2018},
volume={3},
number={4},
pages={3051-3057},
doi={10.1109/LRA.2018.2849609},
month={Oct}
}
@ARTICLE{BoWLopez,
author={Galvez-López, Dorian and Tardos, Juan D.},
journal={IEEE Transactions on Robotics},
title={Bags of Binary Words for Fast Place Recognition in Image Sequences},
year={2012},
volume={28},
number={5},
pages={1188-1197},
doi={10.1109/TRO.2012.2197158}}
@inproceedings{newcombe2011dtam,
title={DTAM: Dense tracking and mapping in real-time},
author={Newcombe, Richard A and Lovegrove, Steven J and Davison, Andrew J},
booktitle={2011 international conference on computer vision},
pages={2320--2327},
year={2011},
organization={IEEE}
}
@INPROCEEDINGS{benchmarkScaramuzza,
author={Delmerico, Jeffrey and Scaramuzza, Davide},
booktitle={2018 IEEE International Conference on Robotics and Automation },
title={A Benchmark Comparison of Monocular Visual-Inertial Odometry Algorithms for Flying Robots},
year={2018},
pages={2502-2509},
doi={10.1109/ICRA.2018.8460664}
}
@article{terrainChhaniyara,
title = {Terrain trafficability analysis and soil mechanical property identification for planetary rovers: A survey},
journal = {Journal of Terramechanics},
volume = {49},
number = {2},
pages = {115-128},
year = {2012},
author = {S. Chhaniyara and C. Brunskill and B. Yeomans and M.C. Matthews and C. Saaj and S. Ransom and L. Richter},
keywords = {Trafficability, Mobility, Planetary exploration, Autonomy, Mobile robotic platforms, Terrain characterisation, Sensors},
}
@ARTICLE{onManifForster,
author={Forster, Christian and Carlone, Luca and Dellaert, Frank and Scaramuzza, Davide},
journal={IEEE Transactions on Robotics},
title={On-Manifold Preintegration for Real-Time Visual--Inertial Odometry},
year={2017},
volume={33},
number={1},
pages={1-21},
doi={10.1109/TRO.2016.2597321}
}
@article{surveyTravBorges,
title={A Survey on Terrain Traversability Analysis for Autonomous Ground Vehicles: Methods, Sensors, and Challenges},
author={Paulo Borges and Thierry Peynot and Sisi Liang and Bilal Arain and Matt Wildie and Melih Minareci and Serge Lichman and Garima Samvedi and Inkyu Sa and Nicolas Hudson and Michael Milford and Peyman Moghadam and Peter Corke},
journal={Field Robotics},
year={2022},
volume={2},
pages={1567-1627}
}
@ARTICLE{denseStereoHirschmuller,
author={Hirschmuller, Heiko},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
title={Stereo Processing by Semiglobal Matching and Mutual Information},
year={2008},
volume={30},
number={2},
pages={328-341},
}
@misc{solà2017quaternion,
title={Quaternion kinematics for the error-state Kalman filter},
author={Joan Solà},
year={2017},
eprint={1711.02508},
archivePrefix={arXiv},
primaryClass={cs.RO}
}
@ARTICLE{rotation_kim,
author={Kim, Soohwan and Kim, Minkyoung},
journal={IEEE Access},
title={Rotation Representations and Their Conversions},
year={2023},
volume={11},
number={},
pages={6682-6699},
}
@book{probrobThrun,
author = {Thrun, Sebastian and Burgard, Wolfram and Fox, Dieter},
title = {Probabilistic Robotics (Intelligent Robotics and Autonomous Agents)},
year = {2005},
isbn = {0262201623},
publisher = {The MIT Press}
}
@article{slamSmith,
author = {Randall C. Smith and Peter Cheeseman},
title ={On the Representation and Estimation of Spatial Uncertainty},
journal = {The International Journal of Robotics Research},
volume = {5},
number = {4},
pages = {56-68},
year = {1986},
doi = {10.1177/027836498600500404},
}
@article{certaintygridMoravec,
title={Sensor Fusion in Certainty Grids for Mobile Robots},
volume={9},
number={2},
journal={AI Magazine},
author={Moravec, Hans P.},
year={1988},
month={Jun.},
pages={61},
}
@INPROCEEDINGS{nerfslamRosinol,
author={Rosinol, Antoni and Leonard, John J. and Carlone, Luca},
booktitle={2023 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},
title={NeRF-SLAM: Real-Time Dense Monocular SLAM with Neural Radiance Fields},
year={2023},
pages={3437-3444},
doi={10.1109/IROS55552.2023.10341922}
}
@article{posegraphcompressStachniss,
author = {Henrik Kretzschmar and Cyrill Stachniss},
title ={Information-theoretic compression of pose graphs for laser-based SLAM},
journal = {The International Journal of Robotics Research},
volume = {31},
number = {11},
pages = {1219-1230},
year = {2012},
doi = {10.1177/0278364912455072},
}
@ARTICLE{compactPosSLAMViorela,
author={Ila, Viorela and Porta, Josep M. and Andrade-Cetto, Juan},
journal={IEEE Transactions on Robotics},
title={Information-Based Compact Pose SLAM},
year={2010},
volume={26},
number={1},
pages={78-93},
doi={10.1109/TRO.2009.2034435}