+ All Categories
Home > Documents > Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics,...

Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics,...

Date post: 30-Mar-2015
Category:
Upload: cristian-monday
View: 215 times
Download: 0 times
Share this document with a friend
Popular Tags:
45
Transcript
Page 1: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.
Page 2: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

• Mobile Robot ApplicationsMobile Robot Applications• Textbook:

–T. Bräunl Embedded Robotics, Springer 2003

• Recommended Reading:• 1. J. Jones, A. Flynn: Mobile Robots, 2nd Ed., AK Peters,

1999

–→ Hobbyist’s introduction, easy reading• 2. R. Arkin: Behavior-based Robotics,

–→ Overview of behavior-based robotics• 3. Kernighan, Ritchie: The C Programming Language• alternatively: <any C programming book>

–→ C programming skills are important!

Page 3: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

• Contents Topics:Contents Topics:• Maze driving

–Micro Mouse Contest• Mapping

–Driving in unknown environments• Elementary Image Processing

–Edge detection, color detection, color blobs

• Robot Soccer

–autonomous agents

Page 4: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Mazes and MappingMazes and Mapping

Place p

robot

Know where to go!Know where to go!

Explore while finding the Explore while finding the connection.connection.

Page 5: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

More complex MazesMore complex Mazes

1. We won local competition in 1990

2. Two our teams did not complete the run 2004

3. This is a tough competitions as participants spend much time and have much experience

Page 6: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Follow the wall Follow the wall algorithm and algorithm and what is wrong what is wrong

with itwith it

Page 7: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

1.1. Idea: Always follow left wall.Idea: Always follow left wall.2. 2. MAZE was MODIFIED, this causes MAZE was MODIFIED, this causes new algorithm needsnew algorithm needs

Page 8: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

• This is becoming a competition for sensors, motors and crazy ideas.• Algorithmic problems are already solved.

Page 9: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Long rods for sensing

Page 10: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Cell-based maze for mapping and motion planning

CELL BASED IDEAS

Page 11: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

In early contests you can win using this simple algorithm. Next it was changed to make contest more

interesting

• This algorithm will not find the will not find the object in the object in the middle middle if there is much empty space around.

Page 12: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Follow left wall Follow left wall AlgorithmAlgorithm

Explore_left: Many Probabilistic variants have been created

See next page for these routines

x,y = coordinates, dir = direction

flags

• Psd = position sensor devide

continued

PSDGet is from sensors

Page 13: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Depending on current direction, update x and y coordinates of the mouse

turning

Going one cell

Page 14: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Never finds the goldIdea to remember: Idea to remember: there are good special algorithms for some kinds of mazes.If you deal with general space or irregular map of labyrinth, you have to use

several algorithms and adapt.

There are many recursive algorithms, we will illustrate one of them

Page 15: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Left-wall Left-wall algorithm versus algorithm versus

RecursionRecursion

Page 16: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

recursionLeft wall following

Check all possibilities and backtrack

Page 17: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Backtracking!!!Backtracking!!!

This explains and illustrates the concept of backtracking that is This explains and illustrates the concept of backtracking that is fundamental to robotics and AIfundamental to robotics and AI

In backtrack point robot knows that it has done a bad decision

Page 18: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Explore will call itself recursivelyrecursively

Mark x and y position

Check situations if front open etc

Set flags front open etc

Use flags front open etc

Page 19: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Recursive call of itself This part shows recursive calls in all

situations : Front openFront open, Left open Left open and right openright open

Page 20: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Idea: combine Idea: combine various maze various maze

algorithmsalgorithms

Page 21: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

We can combine recursion and left -wall-following algorithms in several ways

Page 22: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

This map shows calculating distances from the start for labyrinth from bottom left

1. Discuss how it works.

2. How it is represented.

Using grid we startstart from here and go everywhere adding 1 at each step

One approach to One approach to solve this are the solve this are the

Flood Fill AlgorithmsFlood Fill Algorithms

Page 23: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Flood Fill Flood Fill algorithmsalgorithms

Page 24: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Flood Fill Algorithm ExamplePhase 2Phase 1

Phase 3

This is like the “breadth first search”

Page 25: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Flood Fill AlgorithmsFlood Fill Algorithms

• The idea of marking cells appears here again

Page 26: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Algorithm continued

Page 27: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

continuation

Example on next slide

Page 28: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Shortest PathShortest Path

algorithmsalgorithms

Page 29: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Next Stage of Flood Algorithm:Next Stage of Flood Algorithm: Shortest Path

• Now we have:– Explored the maze– Know the distance to goal from every cell

• Missing:Missing:– Shortest path from start to goal

• Idea:– Generate shortest path from goal backward

to start

Page 30: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Backtracking to (0,0)

Page 31: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

i,j = cooridnates

k= current position

Wall = wall

north

south

east

west

Page 32: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

• Path already done by robot

• Distances of cells from start position

• Part of map that has been covered so far

• Map of labyrinth

What to visualize in maze algorithms

• Visualization is important for the user-programmer to understand what happens.

• It really helps!

Page 33: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

• Applications in hospitals, museums, mines, big government buildings.

Learn from counting the door counting the door or information on walls

Real-world mazesReal-world mazes (hospitals, universities) and (hospitals, universities) and labyrinthslabyrinths (forest, (forest, park, open battlefield)park, open battlefield)

Page 34: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Navigation AlgorithmsNavigation Algorithms

1. Dijkstra’s Algorithm

2. A* Algorithm

3. Potential Field Method

4. Wandering Standpoint Algorithm

5. Distbug Algorithm

Page 35: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Dijkstra’s Algorithm for Dijkstra’s Algorithm for all shortest pathsall shortest paths

Page 36: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.
Page 37: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.
Page 38: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.
Page 39: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

A* Algorithm for A* Algorithm for shortest pathshortest path

Page 40: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Estimation such as geometric distance

Page 41: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Near the goal estimated distances are real distances, no obstacles

Page 42: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Potential Potential Field MethodField Method

Page 43: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Potential Field Method for Potential Field Method for map creationmap creation

• Description: – Global map generation algorithm with virtual forces.

• Required:– Start and goal position, positions of all obstacles and walls.

• Algorithm: – Generate a map with virtual attracting and virtual repelling

forces. – Start point, obstacles, and walls are repelling, – goal is attracting, – force strength is linear to global object distance, – robot simply follows force field.

Page 44: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.
Page 45: Mobile Robot ApplicationsMobile Robot Applications Textbook: –T. Bräunl Embedded Robotics, Springer 2003 Recommended Reading: 1. J. Jones, A. Flynn: Mobile.

Recommended