Topological Navigation and Path Planning

Size: px
Start display at page:

Download "Topological Navigation and Path Planning"

Transcription

1 Topological Navigation and Path Planning

2 Topological Navigation and Path Planning Based upon points of interest E.g., landmarks Navigation is relational between points of interest E.g., Go past the corner and enter the second doorway on the left Precise metric information not used Approaches are usually based upon graph representations

3 Recall: Difference between Topological and Metric

4 Landmarks Landmarks: One or more perceptually distinctive features of interest on an object or locale of interest Examples: corner, doorway, tree, sign, marker Can be artificial or natural Artificial: placed for the purpose of aiding navigation Natural: existing features not expressly designed for aiding navigation Roboticists avoid artificial landmarks!! Gateways: Special case of landmark, where robot has opportunity to change its overall direction of navigation Examples: intersection of hallways

5 Important Criteria for Landmarks Must be readily recognizable Passive, perceivable over an entire range of time, distinctive globally/locally Landmarks should be plentiful Must support the task dependent activity Can extract what you need from it (orientation, distance, etc.) Must be perceivable from many different viewpoints

6 Questions Should landmarks be distinguishable from each other? Can we use people as landmarks?

7 Example Landmarks

8 Two Categories of Route Representations Relational: most popular graph-style of spatial memory support path-planning Associative: coupling sensing with localization good for retracing known paths

9 Relational Methods Represent world as graph or network of nodes and edges Nodes: represent gateways, landmarks, or goals Edges: represent a navigable path between two nodes; can also have additional information attached (e.g., direction, terrain type, behaviors needed to navigate the path)

10 Multi-Level Spatial Hierarchy (Byun & Kuipers) Metric: distances, directions, shapes in coordinate system Topological: connectivity Landmark definitions, procedural knowledge for traveling

11 Distinctive Place Approach Distinctive place: landmark that robot can detect from nearby region called neighborhood Once robot in the neighborhood, it uses sensors to position itself relative to the landmark local control strategy distinctive place Edge in the relational graph: local control strategy (lcs) Procedure for getting from current node to next node When landmark sensed, hill-climbing used to drive to desired relative position

12 Example of Distinctive Place

13 Example of Local Control Strategies Basic behavior: follow-hall Releasers: look-for-t, look-for-dead-end, look-for-door, lookfor-blue

14 Exercises Create a relational graph for this floorplan Label each edge with the appropriate LCS: mtd, fh Label each node with the type of gateway: de, t, r de3 fh Room 1r1 Room r22 mtd mtd t1 fh t2 fh t3 fh mtd mtd fh de2 r4 Room 3r3 Room 4 de1

15 Distinctive Places: Pros and Cons Advantages: Eliminates navigational errors at each node Robot can build up metric information over multiple trips, since error will average out Supports discovery of new landmarks Disadvantages: Difficult to find good distinctive places Either too numerous, and thus not locally unique Or, too few, and thus hard to find Difficult to define and learn local control strategies

16 Associate Methods Create a behavior that converts sensor observations into direction to go to reach a particular landmark Assume a location or landmark has: Perceptual stability: views from nearby locations look similar Perceptual distinguishability: views far away should look different Associative methods are similar to distinctive place neighborhoods Difference: associative methods use coarse computer vision

17 Visual Homing Partition image into coarse subsections (e.g., 16) Each section measured based on some attribute E.g., edge density, dominant edge orientation, average intensity, etc. Resulting measurements yield image signature Image signature forms a pattern If robot nearby, should be able to determine direction of motion to localize itself relative to the location Visual homing: the use of image signatures to direct robot to specific location

18 Example of Visual Homing

19 Example of Visual Homing (Con t.)

20 QualNav Levitt and Lawton Basic idea: localize robot relative to particular orientation region, or patch of the world Orientation region: Defined by landmark pair boundaries Similar to neighborhood Within an orientation region, all landmarks appear in same relationship Vehicle can directly perceive when it has entered a new orientation region

21 Example of Orientation Regions

22 Example of Orientation Regions (Con t.)

23 Orientation Region Allows robot to create outdoor topological map as it explores the world Allows robot to coarsely localize itself Robot does not have to estimate range to landmarks Using angles to each landmark, it can move to follow desired angles

24 Associative Methods: Pros and Cons Advantages: Tight coupling of sensing to homing Robot does not need to explicitly recognize what a landmark is Enables robots to build up maps as it explores Disadvantages: Require massive storage Brittle in presence of dynamic world when landmarks may be occluded or changed

25 Case Study I Case Study I: topological navigation in hybrid architecture Example of 1994 AAAI Mobile Robot Competition approach of Colorado School of Mines Competition: Given previously unavailable topological map, enable robot to navigate from room to room in test environment within 15 minutes

26 Assumption of the Task The robot is given its starting node, but it is not given the direction it is initially facing relative to the map The topological map is structurally correct, but does not necessarily represent if a corridor or door is blocked Each door is marked with a landmark (such as room number)

27 Path Planning Approach Map entered with 3 node types: Room (R), Hall (H), Foyer (F) Assumed that environment is orthogonal Edges between nodes: N, S, E, W Edges weighted: 3 for segment beginning in foyer, 2 for going from room to room, 1 otherwise Additional node type added: Hd: refers to hall to door connection Path planner eliminates unneeded nodes based on start and goal nodes, then plans shortest path using Dijkstra s single source shortest path

28

29 Map of the Environment

30 Abstract Navigation Behaviors To execute path, transition table defines abstract behaviors to be activated

31 Navigation Scripts Used to specify and carry out implied details in a modular and reusable way Navigate-door:

32 Navigation Scripts: Navigate-Hall

33 Navigation Scripts: Navigate-Foyer

34 How to Handle a Blocked Path? When robot detects a blocked condition: it triggers a moveto-goal behavior, which takes it back to the last known location it then updates the information on the map and generates a new plan

35 Case Study I: Lessons Learned Must build abstract navigation behaviors out of robust primitives Quality of the primitive behaviors is important Distance values between nodes can be different if traveling in different directions Metric distances might not be known for all nodes, making it difficult to apply Dijkstra s algorithm

36 Case Study II Topological map building in a behavior-based system Based on work of Mataric (1990) Robot, Toto: Designed using subsumption/behavior language Sensors: a ring of 12 sonar sensors Compass providing 4 bits of bearing

37 Low-Level Behaviors

38 Dynamic Landmark Detection Selection of landmarks Walls, corridors, junk Idea: allow robot to dynamically extract environmental features while it moves, and build up topological map based on features detected Landmark: Hypothesis with high degree of confidence Based only on sonar and compass readings Example landmark: Unilateral short sonar readings, coupled with consistent compass bearing, correspond to increased confidence in a wall landmark

39 Spatial Learning Landmarks stored in graph representation Data structure is linked list Connections determined based on adjacent landmarks Decentralized map representation; each node implemented in a distributed fashion

40 Learning a Map When landmark detected, type and compass bearing are broadcast to entire graph Initially, list of nodes is empty When a node receives a broadcast landmark, it compares its type, bearing and rough position to its own If no node reports a match, new landmark added to graph If match found: Either a loop has been found, or an error has occurred Estimated position is compared to robot s current rough position estimates If positions match within error bounds, assume path has looped

41 Example of Learned Map

42 Path Planning based upon Learned Map Path planning based on wave front propagation through graph Destination node propagates call to its neighbors Eventually, call reaches currently active node Robot travels in direction of wavefront

43 Case Study II: Lessons Learned Map building can be incorporated within subsumption methodology Globally consistent maps can be built in a distributed manner Coarse position estimates are sufficient to disambiguate landmarks in naturally occurring situations Global orientation estimates do not need to be precise or accurate, as long as they are locally consistent over time

44 Case Study III Combination of metric and topological mapping Pre-defined landmarks (e.g., doorways, hall openings, etc.) Build topological map of landmarks, connected with metric information

45 USC s Mapping Approach Example of landmarks detected:

46 USC s Mapping Approach (Con t.) Exploration strategy: Follow corridors Go to unexplored ends of nodes Mapping strategy: Detect and store topological features Correct odometry based on: Topological matches Orthogonality constraints

47 USC Mapping Results

48 Multi-Robot Mapping Experiments from USC

49 Summary of Topological Path Planning Landmarks Gateways Distinctive places Image signatures

50 Representational Issues for Behavioral Systems

Lecture 18: Voronoi Graphs and Distinctive States. Problem with Metrical Maps

Lecture 18: Voronoi Graphs and Distinctive States. Problem with Metrical Maps Lecture 18: Voronoi Graphs and Distinctive States CS 344R/393R: Robotics Benjamin Kuipers Problem with Metrical Maps Metrical maps are nice, but they don t scale. Storage requirements go up with the square

More information

Lecture 20: The Spatial Semantic Hierarchy. What is a Map?

Lecture 20: The Spatial Semantic Hierarchy. What is a Map? Lecture 20: The Spatial Semantic Hierarchy CS 344R/393R: Robotics Benjamin Kuipers What is a Map? A map is a model of an environment that helps an agent plan and take action. A topological map is useful

More information

ECE 497 Introduction to Mobile Robotics Spring 09-10

ECE 497 Introduction to Mobile Robotics Spring 09-10 Final Project: Localization and Map Making Lectures: 8-1 and 8-2 Reading: Ch. 11, Introduction to AI Robotics (Demonstrations due in class on Monday and Tuesday of Week 10) (Competition in Kahn room on

More information

Overview of the Navigation System Architecture

Overview of the Navigation System Architecture Introduction Robot navigation methods that do not explicitly represent uncertainty have severe limitations. Consider for example how commonly used navigation techniques utilize distance information. Landmark

More information

Probabilistic Robotics

Probabilistic Robotics Probabilistic Robotics Probabilistic Motion and Sensor Models Some slides adopted from: Wolfram Burgard, Cyrill Stachniss, Maren Bennewitz, Kai Arras and Probabilistic Robotics Book SA-1 Sensors for Mobile

More information

Robot Localization: Historical Context

Robot Localization: Historical Context Robot Localization: Historical Context Initially, roboticists thought the world could be modeled exactly Path planning and control assumed perfect, exact, deterministic world Reactive robotics (behavior

More information

Acquisition of Qualitative Spatial Representation by Visual Observation

Acquisition of Qualitative Spatial Representation by Visual Observation Acquisition of Qualitative Spatial Representation by Visual Observation Takushi Sogo Hiroshi Ishiguro Toru Ishida Department of Social Informatics, Kyoto University Kyoto 606-8501, Japan sogo@kuis.kyoto-u.ac.jp,

More information

Robotics. CSPP Artificial Intelligence March 10, 2004

Robotics. CSPP Artificial Intelligence March 10, 2004 Robotics CSPP 56553 Artificial Intelligence March 10, 2004 Roadmap Robotics is AI-complete Integration of many AI techniques Classic AI Search in configuration space (Ultra) Modern AI Subsumption architecture

More information

AND FOLLOWING. Tod S. Levitt, Daryl I. Lawton, David M. Chelberg, Philip C. Eelson. Advanced Decision Systems, Mountain View, California 94040

AND FOLLOWING. Tod S. Levitt, Daryl I. Lawton, David M. Chelberg, Philip C. Eelson. Advanced Decision Systems, Mountain View, California 94040 From: AAAI-87 Proceedings. Copyright 1987, AAAI (www.aaai.org). All rights reserved. QUALITATIVE LANDMARK-BASED AND FOLLOWING PAT PLANNING Tod S. Levitt, Daryl I. Lawton, David M. Chelberg, Philip C. Eelson

More information

Visually Augmented POMDP for Indoor Robot Navigation

Visually Augmented POMDP for Indoor Robot Navigation Visually Augmented POMDP for Indoor obot Navigation LÓPEZ M.E., BAEA., BEGASA L.M., ESCUDEO M.S. Electronics Department University of Alcalá Campus Universitario. 28871 Alcalá de Henares (Madrid) SPAIN

More information

Navigation and Metric Path Planning

Navigation and Metric Path Planning Navigation and Metric Path Planning October 4, 2011 Minerva tour guide robot (CMU): Gave tours in Smithsonian s National Museum of History Example of Minerva s occupancy map used for navigation Objectives

More information

Appearance-Based Place Recognition for Topological Localization

Appearance-Based Place Recognition for Topological Localization IEEE International Conference on Robotics and Automation, San Francisco, CA, April 2000, pp. 1023-1029. Best Vision Paper Award. Appearance-Based Place Recognition for Topological Localization Iwan Ulrich

More information

Introduction to Information Science and Technology (IST) Part IV: Intelligent Machines and Robotics Planning

Introduction to Information Science and Technology (IST) Part IV: Intelligent Machines and Robotics Planning Introduction to Information Science and Technology (IST) Part IV: Intelligent Machines and Robotics Planning Sören Schwertfeger / 师泽仁 ShanghaiTech University ShanghaiTech University - SIST - 10.05.2017

More information

EE631 Cooperating Autonomous Mobile Robots

EE631 Cooperating Autonomous Mobile Robots EE631 Cooperating Autonomous Mobile Robots Lecture 3: Path Planning Algorithm Prof. Yi Guo ECE Dept. Plan Representing the Space Path Planning Methods A* Search Algorithm D* Search Algorithm Representing

More information

A local area network that employs either a full mesh topology or partial mesh topology

A local area network that employs either a full mesh topology or partial mesh topology and Ad Hoc Networks Definition A local area network that employs either a full mesh topology or partial mesh topology Full mesh topology each node is connected directly to each of the others Partial mesh

More information

Map Learning and High-Speed Navigation in RHINO

Map Learning and High-Speed Navigation in RHINO Map Learning and High-Speed Navigation in RHINO Sebastian Thrun Arno Bücken Wolfram Burgard Dieter Fox Thorsten Fröhlinghaus Daniel Hennig Thomas Hofmann Michael Krell Timo Schmidt Institut für Informatik

More information

Sensor Modalities. Sensor modality: Different modalities:

Sensor Modalities. Sensor modality: Different modalities: Sensor Modalities Sensor modality: Sensors which measure same form of energy and process it in similar ways Modality refers to the raw input used by the sensors Different modalities: Sound Pressure Temperature

More information

Mobile Robots: An Introduction.

Mobile Robots: An Introduction. Mobile Robots: An Introduction Amirkabir University of Technology Computer Engineering & Information Technology Department http://ce.aut.ac.ir/~shiry/lecture/robotics-2004/robotics04.html Introduction

More information

Integrating multiple representations of spatial knowledge for mapping, navigation, and communication

Integrating multiple representations of spatial knowledge for mapping, navigation, and communication Integrating multiple representations of spatial knowledge for mapping, navigation, and communication Patrick Beeson Matt MacMahon Joseph Modayil Aniket Murarka Benjamin Kuipers Department of Computer Sciences

More information

Localization and Map Building

Localization and Map Building Localization and Map Building Noise and aliasing; odometric position estimation To localize or not to localize Belief representation Map representation Probabilistic map-based localization Other examples

More information

Simultaneous Localization and Mapping (SLAM)

Simultaneous Localization and Mapping (SLAM) Simultaneous Localization and Mapping (SLAM) RSS Lecture 16 April 8, 2013 Prof. Teller Text: Siegwart and Nourbakhsh S. 5.8 SLAM Problem Statement Inputs: No external coordinate reference Time series of

More information

Robot Mapping. Chapter 2

Robot Mapping. Chapter 2 11 Chapter 2 Robot Mapping Robot mapping is concerned with developing techniques that enable a mobile robot to construct and maintain a model of its environment based on spatial information gathered over

More information

Visual Topological Mapping

Visual Topological Mapping Visual Topological Mapping Karel Košnar, Tomáš Krajník, and Libor Přeučil The Gerstner Laboratory for Intelligent Decision Making and Control Department of Cybernetics, Faculty of Electrical Engineering

More information

Hierarchical Voronoi-based Route Graph Representations for Planning, Spatial Reasoning, and Communication

Hierarchical Voronoi-based Route Graph Representations for Planning, Spatial Reasoning, and Communication Hierarchical Voronoi-based Route Graph Representations for Planning, Spatial Reasoning, and Communication Jan Oliver Wallgrün 1 Abstract. In this paper we propose a spatial representation approach for

More information

Metric Planning: Overview

Metric Planning: Overview Also called quantitative planning Tries to find optimal path to goal Metric Planning: Overview As opposed to some path as per qualitative approach Usually plans path as series of subgoals (waypoints) Optimal/best

More information

Ad hoc and Sensor Networks Topology control

Ad hoc and Sensor Networks Topology control Ad hoc and Sensor Networks Topology control Goals of this chapter Networks can be too dense too many nodes in close (radio) vicinity This chapter looks at methods to deal with such networks by Reducing/controlling

More information

Simultaneous Localization

Simultaneous Localization Simultaneous Localization and Mapping (SLAM) RSS Technical Lecture 16 April 9, 2012 Prof. Teller Text: Siegwart and Nourbakhsh S. 5.8 Navigation Overview Where am I? Where am I going? Localization Assumed

More information

Robotics Navigation I: Bug Algorithms

Robotics Navigation I: Bug Algorithms Robotics Navigation I: Bug Algorithms Admin Any? Lab? Bug Algorithms Bug Algorithms Behavioral roboticists love(d) insects Simple behaviors easy to implement Complex emergent behaviors So first navigation

More information

Survey navigation for a mobile robot by using a hierarchical cognitive map

Survey navigation for a mobile robot by using a hierarchical cognitive map Survey navigation for a mobile robot by using a hierarchical cognitive map E.J. Pérez, A. Poncela, C. Urdiales, A. Bandera and F. Sandoval Departamento de Tecnología Electrónica, E.T.S.I. Telecomunicación

More information

Mobile robots control architectures

Mobile robots control architectures 1 Mobile robots control architectures Dimitri Popov Universität Hamburg Fakultät für Mathematik, Informatik und Naturwissenschaften Department Informatik Integriertes Seminar Intelligent Robotics 10 1.

More information

Today MAPS AND MAPPING. Features. process of creating maps. More likely features are things that can be extracted from images:

Today MAPS AND MAPPING. Features. process of creating maps. More likely features are things that can be extracted from images: MAPS AND MAPPING Features In the first class we said that navigation begins with what the robot can see. There are several forms this might take, but it will depend on: What sensors the robot has What

More information

A System for Bidirectional Robotic Pathfinding

A System for Bidirectional Robotic Pathfinding A System for Bidirectional Robotic Pathfinding Tesca K. Fitzgerald Department of Computer Science, Portland State University PO Box 751 Portland, OR 97207 USA tesca@cs.pdx.edu TR 12-02 November 2012 Abstract

More information

Routing protocols in WSN

Routing protocols in WSN Routing protocols in WSN 1.1 WSN Routing Scheme Data collected by sensor nodes in a WSN is typically propagated toward a base station (gateway) that links the WSN with other networks where the data can

More information

Incremental Robot Mapping with Fingerprints of Places

Incremental Robot Mapping with Fingerprints of Places Incremental Robot Mapping with Fingerprints of Places Adriana Tapus and Roland Siegwart Ecole Polytechnique Fédérale de Lausanne (EPFL) Autonomous Systems Lab 1015 Lausanne, Switzerland {Adriana.Tapus,

More information

Spring Localization II. Roland Siegwart, Margarita Chli, Martin Rufli. ASL Autonomous Systems Lab. Autonomous Mobile Robots

Spring Localization II. Roland Siegwart, Margarita Chli, Martin Rufli. ASL Autonomous Systems Lab. Autonomous Mobile Robots Spring 2016 Localization II Localization I 25.04.2016 1 knowledge, data base mission commands Localization Map Building environment model local map position global map Cognition Path Planning path Perception

More information

Learning Maps for Indoor Mobile Robot Navigation?

Learning Maps for Indoor Mobile Robot Navigation? Accepted for Publication in Artificial Intelligence Learning Maps for Indoor Mobile Robot Navigation? Sebastian Thrun Computer Science Department and Robotics Institute Carnegie Mellon University, Pittsburgh

More information

Chapter 7: Routing Dynamically. Routing & Switching

Chapter 7: Routing Dynamically. Routing & Switching Chapter 7: Routing Dynamically Routing & Switching The Evolution of Dynamic Routing Protocols Dynamic routing protocols used in networks since the late 1980s Newer versions support the communication based

More information

CSE-571 Robotics. Sensors for Mobile Robots. Beam-based Sensor Model. Proximity Sensors. Probabilistic Sensor Models. Beam-based Scan-based Landmarks

CSE-571 Robotics. Sensors for Mobile Robots. Beam-based Sensor Model. Proximity Sensors. Probabilistic Sensor Models. Beam-based Scan-based Landmarks Sensors for Mobile Robots CSE-57 Robotics Probabilistic Sensor Models Beam-based Scan-based Landmarks Contact sensors: Bumpers Internal sensors Accelerometers (spring-mounted masses) Gyroscopes (spinning

More information

Robotic Behaviors. Potential Field Methods

Robotic Behaviors. Potential Field Methods Robotic Behaviors Potential field techniques - trajectory generation - closed feedback-loop control Design of variety of behaviors - motivated by potential field based approach steering behaviors Closed

More information

Title: Survey navigation for a mobile robot by using a hierarchical cognitive map

Title: Survey navigation for a mobile robot by using a hierarchical cognitive map Title: Survey navigation for a mobile robot by using a hierarchical cognitive map Authors: Eduardo J. Pérez Alberto Poncela Cristina Urdiales Antonio Bandera Francisco Sandoval Contact Author: Affiliations:

More information

Complex behavior emergent from simpler ones

Complex behavior emergent from simpler ones Reactive Paradigm: Basics Based on ethology Vertical decomposition, as opposed to horizontal decomposition of hierarchical model Primitive behaviors at bottom Higher behaviors at top Each layer has independent

More information

Advanced Robotics Path Planning & Navigation

Advanced Robotics Path Planning & Navigation Advanced Robotics Path Planning & Navigation 1 Agenda Motivation Basic Definitions Configuration Space Global Planning Local Planning Obstacle Avoidance ROS Navigation Stack 2 Literature Choset, Lynch,

More information

Methods for Automatically Modeling and Representing As-built Building Information Models

Methods for Automatically Modeling and Representing As-built Building Information Models NSF GRANT # CMMI-0856558 NSF PROGRAM NAME: Automating the Creation of As-built Building Information Models Methods for Automatically Modeling and Representing As-built Building Information Models Daniel

More information

Stable Vision-Aided Navigation for Large-Area Augmented Reality

Stable Vision-Aided Navigation for Large-Area Augmented Reality Stable Vision-Aided Navigation for Large-Area Augmented Reality Taragay Oskiper, Han-Pang Chiu, Zhiwei Zhu Supun Samarasekera, Rakesh Teddy Kumar Vision and Robotics Laboratory SRI-International Sarnoff,

More information

Chapter 12. Mobile Robots

Chapter 12. Mobile Robots Chapter 12. Mobile Robots The Quest for Artificial Intelligence, Nilsson, N. J., 2009. Lecture Notes on Artificial Intelligence, Spring 2012 Summarized by Kim, Soo-Jin Biointelligence Laboratory School

More information

A Robot Exploration and Mapping Strategy Based on a Semantic Hierarchy of Spatial Representations Λ

A Robot Exploration and Mapping Strategy Based on a Semantic Hierarchy of Spatial Representations Λ A Robot Exploration and Mapping Strategy Based on a Semantic Hierarchy of Spatial Representations Λ Benjamin Kuipers and Yung-Tai Byun Department of Computer Sciences University of Texas at Austin Austin,

More information

Path Planning. Ioannis Rekleitis

Path Planning. Ioannis Rekleitis Path Planning Ioannis Rekleitis Outline Path Planning Visibility Graph Potential Fields Bug Algorithms Skeletons/Voronoi Graphs C-Space CSCE-574 Robotics 2 Mo+on Planning The ability to go from A to B

More information

Sensor technology for mobile robots

Sensor technology for mobile robots Laser application, vision application, sonar application and sensor fusion (6wasserf@informatik.uni-hamburg.de) Outline Introduction Mobile robots perception Definitions Sensor classification Sensor Performance

More information

EE795: Computer Vision and Intelligent Systems

EE795: Computer Vision and Intelligent Systems EE795: Computer Vision and Intelligent Systems Spring 2012 TTh 17:30-18:45 FDH 204 Lecture 14 130307 http://www.ee.unlv.edu/~b1morris/ecg795/ 2 Outline Review Stereo Dense Motion Estimation Translational

More information

Topological Mapping. Discrete Bayes Filter

Topological Mapping. Discrete Bayes Filter Topological Mapping Discrete Bayes Filter Vision Based Localization Given a image(s) acquired by moving camera determine the robot s location and pose? Towards localization without odometry What can be

More information

Robotics. Lecture 7: Simultaneous Localisation and Mapping (SLAM)

Robotics. Lecture 7: Simultaneous Localisation and Mapping (SLAM) Robotics Lecture 7: Simultaneous Localisation and Mapping (SLAM) See course website http://www.doc.ic.ac.uk/~ajd/robotics/ for up to date information. Andrew Davison Department of Computing Imperial College

More information

From Personal Computers to Personal Robots

From Personal Computers to Personal Robots From Personal Computers to Personal Robots Challenges in Computer Science Education Nikolaus Correll Department of Computer Science University of Colorado at Boulder Mechanism vs. Computer Unimate (1961)

More information

registration short-term maps map adaptation mechanism (see section 3.4) long-term map window of odometry error time sensor data mature map new map

registration short-term maps map adaptation mechanism (see section 3.4) long-term map window of odometry error time sensor data mature map new map Unifying Exploration, Localization, Navigation and Planning Through a Common Representation Alan C. Schultz, William Adams, Brian Yamauchi, and Mike Jones Navy Center for Applied Research in Articial Intelligence

More information

Towards a Generalization of Self-Localization

Towards a Generalization of Self-Localization Towards a Generalization of Self-Localization Diedrich Wolter 1 and Christian Freksa 1 and Longin Jan Latecki 2 1 SFB/TR 8, Universität Bremen {freksa,dwolter}@sfbtr8.uni-bremen.de 2 Temple University

More information

Why dynamic route? (1)

Why dynamic route? (1) Routing Why dynamic route? (1) Static route is ok only when Network is small There is a single connection point to other network No redundant route 2 Why dynamic route? (2) Dynamic Routing Routers update

More information

Motion Planning. Howie CHoset

Motion Planning. Howie CHoset Motion Planning Howie CHoset What is Motion Planning? What is Motion Planning? Determining where to go Overview The Basics Motion Planning Statement The World and Robot Configuration Space Metrics Algorithms

More information

MULTIVIEW REPRESENTATION OF 3D OBJECTS OF A SCENE USING VIDEO SEQUENCES

MULTIVIEW REPRESENTATION OF 3D OBJECTS OF A SCENE USING VIDEO SEQUENCES MULTIVIEW REPRESENTATION OF 3D OBJECTS OF A SCENE USING VIDEO SEQUENCES Mehran Yazdi and André Zaccarin CVSL, Dept. of Electrical and Computer Engineering, Laval University Ste-Foy, Québec GK 7P4, Canada

More information

ME-GY 6933 Advanced Mechatronics

ME-GY 6933 Advanced Mechatronics ME-GY 6933 Advanced Mechatronics PROJECT-2 MOHIT LALA (N12051916) SHWETA VAVIYA (N17038710) OBJECTIVE The aim of this stage is to model and develop a system of two robots that localize themselves in a

More information

Solid Modeling Lecture Series. Prof. Gary Wang Department of Mechanical and Manufacturing Engineering The University of Manitoba

Solid Modeling Lecture Series. Prof. Gary Wang Department of Mechanical and Manufacturing Engineering The University of Manitoba Solid Modeling 25.353 Lecture Series Prof. Gary Wang Department of Mechanical and Manufacturing Engineering The University of Manitoba Information complete, unambiguous, accurate solid model Solid Modeling

More information

CS 4758 Robot Navigation Through Exit Sign Detection

CS 4758 Robot Navigation Through Exit Sign Detection CS 4758 Robot Navigation Through Exit Sign Detection Aaron Sarna Michael Oleske Andrew Hoelscher Abstract We designed a set of algorithms that utilize the existing corridor navigation code initially created

More information

ECE276B: Planning & Learning in Robotics Lecture 5: Configuration Space

ECE276B: Planning & Learning in Robotics Lecture 5: Configuration Space ECE276B: Planning & Learning in Robotics Lecture 5: Configuration Space Lecturer: Nikolay Atanasov: natanasov@ucsd.edu Teaching Assistants: Tianyu Wang: tiw161@eng.ucsd.edu Yongxi Lu: yol070@eng.ucsd.edu

More information

Outline Sensors. EE Sensors. H.I. Bozma. Electric Electronic Engineering Bogazici University. December 13, 2017

Outline Sensors. EE Sensors. H.I. Bozma. Electric Electronic Engineering Bogazici University. December 13, 2017 Electric Electronic Engineering Bogazici University December 13, 2017 Absolute position measurement Outline Motion Odometry Inertial systems Environmental Tactile Proximity Sensing Ground-Based RF Beacons

More information

Ad hoc and Sensor Networks Chapter 10: Topology control

Ad hoc and Sensor Networks Chapter 10: Topology control Ad hoc and Sensor Networks Chapter 10: Topology control Holger Karl Computer Networks Group Universität Paderborn Goals of this chapter Networks can be too dense too many nodes in close (radio) vicinity

More information

Roadmaps. Vertex Visibility Graph. Reduced visibility graph, i.e., not including segments that extend into obstacles on either side.

Roadmaps. Vertex Visibility Graph. Reduced visibility graph, i.e., not including segments that extend into obstacles on either side. Roadmaps Vertex Visibility Graph Full visibility graph Reduced visibility graph, i.e., not including segments that extend into obstacles on either side. (but keeping endpoints roads) what else might we

More information

Wilfong 1990), robots typically are Turing-equivalent (carrying general purpose computers on board). Some models allow the robot to carry pebbles to d

Wilfong 1990), robots typically are Turing-equivalent (carrying general purpose computers on board). Some models allow the robot to carry pebbles to d Many Looks Before a Leap Xiaotie Deng 1, Evangelos Milios 2, Andy Mirzaian 3 1 Department of Computer Science, City University of Hong Kong Kowloon, Hong Kong 2 Department of Computer Science, York University

More information

Segmentation and Tracking of Partial Planar Templates

Segmentation and Tracking of Partial Planar Templates Segmentation and Tracking of Partial Planar Templates Abdelsalam Masoud William Hoff Colorado School of Mines Colorado School of Mines Golden, CO 800 Golden, CO 800 amasoud@mines.edu whoff@mines.edu Abstract

More information

DISTRIBUTED COMPUTER SYSTEMS ARCHITECTURES

DISTRIBUTED COMPUTER SYSTEMS ARCHITECTURES DISTRIBUTED COMPUTER SYSTEMS ARCHITECTURES Dr. Jack Lange Computer Science Department University of Pittsburgh Fall 2015 Outline System Architectural Design Issues Centralized Architectures Application

More information

CS 4758: Automated Semantic Mapping of Environment

CS 4758: Automated Semantic Mapping of Environment CS 4758: Automated Semantic Mapping of Environment Dongsu Lee, ECE, M.Eng., dl624@cornell.edu Aperahama Parangi, CS, 2013, alp75@cornell.edu Abstract The purpose of this project is to program an Erratic

More information

Kapitel 5: Mobile Ad Hoc Networks. Characteristics. Applications of Ad Hoc Networks. Wireless Communication. Wireless communication networks types

Kapitel 5: Mobile Ad Hoc Networks. Characteristics. Applications of Ad Hoc Networks. Wireless Communication. Wireless communication networks types Kapitel 5: Mobile Ad Hoc Networks Mobilkommunikation 2 WS 08/09 Wireless Communication Wireless communication networks types Infrastructure-based networks Infrastructureless networks Ad hoc networks Prof.

More information

The Caboto Project....born in Venice, went to Britain to navigate... Emanuele Menegatti

The Caboto Project....born in Venice, went to Britain to navigate... Emanuele Menegatti The Caboto Project...born in Venice, went to Britain to navigate... Emanuele Menegatti MSc in Artificial Intelligence Division of Informatics University of Edinburgh 2000 Abstract This dissertation describes

More information

Advanced Techniques for Mobile Robotics Bag-of-Words Models & Appearance-Based Mapping

Advanced Techniques for Mobile Robotics Bag-of-Words Models & Appearance-Based Mapping Advanced Techniques for Mobile Robotics Bag-of-Words Models & Appearance-Based Mapping Wolfram Burgard, Cyrill Stachniss, Kai Arras, Maren Bennewitz Motivation: Analogy to Documents O f a l l t h e s e

More information

Introduction to Mobile Ad hoc Networks (MANETs)

Introduction to Mobile Ad hoc Networks (MANETs) Introduction to Mobile Ad hoc Networks (MANETs) 1 Overview of Ad hoc Network Communication between various devices makes it possible to provide unique and innovative services. Although this inter-device

More information

Draft Notes 1 : Scaling in Ad hoc Routing Protocols

Draft Notes 1 : Scaling in Ad hoc Routing Protocols Draft Notes 1 : Scaling in Ad hoc Routing Protocols Timothy X Brown University of Colorado April 2, 2008 2 Introduction What is the best network wireless network routing protocol? This question is a function

More information

A Gradient Method for Realtime Robot Control Kurt Konolige SRI International 333 Ravenswood Avenue Menlo Park, CA USA

A Gradient Method for Realtime Robot Control Kurt Konolige SRI International 333 Ravenswood Avenue Menlo Park, CA USA A Gradient Method for Realtime Robot Control Kurt Konolige SRI International 333 Ravenswood Avenue Menlo Park, CA 94025 USA konolige@ai.sri.com Abstract Despite many decades of research into mobile robot

More information

Module 8. Routing. Version 2 ECE, IIT Kharagpur

Module 8. Routing. Version 2 ECE, IIT Kharagpur Module 8 Routing Lesson 27 Routing II Objective To explain the concept of same popular routing protocols. 8.2.1 Routing Information Protocol (RIP) This protocol is used inside our autonomous system and

More information

KNOWLEDGE ARCHITECTURE FOR ENVIRONMENT REPRESENTATION IN AUTONOMOUS AGENTS

KNOWLEDGE ARCHITECTURE FOR ENVIRONMENT REPRESENTATION IN AUTONOMOUS AGENTS KNOWLEDGE ARCHITECTURE FOR ENVIRONMENT REPRESENTATION IN AUTONOMOUS AGENTS Dario Maio, Stefano Rizzi DEIS - Facoltà di Ingegneria, Università di Bologna, Italy dmaio@deis.unibo.it, srizzi@deis.unibo.it

More information

Fairness Example: high priority for nearby stations Optimality Efficiency overhead

Fairness Example: high priority for nearby stations Optimality Efficiency overhead Routing Requirements: Correctness Simplicity Robustness Under localized failures and overloads Stability React too slow or too fast Fairness Example: high priority for nearby stations Optimality Efficiency

More information

Robot Motion Planning

Robot Motion Planning Robot Motion Planning James Bruce Computer Science Department Carnegie Mellon University April 7, 2004 Agent Planning An agent is a situated entity which can choose and execute actions within in an environment.

More information

Uncertainties: Representation and Propagation & Line Extraction from Range data

Uncertainties: Representation and Propagation & Line Extraction from Range data 41 Uncertainties: Representation and Propagation & Line Extraction from Range data 42 Uncertainty Representation Section 4.1.3 of the book Sensing in the real world is always uncertain How can uncertainty

More information

CS 354R: Computer Game Technology

CS 354R: Computer Game Technology CS 354R: Computer Game Technology A* Heuristics Fall 2018 A* Search f(n): The current best estimate for the best path through a node: f(n)=g(n)+h(n) g(n): current known best cost for getting to a node

More information

Mobile Robot Mapping and Localization in Non-Static Environments

Mobile Robot Mapping and Localization in Non-Static Environments Mobile Robot Mapping and Localization in Non-Static Environments Cyrill Stachniss Wolfram Burgard University of Freiburg, Department of Computer Science, D-790 Freiburg, Germany {stachnis burgard @informatik.uni-freiburg.de}

More information

UAV Autonomous Navigation in a GPS-limited Urban Environment

UAV Autonomous Navigation in a GPS-limited Urban Environment UAV Autonomous Navigation in a GPS-limited Urban Environment Yoko Watanabe DCSD/CDIN JSO-Aerial Robotics 2014/10/02-03 Introduction 2 Global objective Development of a UAV onboard system to maintain flight

More information

Semantics in Human Localization and Mapping

Semantics in Human Localization and Mapping Semantics in Human Localization and Mapping Aidos Sarsembayev, Antonio Sgorbissa University of Genova, Dept. DIBRIS Via Opera Pia 13, 16145 Genova, Italy aidos.sarsembayev@edu.unige.it, antonio.sgorbissa@unige.it

More information

Robot Mapping. SLAM Front-Ends. Cyrill Stachniss. Partial image courtesy: Edwin Olson 1

Robot Mapping. SLAM Front-Ends. Cyrill Stachniss. Partial image courtesy: Edwin Olson 1 Robot Mapping SLAM Front-Ends Cyrill Stachniss Partial image courtesy: Edwin Olson 1 Graph-Based SLAM Constraints connect the nodes through odometry and observations Robot pose Constraint 2 Graph-Based

More information

The Spatial Semantic Hierarchy

The Spatial Semantic Hierarchy The Spatial Semantic Hierarchy Benjamin Kuipers y February 18, 2000 This work has taken place in the Qualitative Reasoning Group at the Artificial Intelligence Laboratory, The University of Texas at Austin.

More information

Location-Based Services & Route Planning

Location-Based Services & Route Planning Praktikum Mobile und Verteilte Systeme Location-Based Services & Route Planning Prof. Dr. Claudia Linnhoff-Popien André Ebert, Sebastian Feld http://www.mobile.ifi.lmu.de WS 2017/18 Praktikum Mobile und

More information

OSPF Protocol Overview on page 187. OSPF Standards on page 188. OSPF Area Terminology on page 188. OSPF Routing Algorithm on page 190

OSPF Protocol Overview on page 187. OSPF Standards on page 188. OSPF Area Terminology on page 188. OSPF Routing Algorithm on page 190 Chapter 17 OSPF Protocol Overview The Open Shortest Path First (OSPF) protocol is an interior gateway protocol (IGP) that routes packets within a single autonomous system (AS). OSPF uses link-state information

More information

Exploiting Local Perceptual Models for Topological Map-Building

Exploiting Local Perceptual Models for Topological Map-Building Exploiting Local Perceptual Models for Topological Map-Building Patrick Beeson Matt MacMahon Joseph Modayil Jefferson Provost Francesco Savelli Benjamin Kuipers Intelligent Robotics Lab Department of Computer

More information

Source-Route Bridging

Source-Route Bridging 25 CHAPTER Chapter Goals Describe when to use source-route bridging. Understand the difference between SRB and transparent bridging. Know the mechanism that end stations use to specify a source-route.

More information

Exploiting Local Perceptual Models for Topological Map-Building

Exploiting Local Perceptual Models for Topological Map-Building Exploiting Local Perceptual Models for Topological Map-Building Patrick Beeson Matt MacMahon Joseph Modayil Jefferson Provost Francesco Savelli Benjamin Kuipers Intelligent Robotics Lab Department of Computer

More information

Robot Motion Control Matteo Matteucci

Robot Motion Control Matteo Matteucci Robot Motion Control Open loop control A mobile robot is meant to move from one place to another Pre-compute a smooth trajectory based on motion segments (e.g., line and circle segments) from start to

More information

STRAW - An integrated mobility & traffic model for vehicular ad-hoc networks

STRAW - An integrated mobility & traffic model for vehicular ad-hoc networks STRAW - An integrated mobility & traffic model for vehicular ad-hoc networks David R. Choffnes & Fabián E. Bustamante Department of Computer Science, Northwestern University www.aqualab.cs.northwestern.edu

More information

Localization, Where am I?

Localization, Where am I? 5.1 Localization, Where am I?? position Position Update (Estimation?) Encoder Prediction of Position (e.g. odometry) YES matched observations Map data base predicted position Matching Odometry, Dead Reckoning

More information

Introduction to SLAM Part II. Paul Robertson

Introduction to SLAM Part II. Paul Robertson Introduction to SLAM Part II Paul Robertson Localization Review Tracking, Global Localization, Kidnapping Problem. Kalman Filter Quadratic Linear (unless EKF) SLAM Loop closing Scaling: Partition space

More information

Computational Foundations of Cognitive Science

Computational Foundations of Cognitive Science Computational Foundations of Cognitive Science Lecture 16: Models of Object Recognition Frank Keller School of Informatics University of Edinburgh keller@inf.ed.ac.uk February 23, 2010 Frank Keller Computational

More information

Path Planning for the Cye Personal Robot

Path Planning for the Cye Personal Robot Path Planning for the Cye Personal Robot Parag H. Batavia Illah Nourbakhsh Carnegie Mellon University Robotics Institute Pittsburgh, PA [parag/illah]@ri.cmu.edu Abstract In this paper, we describe the

More information

EE565:Mobile Robotics Lecture 3

EE565:Mobile Robotics Lecture 3 EE565:Mobile Robotics Lecture 3 Welcome Dr. Ahmad Kamal Nasir Today s Objectives Motion Models Velocity based model (Dead-Reckoning) Odometry based model (Wheel Encoders) Sensor Models Beam model of range

More information

CS 664 Segmentation. Daniel Huttenlocher

CS 664 Segmentation. Daniel Huttenlocher CS 664 Segmentation Daniel Huttenlocher Grouping Perceptual Organization Structural relationships between tokens Parallelism, symmetry, alignment Similarity of token properties Often strong psychophysical

More information

Chapter 9 Object Tracking an Overview

Chapter 9 Object Tracking an Overview Chapter 9 Object Tracking an Overview The output of the background subtraction algorithm, described in the previous chapter, is a classification (segmentation) of pixels into foreground pixels (those belonging

More information

Modeling Robot Path Planning with CD++

Modeling Robot Path Planning with CD++ Modeling Robot Path Planning with CD++ Gabriel Wainer Department of Systems and Computer Engineering. Carleton University. 1125 Colonel By Dr. Ottawa, Ontario, Canada. gwainer@sce.carleton.ca Abstract.

More information