Autonomous Intelligent Robotics Instructor: Shiqi Zhang - - PowerPoint PPT Presentation

autonomous intelligent robotics
SMART_READER_LITE
LIVE PREVIEW

Autonomous Intelligent Robotics Instructor: Shiqi Zhang - - PowerPoint PPT Presentation

Spring 2017 CIS 493, EEC 492, EEC 592: Autonomous Intelligent Robotics Instructor: Shiqi Zhang http://eecs.csuohio.edu/~szhang/teaching/17spring/ About Assignment 2 About Proposal Draft (Due Feb 20, 5 PM ) Teaming: its your


slide-1
SLIDE 1

Spring 2017 CIS 493, EEC 492, EEC 592:

Autonomous Intelligent Robotics

Instructor: Shiqi Zhang

http://eecs.csuohio.edu/~szhang/teaching/17spring/

slide-2
SLIDE 2
  • About Assignment 2
  • About Proposal Draft (Due Feb 20, 5 PM)
  • Teaming: it’s your responsibility to convince people that

you can contribute to the project

  • Grading will be based on your proposal draft, proposal

and final report

  • Grading will be SUBJECTIVE
  • Proposal presentation on March 9
  • Peer review
slide-3
SLIDE 3

3

  • SLAM stands for simultaneous localization and mapping
  • The task of building a map while estimating

the pose of the robot relative to this map

  • Why is SLAM hard?

Chicken and egg problem: a map is needed to localize the robot and a pose estimate is needed to build a map

The SLAM Problem

Slides adapted from Probabilistic Robotics book

slide-4
SLIDE 4

4

Given:

– The robot’s controls – Observations of

nearby features

Estimate:

– Map of features – Path of the robot

The SLAM Problem

A robot moving though an unknown, static environment

slide-5
SLIDE 5

5

Why is SLAM a hard problem?

SLAM: robot path and map are both unknown! Robot path error correlates errors in the map

slide-6
SLIDE 6

6

Why is SLAM a hard problem?

  • In the real world, the mapping between observations and

landmarks is unknown

  • Picking wrong data associations can have catastrophic

consequences

  • Pose error correlates data associations

Robot pose uncertainty

slide-7
SLIDE 7

7

Data Association Problem

  • A data association is an assignment of observations to

landmarks

  • In general there are more than

(n observations, m landmarks) possible associations

  • Also called “assignment problem”
slide-8
SLIDE 8

8

  • Represent belief by random samples
  • Estimation of non-Gaussian, nonlinear processes
  • Sampling Importance Resampling (SIR) principle
  • Draw the new generation of particles
  • Assign an importance weight to each particle
  • Resampling
  • T

ypical application scenarios are tracking, localization, …

Particle Filters

slide-9
SLIDE 9

9

  • A particle fjlter can be used to solve both problems
  • Localization: state space x, y, 
  • SLAM: state space x, y, , map
  • for landmark maps = l1, l2, …, lm
  • for grid maps = c11, c12, …, c1n, c21, …, cnm
  • Problem: The number of particles needed to represent a posterior

grows exponentially with the dimension of the state space!

Localization vs. SLAM

slide-10
SLIDE 10

10

  • Is there a dependency between the dimensions of the state space?
  • If so, can we use the dependency to solve the problem more

effjciently?

Dependencies

slide-11
SLIDE 11

11

  • Is there a dependency between the dimensions of the state space?
  • If so, can we use the dependency to solve the problem more

effjciently?

  • In the SLAM context
  • The map depends on the poses of the robot.
  • We know how to build a map given the position of the

sensor is known.

Dependencies

slide-12
SLIDE 12

12

Factored Posterior (Landmarks)

SLAM posterior Robot path posterior landmark positions

Factorization first introduced by Murphy in 1999

Does this help to solve the problem? poses map

  • bservations & movements
slide-13
SLIDE 13

13

Factored Posterior (Landmarks)

Factorization first introduced by Murphy in 1999

poses map

  • bservations & movements
slide-14
SLIDE 14

14

Knowledge of the robot’s true path renders landmark positions conditionally independent

Mapping using Landmarks

. . .

Landmark 1

  • bservations

Robot poses controls x1 x2 xt u1 ut-1 l2 l1 z1 z2 x3 u1 z3 zt Landmark 2 x0 u0

slide-15
SLIDE 15

15

Factored Posterior

Robot path posterior (localization problem) Conditionally independent landmark positions

slide-16
SLIDE 16

16

Rao-Blackwellization

  • This factorization is also called Rao-Blackwellization
  • Given that the second term can be computed effjciently, particle

fjltering becomes possible!

slide-17
SLIDE 17

17

FastSLAM

  • Rao-Blackwellized particle fjltering based on landmarks [Montemerlo

et al., 2002]

  • Each landmark is represented by a 2x2

Extended Kalman Filter (EKF)

  • Each particle therefore has to maintain M EKFs

Landmark 1 Landmark 2 Landmark M … x, y, 

Landmark 1 Landmark 2 Landmark M … x, y,  Particle #1 Landmark 1 Landmark 2 Landmark M … x, y,  Particle #2 Particle N

slide-18
SLIDE 18

18

FastSLAM – Action Update

Particle #1 Particle #2 Particle #3 Landmark #1 Filter Landmark #2 Filter

slide-19
SLIDE 19

19

FastSLAM – Sensor Update

Particle #1 Particle #2 Particle #3 Landmark #1 Filter Landmark #2 Filter

slide-20
SLIDE 20

20

FastSLAM – Sensor Update

Particle #1 Particle #2 Particle #3 Weight = 0.8 Weight = 0.4 Weight = 0.1

slide-21
SLIDE 21

21

FastSLAM - Video

https://youtu.be/KqGXoaLGm08

slide-22
SLIDE 22

22

Data Association Problem

  • A robust SLAM must consider possible data associations
  • Potential data associations depend also
  • n the pose of the robot
  • Which observation belongs to which landmark?
slide-23
SLIDE 23

23

Multi-Hypothesis Data Association

  • Data association is done on a

per-particle basis

  • Robot pose error is factored
  • ut of data association

decisions

slide-24
SLIDE 24

24

Per-Particle Data Association

Was the observation generated by the red

  • r the blue landmark?

P(observation|red) = 0.3 P(observation|blue) = 0.7

  • T

wo options for per-particle data association

  • Pick the most probable match
  • Pick an random association weighted by

the observation likelihoods

  • If the probability is too low, generate a new landmark
slide-25
SLIDE 25

25

Results – Victoria Park

  • 4 km traverse
  • < 5 m RMS

position error

  • 100 particles

Dataset courtesy of University of Sydney

Blue = GPS Yellow = FastSLAM

slide-26
SLIDE 26

26

Results – Victoria Park

Dataset courtesy of University of Sydney

slide-27
SLIDE 27

27

  • Can we solve the SLAM problem if no pre-defjned landmarks are

available?

  • Can we use the ideas of FastSLAM to build grid maps?
  • As with landmarks, the map depends on the poses of the robot during

data acquisition

  • If the poses are known, grid-based mapping is easy (“mapping with

known poses”)

Grid-based SLAM

slide-28
SLIDE 28

28

Mapping using Raw Odometry

https://youtu.be/tilcwBVO4MY

slide-29
SLIDE 29

29

Rao-Blackwellized Mapping

  • Each particle represents a possible trajectory of the robot
  • Each particle
  • maintains its own map and
  • updates it upon “mapping with known poses”
  • Each particle survives with a probability proportional to the

likelihood of the observations relative to its own map

slide-30
SLIDE 30

30

Particle Filter Example

map of particle 1 map of particle 3 map of particle 2 3 particles

slide-31
SLIDE 31

31

Problem

  • Each map is quite big in case of grid maps
  • Since each particle maintains its own map
  • Therefore, one needs to keep the number of

particles small

  • Solution:

Compute better proposal distributions!

  • Idea:

Improve the pose estimate before applying the particle fjlter

slide-32
SLIDE 32

32

Pose Correction Using Scan Matching

Maximize the likelihood of the i-th pose and map relative to the (i-1)-th pose and map

 

) ˆ , | ( ) ˆ , | ( max arg ˆ

1 1 1   

 

t t t t t t x t

x u x p m x z p x

t

robot motion current measurement map constructed so far

slide-33
SLIDE 33

33

Motion Model for Scan Matching

Raw Odometry Scan Matching https://youtu.be/sIMM73Was74

slide-34
SLIDE 34

34

Conclusion

  • The ideas of FastSLAM can also be applied in the context of

grid maps

  • Utilizing accurate sensor observation leads to good proposals

and highly efficient filters

  • It is similar to scan-matching on a per-particle base
  • The number of necessary particles and

re-sampling steps can seriously be reduced

  • Improved versions of grid-based FastSLAM can handle larger

environments than naïve implementations in “real time” since they need one order of magnitude fewer samples

slide-35
SLIDE 35

35

Demo on a real robot