SlideShare una empresa de Scribd logo
1 de 9
Descargar para leer sin conexión
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 15
A Novel Wall Following Algorithm For Mobile Robots
Min Raj Nepali nminraj92@gmail.com
Research Associate
Nitte Meenakshi Institute of Technology
Bangalore, 560064,India
Nishesh Yadav hiddenshadowy@gmail.com
Final Year Bachelors,EEE
Nitte Meenakshi Institute of Technology
Bangalore, 560064,India
Dubey Aditya Housila Prasad adityad031@gmail.com
Research Associate
Nitte Meenakshi Institute of Technology
Bangalore, 560064,India
Susheel Balasubramaniam susheels88@gmail.com
Research Associate
Nitte Meenakshi Institute of Technology
Bangalore, 560064,India
Venkatesh EN venkateshen1@gmail.com
Research Associate
Nitte Meenakshi Institute of Technology
Bangalore, 560064,India
Ashutosh ashu.studsat@gmail.com
Research Associate
Nitte Meenakshi Institute of Technology
Bangalore, 560064,India
Abstract
This paper presents how a mobile robot can be directed to follow a wall using 2D data obtained
with the help of a laser range finder. The robot is controlled using a simple kinematic controller
and the controller is embedded in NXP LPC1768 microcontroller. The controller guides the robot
to follow the wall along the required direction while maintaining a constant distance from the wall.
The data obtained from the laser range finder is analyzed and processed to generate signals to
control the speed as well as orientation of the robot. Implementation results show that the
proposed algorithm controls the robot to follow walls, detecting the edges and corners
successfully.
Keywords: Kinematic Controller, 2D Laser Range Finder, Autonomous Mobile Robot, Edge
Detection, Corner Detection, wall Following.
1. INTRODUCTION
Autonomy has become a key concept in mobile robot navigation to complete desired task
efficiently and with least human intuition. Mobile robots have numerous applications in various
fields like space exploration, defence, education, etc. Considering different applications the robots
should be incorporated with various algorithms like path planning, obstacle avoidance, etc. Wall
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 16
following is one of those algorithms which is to be implemented to make the robot autonomous. In
this experiment laser range finder was used to map the environment and later on that information
was used to navigate the robot and follow the wall accordingly. The perceived environment was
classified as edges and corners based on different features and the robot was duly driven.
Extensive research has been performed in the area of mobile robots and their applications.
A wall following method presented in [1] [2] uses IR sensors and divides the environment into a
number of cells representing the wall as set of lines, points, etc. Another wall following algorithm
presented in [3] [4] uses image processing to extract features like edges and corners after
capturing the images or videos through a camera by using background subtraction method which
later on is fed to control systems to drive the robot. Visual servoing was implemented to track and
follow the wall using camera. In [5] [6] SONAR is used to perceive the environment and a Fuzzy
logic controller is implemented to control the robot. Fuzzy logic controllers prove to be one of the
best controllers since they represent real world knowledge and handle real world uncertainties so
adeptly[7] [8].The paper [9] proposes a robust model to avoid obstacles which is further optimized
to achieve wall following task by using a suitable neural controller. The sensors used to obtain
information from the environment were sonar sensors.
The three important questions that have to be countered by the robot are (Where I am, Where to
go, and how to go). To answer these questions correctly the robot has to have precise knowledge
regarding the environment. The robot then should adjust itself relatively to the environment.
2. ROBOT MODEL
FIGURE 1: Showing the relationship between Global frame and Robot body Frame.
Throughout the experiment the robot was considered a rigid body on wheels moving on a plane
surface. In order to postulate the position of the robot on the plane we create a relation between
the global reference frame of the plane and the local reference frame of the robot, as in figure
above. The axes X and Y define a random inertial basis on the plane as the global reference
frame or the origin. To specify the position of the robot, we choose a point O on the robot chassis
as its position reference point. The basis {x, y} defines two axes relative to O on the robot chassis
and is thus the robot’s local reference frame. The position of the robot O in the global reference
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 17
frame is specified by coordinates x and y, and the angular variation between the global and local
reference frames is given by ‘α’. We can describe the pose of the robot as a vector with these
three elements.
XY
x
O y

 
   
  
To describe robot motion in terms of component motions, it will be compulsory to map motion
along the axes of the global reference frame to motion along the axes of the robot’s local
reference frame. Of course, the mapping is a function of the current pose of the robot. This
mapping is achieved by orthogonal rotation matrix:
cos sin 0
( ) sin cos 0
0 0 1
R
 
  
 
   
  
This matrix can be used to map motion in the global reference frame {x, y} to motion in terms of
the local reference frame{x, y}.
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 18
3. DEVELOPMENT OF THE ALGORITHM
START
SET MINIMUM DISTANCE
TO BE MAINTAINED FROM
THE WALL
START SCANING
CHECK THE
MINIMUM
DISTANCE
KEEP FOLLOWING THE
WALL
GENERATE VELOCITY FOR
LEFT AND RIGHT WHEEL
TO MAINTAIN THE
MINIMUM DISTANCE
EDGE OF THE
WALL
DETECTED
FOLLOW THE WALL
CORNER
DETECTED
TURN AROUND THE
CORNER
Y
Y N
Y
N
N
FIGURE 2: Flow diagram of the controller.
The model assumes there is always a wall present somewhere in the range of the laser range
scanner. The wall is perceived as a 2D plane. The wall detected is classified as edges and
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 19
corners based on different features. Segmentation, split and merge techniques may also be
employed to classify the wall or to extract different features related to the wall. As far as the edge
is considered the controller generates linear velocity but as soon as a corner is detected the
controller generates angular velocity such that the robot is just able to tackle the corner. The laser
is mounted in the robot such that the axes of the robot and the axes of the laser coincide. The
laser scanner provides us with the distance between the wall and the reference point. Here the
reference point is considered as the point where the laser range finder is mounted. The distance
obtained from the laser range finder is resolved in its respective x component, y component and
an angle from which exact location of the robot is obtained.
The object O mounted on the top of the robot R is the laser range finder. It is clearly visible that both the
axes of robot and the laser are same. As shown in the figure the point P which is part of the wall is being
resolved into PS and PQ as y and x component respectively. The robot will always try to maintain minimum
distance with the wall and always try to orient PS perpendicular to the wall.
4. CONTROLLER IMPLEMENTATION
The laser range scanner scans the environment. The scanner has capability to scan a range of 270 degrees
that is from -135 to +135 as shown in the figure. The angular resolution is set to 0.5, which implies that in
one scan time the laser outputs a bulk of 541 data. In this experiment two zones of 45 degrees were
considered that is from -135 to -90 degrees and 135 to 90 degrees.
FIGURE 3: Robot position with respect to wall.
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 20
.
FIGURE 4: Scan range of LMS 100.
The controller is designed in such a way that it particularly takes two cases into consideration. If
the wall is present on the left side of the robot, the scanned data corresponding from 135 to 90 is
taken into consideration for controlling the motion of the robot. If the wall is present on the right
side of the robot the scanned data corresponding from -135 to -90 is taken into consideration for
controlling the motion of the robot. The controller implemented here is simple kinematic controller,
which is capable of generating sufficient angular and linear velocities to drive the robot in a proper
way. A threshold distance (dth ) is defined for the robot to maintain while following the wall. If
distance between the robot and wall is greater than the threshold distance the robot is driven
towards the wall and vice-versa. The controller may be described as follows:
Where,
V=linear velocity generated
W=angular velocity generated
K_V=velocity error gain
K_d=distance error gain
K_t=theta error gain
dperp =perpendicular or minimum distance to be maintained while following the wall
derror =error in distance
aerror =error in angle
5. EXPERIMENTAL SETUP AND RESULTS
A series of experiments were conducted to ensure the controller works precisely. The gain values were
determined by trial and error and the whole experiment was carried out in an indoor environment. The
mobile robot was made to follow a series of walls and the performance of the controller was observed. The
result shows that the laser is being able to detect the edges and corners successfully. After detecting the
edges and corners respective control signals are being generated with the help of which the controller is
driving the robot by passing down the control signals to the motors. The controller was experimentally shown
to work and the series of walls were successfully followed.
V W 
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 21
FIGURE 5: Model of LMS 100.
(a) (b)
(c) (d)
(e) (f)
(g) (h)
(i) (j)
FIGURE 6: Experimental results (a) to (j) depicting the detection of edge and corner and maneuvering the
robot accordingly.
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 22
6. CONCLUSION AND FUTURE SCOPE
Mobile robots are capable to move around in their surrounding location and are not fixed to one location
when tasks like navigation, survey, etc are considered. An autonomous robot knows some facts about
where it is and how to reach various goals and or waypoints lying on its way. "Localization" or knowledge of
its current position is obtained with the help of one or more means, using sensors such motor encoders,
vision, lasers and global positioning systems. A novel wall following algorithm for mobile robots equipped
with a 2D laser range finder has been presented. In this implementation, two cases i.e., if the left wall is
present and if the right wall is present were taken into consideration. In scenarios such as if a sharp corner
is present right in front of the robot; further expansion to the algorithm is required. However, the mobile robot
was experimentally shown to reliably follow a series of walls given the constraints mentioned above. In an
unknown environment it is easy for a robot to navigate, if it can find wall like structures and follow it. Wall
following method would better help robot rather than path following if structures like wall are present in the
unknown environment. It happens in many cases like underground, underwater, etc wall like structures are
present and by making use of them wall following robot can easily navigate through the environment due to
which the robot gains more autonomy. This kind of autonomous algorithms can be incorporated with SLAM.
It would be easier to carry out the SLAM if the robot be totally autonomous. Wall follow algorithm may
perform extremely well if it is carried along with mapping. From mapping we can easily obtain edges and
corners of the wall and make robot to follow accordingly.
7. REFERENCES
[1] P. Van Turennout, G. Honder d, L. J. vanSchelven, Wall-following control of a Mobile Robot,
IEEE, International Confer ence onRobotics and Automation, pp. 280-285, May,1992.
[2] J. Borenstein, Y. Kor en, The Vector Field Histogram – Fast Obstacle Avoidance for Mobile
Robots, IEEE Transaction on Robotics and Automation, Vol. 7, No. 3, pp. 278-288, June,1991.
[3] R. Frizera Vassallo, H. J. Schneebeli, J. SantosVictor, Visual navigation: combining visual
servoing and appearance based methods,Proceedings of the International Symposium
onIntelligent Robotic Systems, SIRS”98,Edinburgh, Scotland, July, 1998.
[4] Francisco Bonin-Font, Alberto Ortiz, Gabriel Oliver, Visual Navigation for MobileRobots: A Survey.
2008.
[5] R. Carelli and E. Freire, “Stable Corridor Navigation Controller for Sonar-Based Mobile Robots,”
Technical Report, INAW, Universidad Nacional de San Juan, San Juan, 2001.
[6] D. Ratner and P. McKerrow,“Navigation an Outdoor Robot along Continuous Landmarks with
Ultrasonic Sen- sing,” Robotics and Autonomous Systems, Vol. 45, No. 1, 2003, pp. 73-82.
doi:10.1016/S0921-8890(03)00096-4.
[7] R. Malhotra and A. Sarkar, “Development of a Fuzzy Logic Based Mobile Robot for Dynamic Obstacle
Avoidance and Goal Acquisition in an Unstructured Enviroment,” IEEE/ASME Proceeding of
International Conference on Advanced Intelligent Mechatronics, Kobe, 20- 24 July 2003, pp. 235-247.
[8] P. M. Peri, “Fuzzy Logic Controller for an Autonomous Mobile Robot,” Master Thesis, Cleveland State
University, Cleveland, 2005.
[9] R. Braunsting, J. Mujika and J. P. Uribe, “A Wall Fol- lowing Robot with a Fuzzy Logic Controller
Optimized by a Genetic Algorithm,” Fuzzy Systems, Vol. 5, 1995, pp. 77-82.
[10] M. Ergezer, “Multivariable Control Method for Wall Tracking Robot,” Project Paper,Department of
Electrical and Computer Engineering, Cleveland State University, Cleveland, 2006.
[11] R. Benporad, M. Di Marco and A. Tesi, “Wall-Following Controller for Sonar-Based Mobile Robots,”
Proceeding of IEEE Conference on Decision and Control, San Diego, 10-12 December 1997, pp.
3063-3068.
[12] Specifications and Operating Commands for SICK LMS100 Laser Range Finder. Can be found on
www.sick-automation.ru/images/File/pdf/DIV05/LMS100_manual.pdf.
Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN &
Ashutosh
International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 23
[13] R. Clark, A. El-Oser y, K. Wedeward and S.Bruder, A Navigation and Obstacle Avoidance
Algorithm for Mobile Robots Operating inUnknown, Maze-Type Environments, Proc.International
Test and Evaluation AssociationWorkshop on Modeling and Simulation, LasCruces, NM,
December 2004.

Más contenido relacionado

La actualidad más candente

Visual Odometry using Stereo Vision
Visual Odometry using Stereo VisionVisual Odometry using Stereo Vision
Visual Odometry using Stereo Vision
RSIS International
 
Solar cell powering with integrated global positioning system for
Solar cell powering with integrated global positioning system forSolar cell powering with integrated global positioning system for
Solar cell powering with integrated global positioning system for
Alexander Decker
 
Image segmentation methods for brain mri images
Image segmentation methods for brain mri imagesImage segmentation methods for brain mri images
Image segmentation methods for brain mri images
eSAT Journals
 
A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...
A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...
A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...
toukaigi
 

La actualidad más candente (19)

Visual Odometry using Stereo Vision
Visual Odometry using Stereo VisionVisual Odometry using Stereo Vision
Visual Odometry using Stereo Vision
 
Modelling of walking humanoid robot with capability of floor detection and dy...
Modelling of walking humanoid robot with capability of floor detection and dy...Modelling of walking humanoid robot with capability of floor detection and dy...
Modelling of walking humanoid robot with capability of floor detection and dy...
 
Solar cell powering with integrated global positioning system for
Solar cell powering with integrated global positioning system forSolar cell powering with integrated global positioning system for
Solar cell powering with integrated global positioning system for
 
PPT s12-machine vision-s2
PPT s12-machine vision-s2PPT s12-machine vision-s2
PPT s12-machine vision-s2
 
Ijecet 06 10_003
Ijecet 06 10_003Ijecet 06 10_003
Ijecet 06 10_003
 
Object tracking with SURF: ARM-Based platform Implementation
Object tracking with SURF: ARM-Based platform ImplementationObject tracking with SURF: ARM-Based platform Implementation
Object tracking with SURF: ARM-Based platform Implementation
 
Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme
 
Occlusion and Abandoned Object Detection for Surveillance Applications
Occlusion and Abandoned Object Detection for Surveillance ApplicationsOcclusion and Abandoned Object Detection for Surveillance Applications
Occlusion and Abandoned Object Detection for Surveillance Applications
 
Various object detection and tracking methods
Various object detection and tracking methodsVarious object detection and tracking methods
Various object detection and tracking methods
 
Camera calibration technique
Camera calibration techniqueCamera calibration technique
Camera calibration technique
 
Insect inspired hexapod robot for terrain navigation
Insect inspired hexapod robot for terrain navigationInsect inspired hexapod robot for terrain navigation
Insect inspired hexapod robot for terrain navigation
 
Image segmentation methods for brain mri images
Image segmentation methods for brain mri imagesImage segmentation methods for brain mri images
Image segmentation methods for brain mri images
 
Performance Evaluation of Image Edge Detection Techniques
Performance Evaluation of Image Edge Detection Techniques Performance Evaluation of Image Edge Detection Techniques
Performance Evaluation of Image Edge Detection Techniques
 
Pd3426592664
Pd3426592664Pd3426592664
Pd3426592664
 
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
 
Object extraction using edge, motion and saliency information from videos
Object extraction using edge, motion and saliency information from videosObject extraction using edge, motion and saliency information from videos
Object extraction using edge, motion and saliency information from videos
 
A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...
A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...
A Fast Laser Motion Detection and Approaching Behavior Monitoring Method for ...
 
The information and mutual information ration for counting image features and...
The information and mutual information ration for counting image features and...The information and mutual information ration for counting image features and...
The information and mutual information ration for counting image features and...
 
Overview Of Video Object Tracking System
Overview Of Video Object Tracking SystemOverview Of Video Object Tracking System
Overview Of Video Object Tracking System
 

Similar a A Novel Wall Following Algorithm For Mobile Robots

DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM
DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM
DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM
NITISH K
 
Control of a Movable Robot Head Using Vision-Based Object Tracking
Control of a Movable Robot Head Using Vision-Based Object TrackingControl of a Movable Robot Head Using Vision-Based Object Tracking
Control of a Movable Robot Head Using Vision-Based Object Tracking
IJECEIAES
 
Design and implementation of path planning algorithm for wheeled mobile robot...
Design and implementation of path planning algorithm for wheeled mobile robot...Design and implementation of path planning algorithm for wheeled mobile robot...
Design and implementation of path planning algorithm for wheeled mobile robot...
eSAT Journals
 

Similar a A Novel Wall Following Algorithm For Mobile Robots (20)

Wall follower autonomous robot development applying fuzzy incremental controller
Wall follower autonomous robot development applying fuzzy incremental controllerWall follower autonomous robot development applying fuzzy incremental controller
Wall follower autonomous robot development applying fuzzy incremental controller
 
Design of Mobile Robot Navigation system using SLAM and Adaptive Tracking Con...
Design of Mobile Robot Navigation system using SLAM and Adaptive Tracking Con...Design of Mobile Robot Navigation system using SLAM and Adaptive Tracking Con...
Design of Mobile Robot Navigation system using SLAM and Adaptive Tracking Con...
 
K017655963
K017655963K017655963
K017655963
 
Novel Navigation Strategy Study on Autonomous Mobile Robots
Novel Navigation Strategy Study on Autonomous Mobile RobotsNovel Navigation Strategy Study on Autonomous Mobile Robots
Novel Navigation Strategy Study on Autonomous Mobile Robots
 
A350111
A350111A350111
A350111
 
Insect inspired hexapod robot for terrain navigation
Insect inspired hexapod robot for terrain navigationInsect inspired hexapod robot for terrain navigation
Insect inspired hexapod robot for terrain navigation
 
Stairs Detection Algorithm for Tri-Star Wheeled Robot and Experimental Valida...
Stairs Detection Algorithm for Tri-Star Wheeled Robot and Experimental Valida...Stairs Detection Algorithm for Tri-Star Wheeled Robot and Experimental Valida...
Stairs Detection Algorithm for Tri-Star Wheeled Robot and Experimental Valida...
 
DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM
DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM
DESIGN AND IMPLEMENTATION OF PATH PLANNING ALGORITHM
 
22 vol64no3
22 vol64no322 vol64no3
22 vol64no3
 
Smart Traction on Solar Powered Space Rovers
Smart Traction on Solar Powered Space RoversSmart Traction on Solar Powered Space Rovers
Smart Traction on Solar Powered Space Rovers
 
Performance Evaluation of Chaotic Mobile Robot Controllers
Performance Evaluation of Chaotic Mobile Robot Controllers Performance Evaluation of Chaotic Mobile Robot Controllers
Performance Evaluation of Chaotic Mobile Robot Controllers
 
Control of a Movable Robot Head Using Vision-Based Object Tracking
Control of a Movable Robot Head Using Vision-Based Object TrackingControl of a Movable Robot Head Using Vision-Based Object Tracking
Control of a Movable Robot Head Using Vision-Based Object Tracking
 
L01117074
L01117074L01117074
L01117074
 
HCI for Real world Applications
HCI for Real world ApplicationsHCI for Real world Applications
HCI for Real world Applications
 
sawano-icma2000
sawano-icma2000sawano-icma2000
sawano-icma2000
 
Integration of poses to enhance the shape of the object tracking from a singl...
Integration of poses to enhance the shape of the object tracking from a singl...Integration of poses to enhance the shape of the object tracking from a singl...
Integration of poses to enhance the shape of the object tracking from a singl...
 
An Assessment of Image Matching Algorithms in Depth Estimation
An Assessment of Image Matching Algorithms in Depth EstimationAn Assessment of Image Matching Algorithms in Depth Estimation
An Assessment of Image Matching Algorithms in Depth Estimation
 
Design & Development of Vision Controlled Snake Robot
Design & Development of Vision Controlled Snake RobotDesign & Development of Vision Controlled Snake Robot
Design & Development of Vision Controlled Snake Robot
 
Design and implementation of path planning algorithm for wheeled mobile robot...
Design and implementation of path planning algorithm for wheeled mobile robot...Design and implementation of path planning algorithm for wheeled mobile robot...
Design and implementation of path planning algorithm for wheeled mobile robot...
 
Design and implementation of path planning algorithm for wheeled mobile robot...
Design and implementation of path planning algorithm for wheeled mobile robot...Design and implementation of path planning algorithm for wheeled mobile robot...
Design and implementation of path planning algorithm for wheeled mobile robot...
 

Más de Waqas Tariq

Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Waqas Tariq
 
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Waqas Tariq
 
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text EditorDynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Waqas Tariq
 
Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Waqas Tariq
 

Más de Waqas Tariq (20)

The Use of Java Swing’s Components to Develop a Widget
The Use of Java Swing’s Components to Develop a WidgetThe Use of Java Swing’s Components to Develop a Widget
The Use of Java Swing’s Components to Develop a Widget
 
3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image
 
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
 
A Proposed Web Accessibility Framework for the Arab Disabled
A Proposed Web Accessibility Framework for the Arab DisabledA Proposed Web Accessibility Framework for the Arab Disabled
A Proposed Web Accessibility Framework for the Arab Disabled
 
Real Time Blinking Detection Based on Gabor Filter
Real Time Blinking Detection Based on Gabor FilterReal Time Blinking Detection Based on Gabor Filter
Real Time Blinking Detection Based on Gabor Filter
 
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
 
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
 
Collaborative Learning of Organisational Knolwedge
Collaborative Learning of Organisational KnolwedgeCollaborative Learning of Organisational Knolwedge
Collaborative Learning of Organisational Knolwedge
 
A PNML extension for the HCI design
A PNML extension for the HCI designA PNML extension for the HCI design
A PNML extension for the HCI design
 
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 BoardDevelopment of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
 
An overview on Advanced Research Works on Brain-Computer Interface
An overview on Advanced Research Works on Brain-Computer InterfaceAn overview on Advanced Research Works on Brain-Computer Interface
An overview on Advanced Research Works on Brain-Computer Interface
 
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
 
Principles of Good Screen Design in Websites
Principles of Good Screen Design in WebsitesPrinciples of Good Screen Design in Websites
Principles of Good Screen Design in Websites
 
Progress of Virtual Teams in Albania
Progress of Virtual Teams in AlbaniaProgress of Virtual Teams in Albania
Progress of Virtual Teams in Albania
 
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
 
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
 
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
 
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text EditorDynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
 
An Improved Approach for Word Ambiguity Removal
An Improved Approach for Word Ambiguity RemovalAn Improved Approach for Word Ambiguity Removal
An Improved Approach for Word Ambiguity Removal
 
Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...
 

Último

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Krashi Coaching
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
fonyou31
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 

Último (20)

Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 

A Novel Wall Following Algorithm For Mobile Robots

  • 1. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 15 A Novel Wall Following Algorithm For Mobile Robots Min Raj Nepali nminraj92@gmail.com Research Associate Nitte Meenakshi Institute of Technology Bangalore, 560064,India Nishesh Yadav hiddenshadowy@gmail.com Final Year Bachelors,EEE Nitte Meenakshi Institute of Technology Bangalore, 560064,India Dubey Aditya Housila Prasad adityad031@gmail.com Research Associate Nitte Meenakshi Institute of Technology Bangalore, 560064,India Susheel Balasubramaniam susheels88@gmail.com Research Associate Nitte Meenakshi Institute of Technology Bangalore, 560064,India Venkatesh EN venkateshen1@gmail.com Research Associate Nitte Meenakshi Institute of Technology Bangalore, 560064,India Ashutosh ashu.studsat@gmail.com Research Associate Nitte Meenakshi Institute of Technology Bangalore, 560064,India Abstract This paper presents how a mobile robot can be directed to follow a wall using 2D data obtained with the help of a laser range finder. The robot is controlled using a simple kinematic controller and the controller is embedded in NXP LPC1768 microcontroller. The controller guides the robot to follow the wall along the required direction while maintaining a constant distance from the wall. The data obtained from the laser range finder is analyzed and processed to generate signals to control the speed as well as orientation of the robot. Implementation results show that the proposed algorithm controls the robot to follow walls, detecting the edges and corners successfully. Keywords: Kinematic Controller, 2D Laser Range Finder, Autonomous Mobile Robot, Edge Detection, Corner Detection, wall Following. 1. INTRODUCTION Autonomy has become a key concept in mobile robot navigation to complete desired task efficiently and with least human intuition. Mobile robots have numerous applications in various fields like space exploration, defence, education, etc. Considering different applications the robots should be incorporated with various algorithms like path planning, obstacle avoidance, etc. Wall
  • 2. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 16 following is one of those algorithms which is to be implemented to make the robot autonomous. In this experiment laser range finder was used to map the environment and later on that information was used to navigate the robot and follow the wall accordingly. The perceived environment was classified as edges and corners based on different features and the robot was duly driven. Extensive research has been performed in the area of mobile robots and their applications. A wall following method presented in [1] [2] uses IR sensors and divides the environment into a number of cells representing the wall as set of lines, points, etc. Another wall following algorithm presented in [3] [4] uses image processing to extract features like edges and corners after capturing the images or videos through a camera by using background subtraction method which later on is fed to control systems to drive the robot. Visual servoing was implemented to track and follow the wall using camera. In [5] [6] SONAR is used to perceive the environment and a Fuzzy logic controller is implemented to control the robot. Fuzzy logic controllers prove to be one of the best controllers since they represent real world knowledge and handle real world uncertainties so adeptly[7] [8].The paper [9] proposes a robust model to avoid obstacles which is further optimized to achieve wall following task by using a suitable neural controller. The sensors used to obtain information from the environment were sonar sensors. The three important questions that have to be countered by the robot are (Where I am, Where to go, and how to go). To answer these questions correctly the robot has to have precise knowledge regarding the environment. The robot then should adjust itself relatively to the environment. 2. ROBOT MODEL FIGURE 1: Showing the relationship between Global frame and Robot body Frame. Throughout the experiment the robot was considered a rigid body on wheels moving on a plane surface. In order to postulate the position of the robot on the plane we create a relation between the global reference frame of the plane and the local reference frame of the robot, as in figure above. The axes X and Y define a random inertial basis on the plane as the global reference frame or the origin. To specify the position of the robot, we choose a point O on the robot chassis as its position reference point. The basis {x, y} defines two axes relative to O on the robot chassis and is thus the robot’s local reference frame. The position of the robot O in the global reference
  • 3. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 17 frame is specified by coordinates x and y, and the angular variation between the global and local reference frames is given by ‘α’. We can describe the pose of the robot as a vector with these three elements. XY x O y           To describe robot motion in terms of component motions, it will be compulsory to map motion along the axes of the global reference frame to motion along the axes of the robot’s local reference frame. Of course, the mapping is a function of the current pose of the robot. This mapping is achieved by orthogonal rotation matrix: cos sin 0 ( ) sin cos 0 0 0 1 R               This matrix can be used to map motion in the global reference frame {x, y} to motion in terms of the local reference frame{x, y}.
  • 4. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 18 3. DEVELOPMENT OF THE ALGORITHM START SET MINIMUM DISTANCE TO BE MAINTAINED FROM THE WALL START SCANING CHECK THE MINIMUM DISTANCE KEEP FOLLOWING THE WALL GENERATE VELOCITY FOR LEFT AND RIGHT WHEEL TO MAINTAIN THE MINIMUM DISTANCE EDGE OF THE WALL DETECTED FOLLOW THE WALL CORNER DETECTED TURN AROUND THE CORNER Y Y N Y N N FIGURE 2: Flow diagram of the controller. The model assumes there is always a wall present somewhere in the range of the laser range scanner. The wall is perceived as a 2D plane. The wall detected is classified as edges and
  • 5. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 19 corners based on different features. Segmentation, split and merge techniques may also be employed to classify the wall or to extract different features related to the wall. As far as the edge is considered the controller generates linear velocity but as soon as a corner is detected the controller generates angular velocity such that the robot is just able to tackle the corner. The laser is mounted in the robot such that the axes of the robot and the axes of the laser coincide. The laser scanner provides us with the distance between the wall and the reference point. Here the reference point is considered as the point where the laser range finder is mounted. The distance obtained from the laser range finder is resolved in its respective x component, y component and an angle from which exact location of the robot is obtained. The object O mounted on the top of the robot R is the laser range finder. It is clearly visible that both the axes of robot and the laser are same. As shown in the figure the point P which is part of the wall is being resolved into PS and PQ as y and x component respectively. The robot will always try to maintain minimum distance with the wall and always try to orient PS perpendicular to the wall. 4. CONTROLLER IMPLEMENTATION The laser range scanner scans the environment. The scanner has capability to scan a range of 270 degrees that is from -135 to +135 as shown in the figure. The angular resolution is set to 0.5, which implies that in one scan time the laser outputs a bulk of 541 data. In this experiment two zones of 45 degrees were considered that is from -135 to -90 degrees and 135 to 90 degrees. FIGURE 3: Robot position with respect to wall.
  • 6. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 20 . FIGURE 4: Scan range of LMS 100. The controller is designed in such a way that it particularly takes two cases into consideration. If the wall is present on the left side of the robot, the scanned data corresponding from 135 to 90 is taken into consideration for controlling the motion of the robot. If the wall is present on the right side of the robot the scanned data corresponding from -135 to -90 is taken into consideration for controlling the motion of the robot. The controller implemented here is simple kinematic controller, which is capable of generating sufficient angular and linear velocities to drive the robot in a proper way. A threshold distance (dth ) is defined for the robot to maintain while following the wall. If distance between the robot and wall is greater than the threshold distance the robot is driven towards the wall and vice-versa. The controller may be described as follows: Where, V=linear velocity generated W=angular velocity generated K_V=velocity error gain K_d=distance error gain K_t=theta error gain dperp =perpendicular or minimum distance to be maintained while following the wall derror =error in distance aerror =error in angle 5. EXPERIMENTAL SETUP AND RESULTS A series of experiments were conducted to ensure the controller works precisely. The gain values were determined by trial and error and the whole experiment was carried out in an indoor environment. The mobile robot was made to follow a series of walls and the performance of the controller was observed. The result shows that the laser is being able to detect the edges and corners successfully. After detecting the edges and corners respective control signals are being generated with the help of which the controller is driving the robot by passing down the control signals to the motors. The controller was experimentally shown to work and the series of walls were successfully followed. V W 
  • 7. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 21 FIGURE 5: Model of LMS 100. (a) (b) (c) (d) (e) (f) (g) (h) (i) (j) FIGURE 6: Experimental results (a) to (j) depicting the detection of edge and corner and maneuvering the robot accordingly.
  • 8. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 22 6. CONCLUSION AND FUTURE SCOPE Mobile robots are capable to move around in their surrounding location and are not fixed to one location when tasks like navigation, survey, etc are considered. An autonomous robot knows some facts about where it is and how to reach various goals and or waypoints lying on its way. "Localization" or knowledge of its current position is obtained with the help of one or more means, using sensors such motor encoders, vision, lasers and global positioning systems. A novel wall following algorithm for mobile robots equipped with a 2D laser range finder has been presented. In this implementation, two cases i.e., if the left wall is present and if the right wall is present were taken into consideration. In scenarios such as if a sharp corner is present right in front of the robot; further expansion to the algorithm is required. However, the mobile robot was experimentally shown to reliably follow a series of walls given the constraints mentioned above. In an unknown environment it is easy for a robot to navigate, if it can find wall like structures and follow it. Wall following method would better help robot rather than path following if structures like wall are present in the unknown environment. It happens in many cases like underground, underwater, etc wall like structures are present and by making use of them wall following robot can easily navigate through the environment due to which the robot gains more autonomy. This kind of autonomous algorithms can be incorporated with SLAM. It would be easier to carry out the SLAM if the robot be totally autonomous. Wall follow algorithm may perform extremely well if it is carried along with mapping. From mapping we can easily obtain edges and corners of the wall and make robot to follow accordingly. 7. REFERENCES [1] P. Van Turennout, G. Honder d, L. J. vanSchelven, Wall-following control of a Mobile Robot, IEEE, International Confer ence onRobotics and Automation, pp. 280-285, May,1992. [2] J. Borenstein, Y. Kor en, The Vector Field Histogram – Fast Obstacle Avoidance for Mobile Robots, IEEE Transaction on Robotics and Automation, Vol. 7, No. 3, pp. 278-288, June,1991. [3] R. Frizera Vassallo, H. J. Schneebeli, J. SantosVictor, Visual navigation: combining visual servoing and appearance based methods,Proceedings of the International Symposium onIntelligent Robotic Systems, SIRS”98,Edinburgh, Scotland, July, 1998. [4] Francisco Bonin-Font, Alberto Ortiz, Gabriel Oliver, Visual Navigation for MobileRobots: A Survey. 2008. [5] R. Carelli and E. Freire, “Stable Corridor Navigation Controller for Sonar-Based Mobile Robots,” Technical Report, INAW, Universidad Nacional de San Juan, San Juan, 2001. [6] D. Ratner and P. McKerrow,“Navigation an Outdoor Robot along Continuous Landmarks with Ultrasonic Sen- sing,” Robotics and Autonomous Systems, Vol. 45, No. 1, 2003, pp. 73-82. doi:10.1016/S0921-8890(03)00096-4. [7] R. Malhotra and A. Sarkar, “Development of a Fuzzy Logic Based Mobile Robot for Dynamic Obstacle Avoidance and Goal Acquisition in an Unstructured Enviroment,” IEEE/ASME Proceeding of International Conference on Advanced Intelligent Mechatronics, Kobe, 20- 24 July 2003, pp. 235-247. [8] P. M. Peri, “Fuzzy Logic Controller for an Autonomous Mobile Robot,” Master Thesis, Cleveland State University, Cleveland, 2005. [9] R. Braunsting, J. Mujika and J. P. Uribe, “A Wall Fol- lowing Robot with a Fuzzy Logic Controller Optimized by a Genetic Algorithm,” Fuzzy Systems, Vol. 5, 1995, pp. 77-82. [10] M. Ergezer, “Multivariable Control Method for Wall Tracking Robot,” Project Paper,Department of Electrical and Computer Engineering, Cleveland State University, Cleveland, 2006. [11] R. Benporad, M. Di Marco and A. Tesi, “Wall-Following Controller for Sonar-Based Mobile Robots,” Proceeding of IEEE Conference on Decision and Control, San Diego, 10-12 December 1997, pp. 3063-3068. [12] Specifications and Operating Commands for SICK LMS100 Laser Range Finder. Can be found on www.sick-automation.ru/images/File/pdf/DIV05/LMS100_manual.pdf.
  • 9. Min Raj Nepali, Nishesh Yadav, Dubey Aditya Housila Prasad, Susheel Balasubramaniam, Venkatesh EN & Ashutosh International Journal of Robotics and Automation (IJRA), Volume (5) : Issue (2) : 2014 23 [13] R. Clark, A. El-Oser y, K. Wedeward and S.Bruder, A Navigation and Obstacle Avoidance Algorithm for Mobile Robots Operating inUnknown, Maze-Type Environments, Proc.International Test and Evaluation AssociationWorkshop on Modeling and Simulation, LasCruces, NM, December 2004.