SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 839
Blind Guidance using Smart Cap
Manjiree Pahade1, Prathamesh Dhumal2, Yash Patil3, Ashish Ranjan4, Rupali Nirgude5
1-5Department of CSE, Dr. D.Y Patil Institute of Engineering and Technology, Ambi, Maharashtra, India
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - Science and technology always try to make
human life easier. The people who are having complete
blindness or low vision faces many difficulties during their
navigation. Blindness can occur due to many reasons
including disease, injury or other conditions that limit
vision. The aim of our paper is to develop a map for blind
which will guide them from their source to destination. The
paper shows design and implement a smart cap which helps
the blind people to direct the path freely by experiencing
their surroundings. The scene around the person will be
captured by using a camera and the objects in the
surrounding will be detected. The earphones will give a
voice output describing the detected objects. The
architecture of the system includes the processor Raspberry
Pi 3 /Jetson nano, camera, earphones and a power source.
The processor collects the frames of the surroundings and
convert it to voice output. The device uses TensorFlow API,
open-source machine learning which is invented by a team
called Google brain, which is for the object detection and
classification. TensorFlow helps in creating Models based on
machine learning which are capable of identifying and
classifying one image from multiple objects. Thus, details
corresponding to various objects present in one frame are
obtained using TensorFlow API. A Text-to-speech
Synthesizer (TTS) software is used for converting the details
of the detected object (in text format) to speech output.
Key Words: Raspberry Pi 3 / Jetson Nano, Camera,
TensorFlow API, Text-to-speech Synthesizer, Google brain.
1.INTRODUCTION
There are 285 million People among the whole world’s
population who are unable to see. Living independently
for such people is hard. Going out alone is not as easy for
them as compared to us. To overcome this and make them
confident for being independent, we are making smart cap.
Smart cap will help a user to understand the directions
and reach the desired place. Also, user will be able to
understand the things kept around person like fruits,
vegetables etc. The main purpose behind this project is to
make and provide a better life for blind people and to help
those people in disastrous situations.
2. MOTIVATION
This office work would now not have been feasible
without the guidance and the assist of several folks that in
one-way or other contributed and prolonged their
treasured assistance within the education and completion
of this study. The writer is very thankful to all the
researchers on this ever-growing field who have
contributed their time and knowledge. I respect all my
friends whose direct and indirect contribution helped me
a lot to accomplish this survey of tracking down visually
impaired people and problems faced by them. I would
thank all the teachers and non-teaching team of workers
for cooperating with me and providing valuable
recommendation and assets which helped me inside the
completion of this work. Last but no longer the least. I
would really like to thank my circle of relative’s members,
who taught me how to build up all the components by
taking the care of user too. This project would have
become impossible without the contribution, cooperation
and support of my teammates. They supplied me
enormous support at some stage in this implementation
directly and indirectly.
3. RELATED WORK
 Brain Port V100 (Wicab Inc, 2017)
 Eye cane (Watrin, 2014)
 Vision smart glasses (University of Oxford, 2014)
 Screen readers (American foundation for the
blind 2007)
 Smart braille watches (Pulvirent, 2017)
3.1 Brain Port V100 (Wicab Inc, 2017): -
Functionality: - It is an electro-Tactile device assisting for
mobility and detection of object.
Limitation: - Cannot be used to recognise text and sign.
3.2 Eye cane (Watrin, 2014): -
Functionality: - Wide angle and covers up to 5 meters.
Limitation: - limit in identifying obstacles.
3.3 Vision smart glasses (University of Oxford, 2014): -
Functionality: - Enhanced awareness about surrounding.
Limitation: - can be used only by people with partial
blindness.
3.4 Screen readers (American foundation for visually
impaired people 2007): -
Functionality: - It is an interface between user, its OS and
the computer programs.
Limitation: - Limited use for computer and any other
electronic devices.
3.5 Smart braille watches (Pulvirent, 2017): -
Functionality: - displays the time in brail language and
gives notifications.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 840
Limitation: - limited number of notifications and
functionalities.
4. THE PROPOSED SYSTEM
With object detection it is possible to categorize the
various images by comparing with their actual data sets
and label it. It is a bounded box framing the objects.
Figure 4.1: System Flow
The system gets power by the provided batteries and it
has a backup of power bank.
A camera is placed on the cap which captures the scene
continuously through 30fps. The image is compared with
the trained data set. The image is processed and then
classified into various groups. In this object detection, face
identification, motion detection and classification can be
done.
Figure 4.2: System Architecture
The process starts with the camera. First, the camera will
click the picture of the surrounding. It describes the scene
to the user on the command of user. The voice assistant
gives the commands. The image captured by the camera is
converted in to grey scale with the use of algorithms. The
data is handled properly, parametric reduction, optimal
feature identification is performed. The image is processed
and differentiate with the available data set. The image is
detected when it is matched with stored dataset. Further
the image is converted into text format. Then, the scene is
described through voice assistant. The text is analyzed and
scene is described while converting from voice-to-text
format. Navigation system is added to navigate the
direction which takes you up to destination. It also guides
you about obstacles and potholes.
Canny edge detection:
It’s an edge detection algorithm. it uses wide number of
images for comparisons. The object can be easily detected
by comparing its edges with given data set and thus one
can classify the images. The algorithm named Canny-edge
detection, when compared with rest algorithms and their
operations, it performs better, under all circumstances.
Why Canny Edge Detection Algorithm?
 Detection: The probability of detecting the actual
real edges is more. Thus, minimizing the falsely
detecting edges.
 Localization: There must be minimum gap
between real edge and detected Edge.
 Number of results: One edge should not give
more than one detected edge.
Steps in Canny Edge Detection Algorithm five sequential
steps:
1. Smoothing
The image taken by camera may noisy. The noise reduced
by filter which applied on image pixels.
S = I × g(x, y) = g(x, y)× I
Where,
g (x, y) =
√
2. Finding gradients.
3. Non-maximum suppression
4. hysteresis thresholding
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 841
Example: -
Figure 4.3: Example of CNN
Convolutional Neural Networks and Image Classification:
The convolutional neural network (CNN) is a class of deep
learning neural networks. CNNs represent image
recognition. They are used for analyzing visual images. It
frequently works in background for image classification.
They’re fast and they’re efficient.
Working:
CNN is based on pattern recognition. Convolutional neural
network is used to find patterns in an image. By
convoluting a picture and finding patterns in it. CNN
identifies lines and corners in its first few layers. We can
study and find more patterns by using neural networks
complex features and further, this feature shows CNN are
really good for identifying objects in images. The main aim
is filtering, done by convolutional layer. While training the
image, the weights change, density everything is
evaluated. And so, when we evaluate an image, the weights
are compared with available pattern to figure out if the
object matches previous records. Combinations of
different weights in the network is used for forecasting the
content.
5. RESULTS AND DISCUSSIONS
This project categorizes blind people as partial and fully
blind, and works for both. The developed cap could be
used in any circumstances and atmospheric conditions,
provided that battery must be fully charged.
5.1 Advantage:
 Smart Cap is suitable for disaster / emergency
situations.
 Easy for those people who live alone.
 Auto Detection of objects.
 Smart Cap easily navigate the paths and detect
obstacles.
 Smart cap boosts Confidence to user to walk on
the busy roads.
 It is a non-paper system.
 Smart cap converts text to speech, thus making
user to understand the content on the paper.
6. CONCLUSION
The right way of using technology is when everyone is
able to experience and use this. This project work could be
boon for those 285 million blind people who are yet to
experience the surrounding where we live-by. We tried to
make these people confident to live in our society
independently and work on their own. Those people could
start working on their own in any field of the society. This
device provides a real-time navigation and narrative
system. Our project will make use of green technology,
which is friendly to environment. This work is a proof of
our future work, we are hoping to make a standalone
version with additional assistive service for the blind
persons.
7. REFERENCES
[1] Nishajith.A. Nivedha.J, Shilpa.S.Nair, Prof.Mohammed
Shaffi.J “Smart Cap – wearable visual guidance system
for blind” International Conference on Inventive
Research in Computing Applications (ICIRCA 2018).
[2] L. Sarojinia1, i. Anburajb , r. Aravindc , m. Karthikeyand
and k. Gayathrie “Smart electronic gadget for visually
impaired people” indian j.sci.res. 14 (1): 348-352, 2017.
[3] Qian Xie, Oussama Remil, Yanwen Guo, Meng Wang,
Mingqiang Wei, Jun Wang “Object Detection and
Tracking Under Occlusion for Object-level RGB-D Video
Segmentation” JOURNAL OF LATEX CLASS FILES, VOL.
14, NO. 8, AUGUST 2015.
[4] Gene gindi, member, ieee, and james s. Duncan, member
“a complete object recognition system as a computer
vision course project” IEEE transactions on education,
vol. E-30, no. 3, august 1987.
[5] Xin Wang, Member, IEEE “Moving Window-Based
Double Haar Wavelet Transform for Image Processing”
IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 15,
NO. 9, SEPTEMBER 2006.
[6] Frangois Goudail, Frcidciric Galland and Philippe
Rcifrigier “A GENERAL FRAMEWORK FOR DESIGNING
IMAGE PROCESSING ALGORITHMS FOR COHERENT
POLARIMETRIC IMAGES” Physics and Image Processing
Group, Fresnel Institute, UMR 6133 Ecole Nationale
Supkrieure de Physique de Marseille, France.
[7] John Canny “A Computational Approach to Edge
Detection” IEEE Transactions on Pattern Analysis and
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 842
Machine Intelligence (Volume: PAMI-8 , Issue: 6 , Nov.
1986 ).
[8] Jun Li, Sheng Ding “A Research on Improved Canny
Edge Detection Algorithm” International Conference on
Applied Informatics and Communication ICAIC 2011:
Applied Informatics and Communication pp 102-108.
[9] Nadia Jmour, Sehla Zayen, Afef Abdelkrim
“Convolutional neural networks for image
classification” 2018 International Conference on
Advanced Systems and Electric Technologies
(IC_ASET).KING-SUN FU, FELLOW, IEEE, AND AZRIEL
ROSENFELD, FELLOW, IEEE “Pattern Recognition and
Image Processing” IEEE TRANSACTIONS ON
COMPUTERS, VOL. C-25, NO. 12, DECEMBER 1976
BIOGRAPHIES
Manjiree Dattatraya Pahade,
Computer Engineer from D Y Patil
Institute of Engineering and
Technology.
Prathamesh Genbhau Dhumal,
Computer Engineer from D Y Patil
Institute of Engineering and
Technology.
Ashish Tara Bhushan Ranjan,
Computer Engineer from D Y Patil
Institute of Engineering and
Technology
Yash Nandkishor Patil, Computer
Engineer from D Y Patil Institute
of Engineering and Technology.

More Related Content

What's hot

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 networkijcga
 
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
 
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)csandit
 
Multiple Sensor Fusion for Moving Object Detection and Tracking
Multiple Sensor Fusion  for Moving Object Detection and TrackingMultiple Sensor Fusion  for Moving Object Detection and Tracking
Multiple Sensor Fusion for Moving Object Detection and TrackingIRJET Journal
 
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...IRJET Journal
 
IRJET- Comparative Study of Different Techniques for Text as Well as Object D...
IRJET- Comparative Study of Different Techniques for Text as Well as Object D...IRJET- Comparative Study of Different Techniques for Text as Well as Object D...
IRJET- Comparative Study of Different Techniques for Text as Well as Object D...IRJET Journal
 
Human activity detection based on edge point movements and spatio temporal fe...
Human activity detection based on edge point movements and spatio temporal fe...Human activity detection based on edge point movements and spatio temporal fe...
Human activity detection based on edge point movements and spatio temporal fe...IAEME Publication
 
Robust Tracking Via Feature Mapping Method and Support Vector Machine
Robust Tracking Via Feature Mapping Method and Support Vector MachineRobust Tracking Via Feature Mapping Method and Support Vector Machine
Robust Tracking Via Feature Mapping Method and Support Vector MachineIRJET Journal
 
IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...
IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...
IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...IRJET Journal
 
Smart web cam motion detection
Smart web cam motion detectionSmart web cam motion detection
Smart web cam motion detectionAnu Mathew
 
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET Journal
 
A Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage MakerA Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage Makerijtsrd
 
Yoga Posture Classification using Computer Vision
Yoga Posture Classification using Computer VisionYoga Posture Classification using Computer Vision
Yoga Posture Classification using Computer VisionDr. Amarjeet Singh
 
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...IRJET Journal
 
IRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET Journal
 
Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...
Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...
Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...saurav singla
 

What's hot (20)

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
 
AUGMENTED REALITY
AUGMENTED REALITYAUGMENTED REALITY
AUGMENTED REALITY
 
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
 
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
AUTOMATIC THEFT SECURITY SYSTEM (SMART SURVEILLANCE CAMERA)
 
Multiple Sensor Fusion for Moving Object Detection and Tracking
Multiple Sensor Fusion  for Moving Object Detection and TrackingMultiple Sensor Fusion  for Moving Object Detection and Tracking
Multiple Sensor Fusion for Moving Object Detection and Tracking
 
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
IRJET- Review on Human Action Detection in Stored Videos using Support Vector...
 
final ppt
final pptfinal ppt
final ppt
 
IRJET- Comparative Study of Different Techniques for Text as Well as Object D...
IRJET- Comparative Study of Different Techniques for Text as Well as Object D...IRJET- Comparative Study of Different Techniques for Text as Well as Object D...
IRJET- Comparative Study of Different Techniques for Text as Well as Object D...
 
Human activity detection based on edge point movements and spatio temporal fe...
Human activity detection based on edge point movements and spatio temporal fe...Human activity detection based on edge point movements and spatio temporal fe...
Human activity detection based on edge point movements and spatio temporal fe...
 
Robust Tracking Via Feature Mapping Method and Support Vector Machine
Robust Tracking Via Feature Mapping Method and Support Vector MachineRobust Tracking Via Feature Mapping Method and Support Vector Machine
Robust Tracking Via Feature Mapping Method and Support Vector Machine
 
IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...
IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...
IRJET - Creating a Security Alert for the Care Takers Implementing a Vast Dee...
 
Smart web cam motion detection
Smart web cam motion detectionSmart web cam motion detection
Smart web cam motion detection
 
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...IRJET-  	  A Deep Learning based Approach for Automatic Detection of Bike Rid...
IRJET- A Deep Learning based Approach for Automatic Detection of Bike Rid...
 
A Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage MakerA Traffic Sign Classifier Model using Sage Maker
A Traffic Sign Classifier Model using Sage Maker
 
Yoga Posture Classification using Computer Vision
Yoga Posture Classification using Computer VisionYoga Posture Classification using Computer Vision
Yoga Posture Classification using Computer Vision
 
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...IRJET-  	  Convenience Improvement for Graphical Interface using Gesture Dete...
IRJET- Convenience Improvement for Graphical Interface using Gesture Dete...
 
IRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture Recognition
 
Dq4301702706
Dq4301702706Dq4301702706
Dq4301702706
 
G0342039042
G0342039042G0342039042
G0342039042
 
Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...
Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...
Comparative Study of the Deep Learning Neural Networks on the basis of the Hu...
 

Similar to IRJET - Blind Guidance using Smart Cap

Sanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance SystemSanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance SystemIRJET Journal
 
IRJET- Smart Mirror using Eye Gaze Tracking
IRJET- Smart Mirror using Eye Gaze TrackingIRJET- Smart Mirror using Eye Gaze Tracking
IRJET- Smart Mirror using Eye Gaze TrackingIRJET Journal
 
IRJET - Direct Me-Nevigation for Blind People
IRJET -  	  Direct Me-Nevigation for Blind PeopleIRJET -  	  Direct Me-Nevigation for Blind People
IRJET - Direct Me-Nevigation for Blind PeopleIRJET Journal
 
IRJET - Smart E – Cane for the Visually Challenged and Blind using ML Con...
IRJET -  	  Smart E – Cane for the Visually Challenged and Blind using ML Con...IRJET -  	  Smart E – Cane for the Visually Challenged and Blind using ML Con...
IRJET - Smart E – Cane for the Visually Challenged and Blind using ML Con...IRJET Journal
 
ANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNING
ANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNINGANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNING
ANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNINGIRJET Journal
 
Intelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIntelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIRJET Journal
 
Object and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually ImpairedObject and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually ImpairedIRJET Journal
 
ASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOTASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOTIRJET Journal
 
Drishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for BlindDrishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for BlindIRJET Journal
 
IRJET- Alternate Vision Assistance: For the Blind
IRJET- Alternate Vision Assistance: For the BlindIRJET- Alternate Vision Assistance: For the Blind
IRJET- Alternate Vision Assistance: For the BlindIRJET Journal
 
IRJET - Smart Blind Stick using Image Processing
IRJET - Smart Blind Stick using Image ProcessingIRJET - Smart Blind Stick using Image Processing
IRJET - Smart Blind Stick using Image ProcessingIRJET Journal
 
Machine Learning approach for Assisting Visually Impaired
Machine Learning approach for Assisting Visually ImpairedMachine Learning approach for Assisting Visually Impaired
Machine Learning approach for Assisting Visually ImpairedIJTET Journal
 
IRJET- Sign Language Interpreter
IRJET- Sign Language InterpreterIRJET- Sign Language Interpreter
IRJET- Sign Language InterpreterIRJET Journal
 
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...IRJET Journal
 
Intelligent Video Surveillance System using Deep Learning
Intelligent Video Surveillance System using Deep LearningIntelligent Video Surveillance System using Deep Learning
Intelligent Video Surveillance System using Deep LearningIRJET Journal
 
IRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe ModelIRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe ModelIRJET Journal
 
Sign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningSign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningIRJET Journal
 
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry PiIRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry PiIRJET Journal
 
IRJET- Smart Ship Detection using Transfer Learning with ResNet
IRJET- Smart Ship Detection using Transfer Learning with ResNetIRJET- Smart Ship Detection using Transfer Learning with ResNet
IRJET- Smart Ship Detection using Transfer Learning with ResNetIRJET Journal
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET Journal
 

Similar to IRJET - Blind Guidance using Smart Cap (20)

Sanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance SystemSanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance System
 
IRJET- Smart Mirror using Eye Gaze Tracking
IRJET- Smart Mirror using Eye Gaze TrackingIRJET- Smart Mirror using Eye Gaze Tracking
IRJET- Smart Mirror using Eye Gaze Tracking
 
IRJET - Direct Me-Nevigation for Blind People
IRJET -  	  Direct Me-Nevigation for Blind PeopleIRJET -  	  Direct Me-Nevigation for Blind People
IRJET - Direct Me-Nevigation for Blind People
 
IRJET - Smart E – Cane for the Visually Challenged and Blind using ML Con...
IRJET -  	  Smart E – Cane for the Visually Challenged and Blind using ML Con...IRJET -  	  Smart E – Cane for the Visually Challenged and Blind using ML Con...
IRJET - Smart E – Cane for the Visually Challenged and Blind using ML Con...
 
ANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNING
ANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNINGANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNING
ANIMAL SPECIES RECOGNITION SYSTEM USING DEEP LEARNING
 
Intelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIntelligent System For Face Mask Detection
Intelligent System For Face Mask Detection
 
Object and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually ImpairedObject and Currency Detection for the Visually Impaired
Object and Currency Detection for the Visually Impaired
 
ASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOTASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOT
 
Drishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for BlindDrishyam - Virtual Eye for Blind
Drishyam - Virtual Eye for Blind
 
IRJET- Alternate Vision Assistance: For the Blind
IRJET- Alternate Vision Assistance: For the BlindIRJET- Alternate Vision Assistance: For the Blind
IRJET- Alternate Vision Assistance: For the Blind
 
IRJET - Smart Blind Stick using Image Processing
IRJET - Smart Blind Stick using Image ProcessingIRJET - Smart Blind Stick using Image Processing
IRJET - Smart Blind Stick using Image Processing
 
Machine Learning approach for Assisting Visually Impaired
Machine Learning approach for Assisting Visually ImpairedMachine Learning approach for Assisting Visually Impaired
Machine Learning approach for Assisting Visually Impaired
 
IRJET- Sign Language Interpreter
IRJET- Sign Language InterpreterIRJET- Sign Language Interpreter
IRJET- Sign Language Interpreter
 
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
 
Intelligent Video Surveillance System using Deep Learning
Intelligent Video Surveillance System using Deep LearningIntelligent Video Surveillance System using Deep Learning
Intelligent Video Surveillance System using Deep Learning
 
IRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe ModelIRJET- Real-Time Object Detection System using Caffe Model
IRJET- Real-Time Object Detection System using Caffe Model
 
Sign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningSign Language Recognition using Machine Learning
Sign Language Recognition using Machine Learning
 
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry PiIRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
IRJET- Face Detection and Tracking Algorithm using Open CV with Raspberry Pi
 
IRJET- Smart Ship Detection using Transfer Learning with ResNet
IRJET- Smart Ship Detection using Transfer Learning with ResNetIRJET- Smart Ship Detection using Transfer Learning with ResNet
IRJET- Smart Ship Detection using Transfer Learning with ResNet
 
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity MethodIRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
IRJET - Human Eye Pupil Detection Technique using Center of Gravity Method
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 

Recently uploaded (20)

High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 

IRJET - Blind Guidance using Smart Cap

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 839 Blind Guidance using Smart Cap Manjiree Pahade1, Prathamesh Dhumal2, Yash Patil3, Ashish Ranjan4, Rupali Nirgude5 1-5Department of CSE, Dr. D.Y Patil Institute of Engineering and Technology, Ambi, Maharashtra, India ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - Science and technology always try to make human life easier. The people who are having complete blindness or low vision faces many difficulties during their navigation. Blindness can occur due to many reasons including disease, injury or other conditions that limit vision. The aim of our paper is to develop a map for blind which will guide them from their source to destination. The paper shows design and implement a smart cap which helps the blind people to direct the path freely by experiencing their surroundings. The scene around the person will be captured by using a camera and the objects in the surrounding will be detected. The earphones will give a voice output describing the detected objects. The architecture of the system includes the processor Raspberry Pi 3 /Jetson nano, camera, earphones and a power source. The processor collects the frames of the surroundings and convert it to voice output. The device uses TensorFlow API, open-source machine learning which is invented by a team called Google brain, which is for the object detection and classification. TensorFlow helps in creating Models based on machine learning which are capable of identifying and classifying one image from multiple objects. Thus, details corresponding to various objects present in one frame are obtained using TensorFlow API. A Text-to-speech Synthesizer (TTS) software is used for converting the details of the detected object (in text format) to speech output. Key Words: Raspberry Pi 3 / Jetson Nano, Camera, TensorFlow API, Text-to-speech Synthesizer, Google brain. 1.INTRODUCTION There are 285 million People among the whole world’s population who are unable to see. Living independently for such people is hard. Going out alone is not as easy for them as compared to us. To overcome this and make them confident for being independent, we are making smart cap. Smart cap will help a user to understand the directions and reach the desired place. Also, user will be able to understand the things kept around person like fruits, vegetables etc. The main purpose behind this project is to make and provide a better life for blind people and to help those people in disastrous situations. 2. MOTIVATION This office work would now not have been feasible without the guidance and the assist of several folks that in one-way or other contributed and prolonged their treasured assistance within the education and completion of this study. The writer is very thankful to all the researchers on this ever-growing field who have contributed their time and knowledge. I respect all my friends whose direct and indirect contribution helped me a lot to accomplish this survey of tracking down visually impaired people and problems faced by them. I would thank all the teachers and non-teaching team of workers for cooperating with me and providing valuable recommendation and assets which helped me inside the completion of this work. Last but no longer the least. I would really like to thank my circle of relative’s members, who taught me how to build up all the components by taking the care of user too. This project would have become impossible without the contribution, cooperation and support of my teammates. They supplied me enormous support at some stage in this implementation directly and indirectly. 3. RELATED WORK  Brain Port V100 (Wicab Inc, 2017)  Eye cane (Watrin, 2014)  Vision smart glasses (University of Oxford, 2014)  Screen readers (American foundation for the blind 2007)  Smart braille watches (Pulvirent, 2017) 3.1 Brain Port V100 (Wicab Inc, 2017): - Functionality: - It is an electro-Tactile device assisting for mobility and detection of object. Limitation: - Cannot be used to recognise text and sign. 3.2 Eye cane (Watrin, 2014): - Functionality: - Wide angle and covers up to 5 meters. Limitation: - limit in identifying obstacles. 3.3 Vision smart glasses (University of Oxford, 2014): - Functionality: - Enhanced awareness about surrounding. Limitation: - can be used only by people with partial blindness. 3.4 Screen readers (American foundation for visually impaired people 2007): - Functionality: - It is an interface between user, its OS and the computer programs. Limitation: - Limited use for computer and any other electronic devices. 3.5 Smart braille watches (Pulvirent, 2017): - Functionality: - displays the time in brail language and gives notifications.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 840 Limitation: - limited number of notifications and functionalities. 4. THE PROPOSED SYSTEM With object detection it is possible to categorize the various images by comparing with their actual data sets and label it. It is a bounded box framing the objects. Figure 4.1: System Flow The system gets power by the provided batteries and it has a backup of power bank. A camera is placed on the cap which captures the scene continuously through 30fps. The image is compared with the trained data set. The image is processed and then classified into various groups. In this object detection, face identification, motion detection and classification can be done. Figure 4.2: System Architecture The process starts with the camera. First, the camera will click the picture of the surrounding. It describes the scene to the user on the command of user. The voice assistant gives the commands. The image captured by the camera is converted in to grey scale with the use of algorithms. The data is handled properly, parametric reduction, optimal feature identification is performed. The image is processed and differentiate with the available data set. The image is detected when it is matched with stored dataset. Further the image is converted into text format. Then, the scene is described through voice assistant. The text is analyzed and scene is described while converting from voice-to-text format. Navigation system is added to navigate the direction which takes you up to destination. It also guides you about obstacles and potholes. Canny edge detection: It’s an edge detection algorithm. it uses wide number of images for comparisons. The object can be easily detected by comparing its edges with given data set and thus one can classify the images. The algorithm named Canny-edge detection, when compared with rest algorithms and their operations, it performs better, under all circumstances. Why Canny Edge Detection Algorithm?  Detection: The probability of detecting the actual real edges is more. Thus, minimizing the falsely detecting edges.  Localization: There must be minimum gap between real edge and detected Edge.  Number of results: One edge should not give more than one detected edge. Steps in Canny Edge Detection Algorithm five sequential steps: 1. Smoothing The image taken by camera may noisy. The noise reduced by filter which applied on image pixels. S = I × g(x, y) = g(x, y)× I Where, g (x, y) = √ 2. Finding gradients. 3. Non-maximum suppression 4. hysteresis thresholding
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 841 Example: - Figure 4.3: Example of CNN Convolutional Neural Networks and Image Classification: The convolutional neural network (CNN) is a class of deep learning neural networks. CNNs represent image recognition. They are used for analyzing visual images. It frequently works in background for image classification. They’re fast and they’re efficient. Working: CNN is based on pattern recognition. Convolutional neural network is used to find patterns in an image. By convoluting a picture and finding patterns in it. CNN identifies lines and corners in its first few layers. We can study and find more patterns by using neural networks complex features and further, this feature shows CNN are really good for identifying objects in images. The main aim is filtering, done by convolutional layer. While training the image, the weights change, density everything is evaluated. And so, when we evaluate an image, the weights are compared with available pattern to figure out if the object matches previous records. Combinations of different weights in the network is used for forecasting the content. 5. RESULTS AND DISCUSSIONS This project categorizes blind people as partial and fully blind, and works for both. The developed cap could be used in any circumstances and atmospheric conditions, provided that battery must be fully charged. 5.1 Advantage:  Smart Cap is suitable for disaster / emergency situations.  Easy for those people who live alone.  Auto Detection of objects.  Smart Cap easily navigate the paths and detect obstacles.  Smart cap boosts Confidence to user to walk on the busy roads.  It is a non-paper system.  Smart cap converts text to speech, thus making user to understand the content on the paper. 6. CONCLUSION The right way of using technology is when everyone is able to experience and use this. This project work could be boon for those 285 million blind people who are yet to experience the surrounding where we live-by. We tried to make these people confident to live in our society independently and work on their own. Those people could start working on their own in any field of the society. This device provides a real-time navigation and narrative system. Our project will make use of green technology, which is friendly to environment. This work is a proof of our future work, we are hoping to make a standalone version with additional assistive service for the blind persons. 7. REFERENCES [1] Nishajith.A. Nivedha.J, Shilpa.S.Nair, Prof.Mohammed Shaffi.J “Smart Cap – wearable visual guidance system for blind” International Conference on Inventive Research in Computing Applications (ICIRCA 2018). [2] L. Sarojinia1, i. Anburajb , r. Aravindc , m. Karthikeyand and k. Gayathrie “Smart electronic gadget for visually impaired people” indian j.sci.res. 14 (1): 348-352, 2017. [3] Qian Xie, Oussama Remil, Yanwen Guo, Meng Wang, Mingqiang Wei, Jun Wang “Object Detection and Tracking Under Occlusion for Object-level RGB-D Video Segmentation” JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2015. [4] Gene gindi, member, ieee, and james s. Duncan, member “a complete object recognition system as a computer vision course project” IEEE transactions on education, vol. E-30, no. 3, august 1987. [5] Xin Wang, Member, IEEE “Moving Window-Based Double Haar Wavelet Transform for Image Processing” IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 15, NO. 9, SEPTEMBER 2006. [6] Frangois Goudail, Frcidciric Galland and Philippe Rcifrigier “A GENERAL FRAMEWORK FOR DESIGNING IMAGE PROCESSING ALGORITHMS FOR COHERENT POLARIMETRIC IMAGES” Physics and Image Processing Group, Fresnel Institute, UMR 6133 Ecole Nationale Supkrieure de Physique de Marseille, France. [7] John Canny “A Computational Approach to Edge Detection” IEEE Transactions on Pattern Analysis and
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 842 Machine Intelligence (Volume: PAMI-8 , Issue: 6 , Nov. 1986 ). [8] Jun Li, Sheng Ding “A Research on Improved Canny Edge Detection Algorithm” International Conference on Applied Informatics and Communication ICAIC 2011: Applied Informatics and Communication pp 102-108. [9] Nadia Jmour, Sehla Zayen, Afef Abdelkrim “Convolutional neural networks for image classification” 2018 International Conference on Advanced Systems and Electric Technologies (IC_ASET).KING-SUN FU, FELLOW, IEEE, AND AZRIEL ROSENFELD, FELLOW, IEEE “Pattern Recognition and Image Processing” IEEE TRANSACTIONS ON COMPUTERS, VOL. C-25, NO. 12, DECEMBER 1976 BIOGRAPHIES Manjiree Dattatraya Pahade, Computer Engineer from D Y Patil Institute of Engineering and Technology. Prathamesh Genbhau Dhumal, Computer Engineer from D Y Patil Institute of Engineering and Technology. Ashish Tara Bhushan Ranjan, Computer Engineer from D Y Patil Institute of Engineering and Technology Yash Nandkishor Patil, Computer Engineer from D Y Patil Institute of Engineering and Technology.