Robot Localisation Flashcards

1
Q

What is a pose

A

Combination of position and orientation (i,j,t)

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

What is the problem of robot localisation?

A

Ensuring the degrees of belief about its location give it as much information as possible

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

The collections of positions form a…

A

partition

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

How can we work out L_(i,j)?

A

(sum t)L_(i,j,t)

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

How can we work out L_t?

A

(sum i) (sum j) L_(i,j,t)

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

How do we encode the robot’s state of mind?

A

Probability distribution

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

What algorithms do we need to devise for assigning the relevant degrees of belief?

A

Assigning initial degrees of belief
Updating belief based upon sensor information
Updating belief in response to its action

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

How do we assign initial degrees of belief?

A

Assign all non-occupied poses an equal probability

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

How do we update the degrees of belief based on sensor information?

A

p(l_(i,j,t) | o) = p(o | l_(i,j,t))p(l_(i,j,t)) / sum i’,j’,t’ p(o | l_(i’,j’,t’))p(l_(i’,j’,t’))

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

What sensors does our robot have?

A

left, right, forward

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

What does it mean to say a reading is noisy for us?

A

if the true reading is k, the sensor will return an integer between 0 and 2k, normally distributed with mean k and standard deviation k/3

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

How do we update the degrees of belief in response to an action?

A

p(l’(i,j,t) | a_h) = sum i’,j’,t’ p(l’(i,j,t) | l_(i’,j’,t’) and a)p(l_(i’,j’t’))

we get here from:
what we want- p(l’(i,j,t) | a and l(i’,j’,t’))
p(l’(i,j,t) | a_h) = sum i’,j’,t’ p(l’(i,j,t) | l_(i’,j’,t’) and a) p(l_(i’,j’,t’) | a_h)
we know- p(l_(i’,j’,t’) | a_h) = p(l_(i’,j’,t’))

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