SlideShare a Scribd company logo
International Journal of Excellence Innovation and Development
||Volume 1, Issue 1, Nov. 2018||Page No. 050-053||
www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 50
Design and Development of Intelligent
Navigation Control Systems for Autonomous
Robots Using Neural Network
Viji R
Dept. of Mechatronics, Thiagarajar College of Engineering, Madurai, India
Abstract—Navigation and obstacle avoidance are most
important problems in developing and designing the
intelligent mobile robots. In this work proposing a neural
network-based navigation for intelligent autonomous
mobile robots. Neural Networks (NN) deal with
cognitive tasks such as learning, adaptation. In designing
a Neural Networks navigation approach, the ability of
learning must provide robots with capacities to
successfully navigate in the proposed maze environment.
Also, robots learn during the navigation process, from
sensors, update this one and use it for intelligently
planning and controlling the navigation through Back
propagation Neural Network. Controller is simulated
first in MATLAB® using the Simulink Toolbox. An
Arduino embedded platform is used to implement the
developed neural controller for field results. The results
display the ability of the neural network-based approach
providing autonomous mobile robots with capability to
intelligently navigate in several environments.
Moreover, this method contributes positively to reducing
the time required for training the networks. The NN
controller is best for learning in real time application in
overall navigation and intelligence.
Keywords—Intelligent controller, autonomous robot,
ultrasonic sensors, neural network, MATLAB®, arduino.
INTRODUCTION
A self-sufficient robot is a sort of robot that utilization
insightful calculations and in addition sensors so it can
detect and identify the outside world. The robots which
are planned with knowledge have the capacity of route.
This capacity can be watched even in unique and
obscure condition without help of any person.
There are two noteworthy strides in a self-ruling
impediment avoider automated route framework. Firstly,
a complex environment with several obstacles will be
introduced in front of the robot. The robot must be able
to avoid obstacles and complete the navigation process.
Furthermore, the robot must have its own learning
capacities. It is necessary to observe and learn the
positions of the obstacles and overcome the collision
with the obstacles and navigate in an environment full of
dynamic and static obstacles.
The preparation ability as indicated by the tangible info
and its reaction to the obstructions are engaged. To train
the robot, several training samples are introduced to find
its route without colliding with any obstacle [1]. Using a
vision-based surveillance robot that can be run
autonomously and able to acquire images from its
dynamic environment. The robot that can avoid
obstacles using an ultrasonic distance sensor based on
back propagation neural network and a camera for face
recognition and transmitter for transmitting video [2].
Robots must learn during the navigation process, build a
map representing the knowledge from sensors, update
and use it for intelligently planning and controlling the
navigation through maze [3]. Execution of neural control
frameworks in versatile robots in impediment evasion
progressively utilizing ultrasonic sensors with complex
techniques of basic leadership being developed
(MATLAB and Processing). An Arduino embedded
platform is used to implement the neural control for field
results [4]. The real-time optimal robot motion is
planned through the dynamic activity landscape
framework of the neural network that represents the
dynamic environment [5].
The robot to navigate through flat surface among static
and moving obstacles, from any starting point to any
endpoint trained online with an extended back
propagation through time algorithm, which uses
potential fields for obstacle avoidance [6].Ensure a
collision free navigation plan for each of the robots by
defining the co-ordinates of workspace believes in
learning and movements of the robot. The robot finds
nearly most optimal path at each instant of time of robot
travel [7].
An improved Hopfield – type neural network for robot
path planning in which target activity is treated as an
energy source injected into the neural system and is
propagated through the local connectivity of neurons in
the state space by neural dynamics using a harmonic
function. The target and obstacles remain at the peak.
The real-time collision-free robot motion is planned
through the dynamic neural network activity without any
prior knowledge of the dynamic environment, without
explicitly searching over the global free workspace or
searching collision paths, and without any learning
procedures [8].
Route through a maze use recursive computations in
which unwanted or non-ways are slaughtered recursively.
Neural networks with their parallel and distributed nature
of processing seem to provide a natural solution to this
problem using a two-level hierarchical neural network for
Design and development of intelligent navigation control systems for autonomous robots Viji R
www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 51
the mapping of the maze as also the generation of the
path if it exists [9]. A neuro-fuzzy controller for sensor-
based versatile robot route in indoor conditions. The
control system consists of a hierarchy of robot behaviours
[10].
METHODOLOGY
This paper presents a new methodology based on neural
dynamics for real-time collision-free robot path
generation in an arbitrarily varying environment. The
proposed methodology incorporates activation functions
in a neural system to carry out real-time robot path
planning.
Architecture of Robot
The robot utilized in this exploration is a portable robot
which is outfitted with two actuator wheels considered
as a framework subject to non holonomic requirements.
A very low cost mobile robot for heavy load that
consists of distance sensors, and Arduino, 5A driver DC
motors, and DC motors with wheels.
Our strategy utilizing 3 ultrasonic separation sensors is
sufficient for distinguishing impediment, so we execute
that technique for this examination. Ultrasonic sensors
work at a recurrence of 40 kHz and have a deviation
point greatest of about 30∘, so as a rule robots require in
excess of one sensor to have the capacity to quantify the
separation of a deterrent in its region.
Fig. 1: Three distance sensor mounted on robot chassis.
Design of an Artificial Neural Network for Learning
This work is concerned with collection of sensory data
and robot navigation. Back propagation is an algorithm
in neural network that can be used to train a robot with
neural network. Training a neural network is the process
of finding a set of weights and bias values so that, for a
given set of inputs, the outputs produced by the neural
network are very close to some known target values.
Gradients are values that reflect the difference between a
neural network’s computed output values and the desired
target values. As it turns out, gradients use the calculus
derivative of the associated activation function. The
gradients of the output nodes must be computed before
the gradients of the hidden layer nodes, or in other
words, in the opposite direction of the feed forward
mechanism.
Supervised learning which incorporates an external
teacher, so that each output unit is told what its desired
response to input signals is used in our system. Back
propagation is basically a gradient descent process, with
each change in the weights of the network bringing the
network closer to a minimum error represented in a
multidimensional weight space. Gradient descent does
have its problems; however, in back propagation, these
problems manifest themselves as the time taken to reach
a minimum and the occurrence of local minima. Let be
an input; is weight and the output are .
Fig. 2: Neural network with back propagation control.
The algorithm for back propagation is shown below.
Algorithm 1 (back propagation).
Initialize each to some small random value
While not reach termination condition
Do
For each training example ⟨ ( 1, . . ., ), ⟩
Do
Input the instance ( 1, . . ., ) to the network and
compute the network outputs
For each output unit
=
(1− ) ( − )… (1)
For each hidden unit ℎ
ℎ= ℎ
(1− ℎ) Σ ℎ, … (2)
For each network weight , Do
, = , +Δ , , where Δ , = , ... (3)
End Do
Algorithm for Robot
We need to ensure that our framework can be connected
in genuine word, for example, generation robot
framework. We have developed algorithms and
programs consisting of 2 main modules, namely, neural
network(), and the moving method().
Declare variables
Declare functions
Set all motors off
Initialize the sensors
Far is greater than 20cm
Near is below 8cm
Do
Call neural network()
Call moving method()
If front distance is far then
Call forward
International Journal of Excellence Innovation and Development
||Volume 1, Issue 1, Nov. 2018||Page No. 050-053||
www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 52
End if
Function moving method
If front distance is near, then
Call backward
End if
If front distance is far and front right is far and front
left is near then
Call turn right
End if
If front distance is far and front left is far and front
right is near then
Call turn left
End if
If front distance is near and front right is near and
front left is near then
Call backward
End if
End function
EXPERIMENT AND OBSERVATION
Our proposed method for the robot has been successfully
implemented and it has shown a good performance in
various environments. Three ultrasonic sensors
prevailing to distinguish and measure the separation of
hindrance consistently. The system is verified through
Simulink and shows the positive result. Figure 3 Shows
the Simulink model of the system. Figure 4 and 5 shows
the subsystem of neural network of function layer and
functional fitting layer which gives, the weights, bias,
and activation function. The robot is successfully
navigating through the maze environments 1 and 2.
Figure 6 and 7 various environments of maze through
which robot navigates.
Fig. 3: Controller verified through simulink.
Fig. 4: Functional layer controller subsystem.
Fig. 5: Bias, weights and activation function.
Fig. 6: Robot navigates through maze environment 1.
Fig. 7: Robot navigates through maze environment 2.
RESULTS AND DISCUSSION
This paper presents a robot with obstacles avoidance
capabilities for general purpose robot in maze
environments. Algorithms of Neural Network with back
propagation Control for obstacle avoidance were
implemented in the robot. Experimental results with
various positions of obstacle shows the ability of robot to
avoid it and have shown a good performance. The sensor
framework is exceptionally shabby in light of the fact
that it just uses 3 remove sensors. Figure 8, implies the
training, validation, testing of data are perfect, which
encloses inside the circle. All though many plots are
there i.e., histogram, performance, etc., Regression plot
is considered as important, when the trained data is
linear, the robot is perfectly trained Figure 9, shows
Regression Plot of the Trained Network.
Fig. 8: Performance plot of the trained network.
Design and development of intelligent navigation control systems for autonomous robots Viji R
www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 53
Fig. 9: Regression plot of the trained network.
CONCLUSION
An intelligent control of an autonomous robot which is
trained with Neural Network with back propagation
Control is developed. This robot successfully navigates
in a maze structured environment has been presented.
The Desired output of the trained network is obtained
and successfully implemented to the prototype. An
arrangement of testing conditions that was made to test
the model in various circumstances. For future work, we
will improve this system for swarm robotics system.
REFERENCES
[1] M. S. H. Sunny, E. Hossain, T. N. Mimma and S.
Hossain, "An autonomous robot: Using ANN to
navigate in a static path," 2017 4th International
Conference on Advances in Electrical Engineering
(ICAEE), Dhaka, 2017, pp. 291-296.
[2] Widodo Budiharto, “Intelligent Surveillance
Robot with Obstacle Avoidance Capabilities
Using Neural Network,” Computational
Intelligence and Neuroscience, vol. 2015, Article
ID 745823, 5 pages, 2015.
[3] Hachour, Ouarda, “A neural network-based
navigation for intelligent autonomous mobile
robots”, International Journal of Mathematical
Models and Methods in Applied Sciences. 4. 177-
186, 2010.
[4] A. Medina-Santiago, J. L. Camas-Anzueto, J. A.
Vazquez-Feijoo, H. R. Hernández-de León,
R.Mota-Grajales, “Neural Control System in
Obstacle Avoidance in Mobile Robots Using
Ultrasonic Sensors”, Journal of Applied Research
and Technology, Mexico, Volume 12, Issue 1,
pp.104-110, 2014.
[5] X. Yang and M. Meng, "Neural network
application in robot motion planning," 1999 IEEE
Pacific Rim Conference on Communications,
Computers and Signal Processing (PACRIM
1999). Conference Proceedings (Cat.
No.99CH36368), Victoria, BC, 1999, pp. 611-614.
[6] I. Engedy and G. Horvath, "Artificial neural
network based mobile robot navigation," 2009
IEEE International Symposium on Intelligent
Signal Processing, Budapest,2009, pp.241-246.
[7] R. Kala, A. Shukla, R. Tiwari, S. Rungta and R. R.
Janghel, "Mobile Robot Navigation Control in
Moving Obstacle Environment Using Genetic
Algorithm, Artificial Neural Networks and A*
Algorithm," 2009 WRI World Congress on
Computer Science and Information Engineering,
Los Angeles, CA, 2009, pp. 705-713.
[8] Yongmin Zhong, Bijan Shirinzadeh and Yanling
Tian, "A new neural network for robot path
planning", 2008 IEEE/ASME International
Conference on Advanced Intelligent
Mechatronics, Xian, 2008, pp. 1361-1366.
[9] S. Srinivasan, D.P. Mital, S. Haque, “A novel
solution for maze traversal problems
usingartificial neural networks”, conference on
computers and electrical engineering, volume 30,
issue3, 2004, pp.563-572.
[10] P. Rusu, E. M. Petriu, T. E. Whalen, A. Cornell
and H. J. W. Spoelder, "Behavior-based neuro-
fuzzy controller for mobile robot navigation,"
in IEEE Transactions on Instrumentation and
Measurement, vol. 52, no. 4, pp. 1335-1340, Aug.
2003.

More Related Content

What's hot

Perceptron & Neural Networks
Perceptron & Neural NetworksPerceptron & Neural Networks
Perceptron & Neural Networks
NAGUR SHAREEF SHAIK
 
Artificial Neural Network based Mobile Robot Navigation
Artificial Neural Network based Mobile Robot NavigationArtificial Neural Network based Mobile Robot Navigation
Artificial Neural Network based Mobile Robot Navigation
Mithun Chowdhury
 
Artificial Neural Network (draft)
Artificial Neural Network (draft)Artificial Neural Network (draft)
Artificial Neural Network (draft)
James Boulie
 
introduction to deep Learning with full detail
introduction to deep Learning with full detailintroduction to deep Learning with full detail
introduction to deep Learning with full detail
sonykhan3
 
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...
ijfcstjournal
 
Artificial neural network by arpit_sharma
Artificial neural network by arpit_sharmaArtificial neural network by arpit_sharma
Artificial neural network by arpit_sharma
Er. Arpit Sharma
 
Neural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile RobotNeural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile Robot
IRJET Journal
 
Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network  Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network
ijcga
 
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...
iosrjce
 
Intro to Deep Learning for Computer Vision
Intro to Deep Learning for Computer VisionIntro to Deep Learning for Computer Vision
Intro to Deep Learning for Computer Vision
Christoph Körner
 
All optical circuits and for digital logic
All optical circuits and for digital logicAll optical circuits and for digital logic
All optical circuits and for digital logic
M. Faisal Halim
 
Interactive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor networkInteractive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor network
ijcga
 
Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)
Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)
Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)
Mithun Chowdhury
 
Neural Networks
Neural Networks Neural Networks
Neural Networks Eric Su
 
Open CV Implementation of Object Recognition Using Artificial Neural Networks
Open CV Implementation of Object Recognition Using Artificial Neural NetworksOpen CV Implementation of Object Recognition Using Artificial Neural Networks
Open CV Implementation of Object Recognition Using Artificial Neural Networks
ijceronline
 
Neural networks
Neural networksNeural networks
Neural networks
Basil John
 
neural network
neural networkneural network
neural network
STUDENT
 
A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...
A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...
A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...
IJECEIAES
 

What's hot (19)

Perceptron & Neural Networks
Perceptron & Neural NetworksPerceptron & Neural Networks
Perceptron & Neural Networks
 
B0441418
B0441418B0441418
B0441418
 
Artificial Neural Network based Mobile Robot Navigation
Artificial Neural Network based Mobile Robot NavigationArtificial Neural Network based Mobile Robot Navigation
Artificial Neural Network based Mobile Robot Navigation
 
Artificial Neural Network (draft)
Artificial Neural Network (draft)Artificial Neural Network (draft)
Artificial Neural Network (draft)
 
introduction to deep Learning with full detail
introduction to deep Learning with full detailintroduction to deep Learning with full detail
introduction to deep Learning with full detail
 
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...
 
Artificial neural network by arpit_sharma
Artificial neural network by arpit_sharmaArtificial neural network by arpit_sharma
Artificial neural network by arpit_sharma
 
Neural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile RobotNeural Network Implementation Control Mobile Robot
Neural Network Implementation Control Mobile Robot
 
Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network  Interactive Full-Body Motion Capture Using Infrared Sensor Network
Interactive Full-Body Motion Capture Using Infrared Sensor Network
 
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...
 
Intro to Deep Learning for Computer Vision
Intro to Deep Learning for Computer VisionIntro to Deep Learning for Computer Vision
Intro to Deep Learning for Computer Vision
 
All optical circuits and for digital logic
All optical circuits and for digital logicAll optical circuits and for digital logic
All optical circuits and for digital logic
 
Interactive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor networkInteractive full body motion capture using infrared sensor network
Interactive full body motion capture using infrared sensor network
 
Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)
Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)
Navigation and Trajectory Control for Autonomous Robot/Vehicle (mechatronics)
 
Neural Networks
Neural Networks Neural Networks
Neural Networks
 
Open CV Implementation of Object Recognition Using Artificial Neural Networks
Open CV Implementation of Object Recognition Using Artificial Neural NetworksOpen CV Implementation of Object Recognition Using Artificial Neural Networks
Open CV Implementation of Object Recognition Using Artificial Neural Networks
 
Neural networks
Neural networksNeural networks
Neural networks
 
neural network
neural networkneural network
neural network
 
A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...
A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...
A Multi-robot System Coordination Design and Analysis on Wall Follower Robot ...
 

Similar to Design and Development of Intelligent Navigation Control Systems for Autonomous Robots Using Neural Network

Learning of robot navigation tasks by
Learning of robot navigation tasks byLearning of robot navigation tasks by
Learning of robot navigation tasks by
csandit
 
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORKLEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
csandit
 
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORKLEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
cscpconf
 
Optimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation System
Optimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation SystemOptimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation System
Optimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation System
IDES Editor
 
Multisensor data fusion based autonomous mobile
Multisensor data fusion based autonomous mobileMultisensor data fusion based autonomous mobile
Multisensor data fusion based autonomous mobile
eSAT Publishing House
 
H011114758
H011114758H011114758
H011114758
IOSR Journals
 
High-Speed Neural Network Controller for Autonomous Robot Navigation using FPGA
High-Speed Neural Network Controller for Autonomous Robot Navigation using FPGAHigh-Speed Neural Network Controller for Autonomous Robot Navigation using FPGA
High-Speed Neural Network Controller for Autonomous Robot Navigation using FPGA
iosrjce
 
Design and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic VehicleDesign and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic Vehicle
IRJET Journal
 
Industrial Microcontroller Based Neural Network Controlled Autonomous Vehicle
Industrial Microcontroller Based Neural Network Controlled  Autonomous VehicleIndustrial Microcontroller Based Neural Network Controlled  Autonomous Vehicle
Industrial Microcontroller Based Neural Network Controlled Autonomous Vehicle
IJMER
 
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
CSCJournals
 
IRJET-Fuzzy Logic Based Path Navigation for Robot using Matlab
IRJET-Fuzzy Logic Based Path Navigation for Robot using MatlabIRJET-Fuzzy Logic Based Path Navigation for Robot using Matlab
IRJET-Fuzzy Logic Based Path Navigation for Robot using Matlab
IRJET Journal
 
A Design of fuzzy controller for Autonomous Navigation of Unmanned Vehicle
A Design of fuzzy controller for Autonomous Navigation of Unmanned VehicleA Design of fuzzy controller for Autonomous Navigation of Unmanned Vehicle
A Design of fuzzy controller for Autonomous Navigation of Unmanned Vehicle
Waqas Tariq
 
Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...
Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...
Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...
ijsrd.com
 
Content server
Content serverContent server
Content server
Alejandro Aponte Vivas
 
Neural network training for serial multisensor of autonomous vehicle system
Neural network training for serial multisensor of autonomous  vehicle systemNeural network training for serial multisensor of autonomous  vehicle system
Neural network training for serial multisensor of autonomous vehicle system
IJECEIAES
 
IRJET - Swarm Robotics for Agriculture
IRJET - Swarm Robotics for AgricultureIRJET - Swarm Robotics for Agriculture
IRJET - Swarm Robotics for Agriculture
IRJET Journal
 
Swarm.Robotics Research Report IEEE
Swarm.Robotics Research Report IEEESwarm.Robotics Research Report IEEE
Swarm.Robotics Research Report IEEE
Asad Masood
 
Smart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind PeopleSmart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind People
IRJET Journal
 
PC-based mobile robot navigation sytem
PC-based mobile robot navigation sytemPC-based mobile robot navigation sytem
PC-based mobile robot navigation sytem
ANKIT SURATI
 
Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...
Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...
Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...
Associate Professor in VSB Coimbatore
 

Similar to Design and Development of Intelligent Navigation Control Systems for Autonomous Robots Using Neural Network (20)

Learning of robot navigation tasks by
Learning of robot navigation tasks byLearning of robot navigation tasks by
Learning of robot navigation tasks by
 
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORKLEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
 
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORKLEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
LEARNING OF ROBOT NAVIGATION TASKS BY PROBABILISTIC NEURAL NETWORK
 
Optimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation System
Optimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation SystemOptimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation System
Optimally Learnt, Neural Network Based Autonomous Mobile Robot Navigation System
 
Multisensor data fusion based autonomous mobile
Multisensor data fusion based autonomous mobileMultisensor data fusion based autonomous mobile
Multisensor data fusion based autonomous mobile
 
H011114758
H011114758H011114758
H011114758
 
High-Speed Neural Network Controller for Autonomous Robot Navigation using FPGA
High-Speed Neural Network Controller for Autonomous Robot Navigation using FPGAHigh-Speed Neural Network Controller for Autonomous Robot Navigation using FPGA
High-Speed Neural Network Controller for Autonomous Robot Navigation using FPGA
 
Design and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic VehicleDesign and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic Vehicle
 
Industrial Microcontroller Based Neural Network Controlled Autonomous Vehicle
Industrial Microcontroller Based Neural Network Controlled  Autonomous VehicleIndustrial Microcontroller Based Neural Network Controlled  Autonomous Vehicle
Industrial Microcontroller Based Neural Network Controlled Autonomous Vehicle
 
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
 
IRJET-Fuzzy Logic Based Path Navigation for Robot using Matlab
IRJET-Fuzzy Logic Based Path Navigation for Robot using MatlabIRJET-Fuzzy Logic Based Path Navigation for Robot using Matlab
IRJET-Fuzzy Logic Based Path Navigation for Robot using Matlab
 
A Design of fuzzy controller for Autonomous Navigation of Unmanned Vehicle
A Design of fuzzy controller for Autonomous Navigation of Unmanned VehicleA Design of fuzzy controller for Autonomous Navigation of Unmanned Vehicle
A Design of fuzzy controller for Autonomous Navigation of Unmanned Vehicle
 
Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...
Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...
Design and Implementation of a Real Time Obstacle Avoiding Subsumption Contro...
 
Content server
Content serverContent server
Content server
 
Neural network training for serial multisensor of autonomous vehicle system
Neural network training for serial multisensor of autonomous  vehicle systemNeural network training for serial multisensor of autonomous  vehicle system
Neural network training for serial multisensor of autonomous vehicle system
 
IRJET - Swarm Robotics for Agriculture
IRJET - Swarm Robotics for AgricultureIRJET - Swarm Robotics for Agriculture
IRJET - Swarm Robotics for Agriculture
 
Swarm.Robotics Research Report IEEE
Swarm.Robotics Research Report IEEESwarm.Robotics Research Report IEEE
Swarm.Robotics Research Report IEEE
 
Smart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind PeopleSmart Navigation Assistance System for Blind People
Smart Navigation Assistance System for Blind People
 
PC-based mobile robot navigation sytem
PC-based mobile robot navigation sytemPC-based mobile robot navigation sytem
PC-based mobile robot navigation sytem
 
Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...
Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...
Design and Implementation of Soft-i-Robot for face Detection and Obstacle Avo...
 

More from IJEID :: International Journal of Excellence Innovation and Development

Development and Experimentation of a Mobile Mini Ice-tube Making Machine
Development and Experimentation of a Mobile Mini Ice-tube Making MachineDevelopment and Experimentation of a Mobile Mini Ice-tube Making Machine
Development and Experimentation of a Mobile Mini Ice-tube Making Machine
IJEID :: International Journal of Excellence Innovation and Development
 
Enhancing the Thinking Abilities of Engineering Learners
Enhancing the Thinking Abilities of Engineering LearnersEnhancing the Thinking Abilities of Engineering Learners
Enhancing the Thinking Abilities of Engineering Learners
IJEID :: International Journal of Excellence Innovation and Development
 
Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...
Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...
Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...
IJEID :: International Journal of Excellence Innovation and Development
 
A Study on Growth Performance of Spirulina Platensis in Different Concentrati...
A Study on Growth Performance of Spirulina Platensis in Different Concentrati...A Study on Growth Performance of Spirulina Platensis in Different Concentrati...
A Study on Growth Performance of Spirulina Platensis in Different Concentrati...
IJEID :: International Journal of Excellence Innovation and Development
 
Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...
Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...
Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...
IJEID :: International Journal of Excellence Innovation and Development
 
Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...
Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...
Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...
IJEID :: International Journal of Excellence Innovation and Development
 
Development of Electrically Powered Reciprocating Cocoa Pods Breaking Machine
Development of Electrically Powered Reciprocating Cocoa Pods Breaking MachineDevelopment of Electrically Powered Reciprocating Cocoa Pods Breaking Machine
Development of Electrically Powered Reciprocating Cocoa Pods Breaking Machine
IJEID :: International Journal of Excellence Innovation and Development
 
Minimization of Sink Mark Defects in Injection Molding Process
Minimization of Sink Mark Defects in Injection Molding ProcessMinimization of Sink Mark Defects in Injection Molding Process
Minimization of Sink Mark Defects in Injection Molding Process
IJEID :: International Journal of Excellence Innovation and Development
 
An Android Application for University Based Academic Solution
An Android Application for University Based Academic Solution An Android Application for University Based Academic Solution
An Android Application for University Based Academic Solution
IJEID :: International Journal of Excellence Innovation and Development
 
Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...
Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...
Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...
IJEID :: International Journal of Excellence Innovation and Development
 
Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...
Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...
Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...
IJEID :: International Journal of Excellence Innovation and Development
 
Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...
Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...
Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...
IJEID :: International Journal of Excellence Innovation and Development
 
Artificial Neural Network Based Offline Signature Recognition System Using Lo...
Artificial Neural Network Based Offline Signature Recognition System Using Lo...Artificial Neural Network Based Offline Signature Recognition System Using Lo...
Artificial Neural Network Based Offline Signature Recognition System Using Lo...
IJEID :: International Journal of Excellence Innovation and Development
 
Role of Teacher Education Pedagogy in Developing Communication Competences am...
Role of Teacher Education Pedagogy in Developing Communication Competences am...Role of Teacher Education Pedagogy in Developing Communication Competences am...
Role of Teacher Education Pedagogy in Developing Communication Competences am...
IJEID :: International Journal of Excellence Innovation and Development
 
An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...
An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...
An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...
IJEID :: International Journal of Excellence Innovation and Development
 
Generation of Biogas from Kitchen Waste and Cow Dung An Experimental Analysis
Generation of Biogas from Kitchen Waste and Cow Dung An Experimental AnalysisGeneration of Biogas from Kitchen Waste and Cow Dung An Experimental Analysis
Generation of Biogas from Kitchen Waste and Cow Dung An Experimental Analysis
IJEID :: International Journal of Excellence Innovation and Development
 
The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...
The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...
The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...
IJEID :: International Journal of Excellence Innovation and Development
 
Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...
Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...
Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...
IJEID :: International Journal of Excellence Innovation and Development
 
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
IJEID :: International Journal of Excellence Innovation and Development
 
Using Computer-Aided Tools in Information Systems Development
Using Computer-Aided Tools in Information Systems DevelopmentUsing Computer-Aided Tools in Information Systems Development
Using Computer-Aided Tools in Information Systems Development
IJEID :: International Journal of Excellence Innovation and Development
 

More from IJEID :: International Journal of Excellence Innovation and Development (20)

Development and Experimentation of a Mobile Mini Ice-tube Making Machine
Development and Experimentation of a Mobile Mini Ice-tube Making MachineDevelopment and Experimentation of a Mobile Mini Ice-tube Making Machine
Development and Experimentation of a Mobile Mini Ice-tube Making Machine
 
Enhancing the Thinking Abilities of Engineering Learners
Enhancing the Thinking Abilities of Engineering LearnersEnhancing the Thinking Abilities of Engineering Learners
Enhancing the Thinking Abilities of Engineering Learners
 
Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...
Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...
Impact of Stocking Common Carp (Cyprinus Carpio) on Production in Some Select...
 
A Study on Growth Performance of Spirulina Platensis in Different Concentrati...
A Study on Growth Performance of Spirulina Platensis in Different Concentrati...A Study on Growth Performance of Spirulina Platensis in Different Concentrati...
A Study on Growth Performance of Spirulina Platensis in Different Concentrati...
 
Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...
Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...
Mechanical Characteristics of Eco-friendly Concrete Using GGBS and Manufactur...
 
Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...
Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...
Development and Optimization of Traditional Product Rabdi Doodh and Its Quali...
 
Development of Electrically Powered Reciprocating Cocoa Pods Breaking Machine
Development of Electrically Powered Reciprocating Cocoa Pods Breaking MachineDevelopment of Electrically Powered Reciprocating Cocoa Pods Breaking Machine
Development of Electrically Powered Reciprocating Cocoa Pods Breaking Machine
 
Minimization of Sink Mark Defects in Injection Molding Process
Minimization of Sink Mark Defects in Injection Molding ProcessMinimization of Sink Mark Defects in Injection Molding Process
Minimization of Sink Mark Defects in Injection Molding Process
 
An Android Application for University Based Academic Solution
An Android Application for University Based Academic Solution An Android Application for University Based Academic Solution
An Android Application for University Based Academic Solution
 
Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...
Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...
Efficacy of Foeniculum Vulgare Seeds Powder on Feed Intake and Feed Conversio...
 
Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...
Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...
Flood Inundated Agricultural Damage and Loss Assessment Using Earth Observati...
 
Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...
Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...
Effect of Yoga therapy on Level of Anxiety among Menopausal Women Residing in...
 
Artificial Neural Network Based Offline Signature Recognition System Using Lo...
Artificial Neural Network Based Offline Signature Recognition System Using Lo...Artificial Neural Network Based Offline Signature Recognition System Using Lo...
Artificial Neural Network Based Offline Signature Recognition System Using Lo...
 
Role of Teacher Education Pedagogy in Developing Communication Competences am...
Role of Teacher Education Pedagogy in Developing Communication Competences am...Role of Teacher Education Pedagogy in Developing Communication Competences am...
Role of Teacher Education Pedagogy in Developing Communication Competences am...
 
An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...
An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...
An Economic Study of Marketing Cost of Coir Incurred by Manufactures in Tirun...
 
Generation of Biogas from Kitchen Waste and Cow Dung An Experimental Analysis
Generation of Biogas from Kitchen Waste and Cow Dung An Experimental AnalysisGeneration of Biogas from Kitchen Waste and Cow Dung An Experimental Analysis
Generation of Biogas from Kitchen Waste and Cow Dung An Experimental Analysis
 
The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...
The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...
The Use of Cholesteric Liquid Crystals in Oncology, Music Color Device and fo...
 
Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...
Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...
Forecasting Gasonline Price in Vietnam Based on Fuzzy Time Series and Automat...
 
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
Approximating the Bell-shaped Function based on Combining Hedge Algebras and ...
 
Using Computer-Aided Tools in Information Systems Development
Using Computer-Aided Tools in Information Systems DevelopmentUsing Computer-Aided Tools in Information Systems Development
Using Computer-Aided Tools in Information Systems Development
 

Recently uploaded

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 

Recently uploaded (20)

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 

Design and Development of Intelligent Navigation Control Systems for Autonomous Robots Using Neural Network

  • 1. International Journal of Excellence Innovation and Development ||Volume 1, Issue 1, Nov. 2018||Page No. 050-053|| www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 50 Design and Development of Intelligent Navigation Control Systems for Autonomous Robots Using Neural Network Viji R Dept. of Mechatronics, Thiagarajar College of Engineering, Madurai, India Abstract—Navigation and obstacle avoidance are most important problems in developing and designing the intelligent mobile robots. In this work proposing a neural network-based navigation for intelligent autonomous mobile robots. Neural Networks (NN) deal with cognitive tasks such as learning, adaptation. In designing a Neural Networks navigation approach, the ability of learning must provide robots with capacities to successfully navigate in the proposed maze environment. Also, robots learn during the navigation process, from sensors, update this one and use it for intelligently planning and controlling the navigation through Back propagation Neural Network. Controller is simulated first in MATLAB® using the Simulink Toolbox. An Arduino embedded platform is used to implement the developed neural controller for field results. The results display the ability of the neural network-based approach providing autonomous mobile robots with capability to intelligently navigate in several environments. Moreover, this method contributes positively to reducing the time required for training the networks. The NN controller is best for learning in real time application in overall navigation and intelligence. Keywords—Intelligent controller, autonomous robot, ultrasonic sensors, neural network, MATLAB®, arduino. INTRODUCTION A self-sufficient robot is a sort of robot that utilization insightful calculations and in addition sensors so it can detect and identify the outside world. The robots which are planned with knowledge have the capacity of route. This capacity can be watched even in unique and obscure condition without help of any person. There are two noteworthy strides in a self-ruling impediment avoider automated route framework. Firstly, a complex environment with several obstacles will be introduced in front of the robot. The robot must be able to avoid obstacles and complete the navigation process. Furthermore, the robot must have its own learning capacities. It is necessary to observe and learn the positions of the obstacles and overcome the collision with the obstacles and navigate in an environment full of dynamic and static obstacles. The preparation ability as indicated by the tangible info and its reaction to the obstructions are engaged. To train the robot, several training samples are introduced to find its route without colliding with any obstacle [1]. Using a vision-based surveillance robot that can be run autonomously and able to acquire images from its dynamic environment. The robot that can avoid obstacles using an ultrasonic distance sensor based on back propagation neural network and a camera for face recognition and transmitter for transmitting video [2]. Robots must learn during the navigation process, build a map representing the knowledge from sensors, update and use it for intelligently planning and controlling the navigation through maze [3]. Execution of neural control frameworks in versatile robots in impediment evasion progressively utilizing ultrasonic sensors with complex techniques of basic leadership being developed (MATLAB and Processing). An Arduino embedded platform is used to implement the neural control for field results [4]. The real-time optimal robot motion is planned through the dynamic activity landscape framework of the neural network that represents the dynamic environment [5]. The robot to navigate through flat surface among static and moving obstacles, from any starting point to any endpoint trained online with an extended back propagation through time algorithm, which uses potential fields for obstacle avoidance [6].Ensure a collision free navigation plan for each of the robots by defining the co-ordinates of workspace believes in learning and movements of the robot. The robot finds nearly most optimal path at each instant of time of robot travel [7]. An improved Hopfield – type neural network for robot path planning in which target activity is treated as an energy source injected into the neural system and is propagated through the local connectivity of neurons in the state space by neural dynamics using a harmonic function. The target and obstacles remain at the peak. The real-time collision-free robot motion is planned through the dynamic neural network activity without any prior knowledge of the dynamic environment, without explicitly searching over the global free workspace or searching collision paths, and without any learning procedures [8]. Route through a maze use recursive computations in which unwanted or non-ways are slaughtered recursively. Neural networks with their parallel and distributed nature of processing seem to provide a natural solution to this problem using a two-level hierarchical neural network for
  • 2. Design and development of intelligent navigation control systems for autonomous robots Viji R www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 51 the mapping of the maze as also the generation of the path if it exists [9]. A neuro-fuzzy controller for sensor- based versatile robot route in indoor conditions. The control system consists of a hierarchy of robot behaviours [10]. METHODOLOGY This paper presents a new methodology based on neural dynamics for real-time collision-free robot path generation in an arbitrarily varying environment. The proposed methodology incorporates activation functions in a neural system to carry out real-time robot path planning. Architecture of Robot The robot utilized in this exploration is a portable robot which is outfitted with two actuator wheels considered as a framework subject to non holonomic requirements. A very low cost mobile robot for heavy load that consists of distance sensors, and Arduino, 5A driver DC motors, and DC motors with wheels. Our strategy utilizing 3 ultrasonic separation sensors is sufficient for distinguishing impediment, so we execute that technique for this examination. Ultrasonic sensors work at a recurrence of 40 kHz and have a deviation point greatest of about 30∘, so as a rule robots require in excess of one sensor to have the capacity to quantify the separation of a deterrent in its region. Fig. 1: Three distance sensor mounted on robot chassis. Design of an Artificial Neural Network for Learning This work is concerned with collection of sensory data and robot navigation. Back propagation is an algorithm in neural network that can be used to train a robot with neural network. Training a neural network is the process of finding a set of weights and bias values so that, for a given set of inputs, the outputs produced by the neural network are very close to some known target values. Gradients are values that reflect the difference between a neural network’s computed output values and the desired target values. As it turns out, gradients use the calculus derivative of the associated activation function. The gradients of the output nodes must be computed before the gradients of the hidden layer nodes, or in other words, in the opposite direction of the feed forward mechanism. Supervised learning which incorporates an external teacher, so that each output unit is told what its desired response to input signals is used in our system. Back propagation is basically a gradient descent process, with each change in the weights of the network bringing the network closer to a minimum error represented in a multidimensional weight space. Gradient descent does have its problems; however, in back propagation, these problems manifest themselves as the time taken to reach a minimum and the occurrence of local minima. Let be an input; is weight and the output are . Fig. 2: Neural network with back propagation control. The algorithm for back propagation is shown below. Algorithm 1 (back propagation). Initialize each to some small random value While not reach termination condition Do For each training example ⟨ ( 1, . . ., ), ⟩ Do Input the instance ( 1, . . ., ) to the network and compute the network outputs For each output unit = (1− ) ( − )… (1) For each hidden unit ℎ ℎ= ℎ (1− ℎ) Σ ℎ, … (2) For each network weight , Do , = , +Δ , , where Δ , = , ... (3) End Do Algorithm for Robot We need to ensure that our framework can be connected in genuine word, for example, generation robot framework. We have developed algorithms and programs consisting of 2 main modules, namely, neural network(), and the moving method(). Declare variables Declare functions Set all motors off Initialize the sensors Far is greater than 20cm Near is below 8cm Do Call neural network() Call moving method() If front distance is far then Call forward
  • 3. International Journal of Excellence Innovation and Development ||Volume 1, Issue 1, Nov. 2018||Page No. 050-053|| www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 52 End if Function moving method If front distance is near, then Call backward End if If front distance is far and front right is far and front left is near then Call turn right End if If front distance is far and front left is far and front right is near then Call turn left End if If front distance is near and front right is near and front left is near then Call backward End if End function EXPERIMENT AND OBSERVATION Our proposed method for the robot has been successfully implemented and it has shown a good performance in various environments. Three ultrasonic sensors prevailing to distinguish and measure the separation of hindrance consistently. The system is verified through Simulink and shows the positive result. Figure 3 Shows the Simulink model of the system. Figure 4 and 5 shows the subsystem of neural network of function layer and functional fitting layer which gives, the weights, bias, and activation function. The robot is successfully navigating through the maze environments 1 and 2. Figure 6 and 7 various environments of maze through which robot navigates. Fig. 3: Controller verified through simulink. Fig. 4: Functional layer controller subsystem. Fig. 5: Bias, weights and activation function. Fig. 6: Robot navigates through maze environment 1. Fig. 7: Robot navigates through maze environment 2. RESULTS AND DISCUSSION This paper presents a robot with obstacles avoidance capabilities for general purpose robot in maze environments. Algorithms of Neural Network with back propagation Control for obstacle avoidance were implemented in the robot. Experimental results with various positions of obstacle shows the ability of robot to avoid it and have shown a good performance. The sensor framework is exceptionally shabby in light of the fact that it just uses 3 remove sensors. Figure 8, implies the training, validation, testing of data are perfect, which encloses inside the circle. All though many plots are there i.e., histogram, performance, etc., Regression plot is considered as important, when the trained data is linear, the robot is perfectly trained Figure 9, shows Regression Plot of the Trained Network. Fig. 8: Performance plot of the trained network.
  • 4. Design and development of intelligent navigation control systems for autonomous robots Viji R www.ijeid.com {IJEID © 2018} All Rights Reserved Page | 53 Fig. 9: Regression plot of the trained network. CONCLUSION An intelligent control of an autonomous robot which is trained with Neural Network with back propagation Control is developed. This robot successfully navigates in a maze structured environment has been presented. The Desired output of the trained network is obtained and successfully implemented to the prototype. An arrangement of testing conditions that was made to test the model in various circumstances. For future work, we will improve this system for swarm robotics system. REFERENCES [1] M. S. H. Sunny, E. Hossain, T. N. Mimma and S. Hossain, "An autonomous robot: Using ANN to navigate in a static path," 2017 4th International Conference on Advances in Electrical Engineering (ICAEE), Dhaka, 2017, pp. 291-296. [2] Widodo Budiharto, “Intelligent Surveillance Robot with Obstacle Avoidance Capabilities Using Neural Network,” Computational Intelligence and Neuroscience, vol. 2015, Article ID 745823, 5 pages, 2015. [3] Hachour, Ouarda, “A neural network-based navigation for intelligent autonomous mobile robots”, International Journal of Mathematical Models and Methods in Applied Sciences. 4. 177- 186, 2010. [4] A. Medina-Santiago, J. L. Camas-Anzueto, J. A. Vazquez-Feijoo, H. R. Hernández-de León, R.Mota-Grajales, “Neural Control System in Obstacle Avoidance in Mobile Robots Using Ultrasonic Sensors”, Journal of Applied Research and Technology, Mexico, Volume 12, Issue 1, pp.104-110, 2014. [5] X. Yang and M. Meng, "Neural network application in robot motion planning," 1999 IEEE Pacific Rim Conference on Communications, Computers and Signal Processing (PACRIM 1999). Conference Proceedings (Cat. No.99CH36368), Victoria, BC, 1999, pp. 611-614. [6] I. Engedy and G. Horvath, "Artificial neural network based mobile robot navigation," 2009 IEEE International Symposium on Intelligent Signal Processing, Budapest,2009, pp.241-246. [7] R. Kala, A. Shukla, R. Tiwari, S. Rungta and R. R. Janghel, "Mobile Robot Navigation Control in Moving Obstacle Environment Using Genetic Algorithm, Artificial Neural Networks and A* Algorithm," 2009 WRI World Congress on Computer Science and Information Engineering, Los Angeles, CA, 2009, pp. 705-713. [8] Yongmin Zhong, Bijan Shirinzadeh and Yanling Tian, "A new neural network for robot path planning", 2008 IEEE/ASME International Conference on Advanced Intelligent Mechatronics, Xian, 2008, pp. 1361-1366. [9] S. Srinivasan, D.P. Mital, S. Haque, “A novel solution for maze traversal problems usingartificial neural networks”, conference on computers and electrical engineering, volume 30, issue3, 2004, pp.563-572. [10] P. Rusu, E. M. Petriu, T. E. Whalen, A. Cornell and H. J. W. Spoelder, "Behavior-based neuro- fuzzy controller for mobile robot navigation," in IEEE Transactions on Instrumentation and Measurement, vol. 52, no. 4, pp. 1335-1340, Aug. 2003.