L4: VSLAM 2 Flashcards

1
Q

Explain Graph-SLAM approach

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the purpose of front-end and back-end in SLAM?

A

Front End → VO

Back End → BA
Interplay of front-end and back-end!

Purpose: VO is computationally light, we can do it online. BA is not (except if windowed) so it can be done when there is time or if necesarry.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Feature detection

A

Examples:
- FAST

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Feature description

A

Examples:
- SIFT
- ORB
- BRIEF

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

SIFT

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

FAST

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

ORB

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

BRIEF

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Feature matching

A

Find correspondences between images by solving the correspondence problem. By comparing the features with their descriptors.
Examples:
- BF-Matcher: Check the whole data, find the smallest distance, gives the best result. Very slow for big data.
- FLANN based matcher: Fast, gives acceptable results, great with big data. Use euclidean (kd-tree) or hamming distance between descriptors. Not as robust as BF-Matchers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly