SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072
Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3824
Voice Recognition(AI): Voice Assistant Robot
Naman Pundir (Author)
Computer Science Department, HMRITM, GGSIPU, DELHI
-------------------------------------------------------------------------***------------------------------------------------------------------------
Abstract — Voice interface is becoming a common feature
in devices such as tablets, smartphones and laptops.
Moreover, voice recognition technology is touted to
mature and become the default method to control of a
variety of interfaces, including mobile devices, windows
and microcontrollers such as Arduino and raspberry pi.
Thus, it is critical to understand the factors that influence
the use of voice activated applications in the public
domain. The present study examined how the perceived
acceptability of using the Voice-Activated Personal
Assistant (VAPA) in devices influences its reported use. If
the devices can listen to the user for the request or handle
the daily affairs, then give the right response, it will be
much easier for users to communicate with their devices
and the devices will be much more “Smart” as a human
assistant. This project is focusing on the Raspberry voice
assistant control development over the voice control
(recognition, generate and analyze corresponding
commands, intelligent responses automatically) that are
needed in daily life. Physically disable person can also use
this Application. Voice SMS is an application developed in
this work that allows a user to record and convert spoken
messages into SMS text message. Speech recognition for
Voice uses a technique based on hidden Markov models
(HMM - Hidden Markov Model). It is currently the most
successful and most flexible approach to speech
recognition. Therefore, we want to talk about one simple
kind of assistant robot that we build it, because this kind of
robot give us more help in our daily needs. This paper talks
about new method to make robot that assist human in
conversational way. After hard working we conclude in
this paper the procedure to make assistant robot using
Raspberry-Pi three model B, speaker, microphone and
supplementary elements.
This project can listen the command and reply by linking
with different cloud sources.
Keywords— HMM (Hidden Markov Model), TTS (Text to
Speech), Intent, Raspberry pi,google api.
I. INTRODUCTION
Many years ago, software programs were developed and
run on the computer. Nowadays, smart phones and all
other smart devices are widely used by all people. This
shows that the market is increasing fast and there are also
more capabilities for Smartphone because of this wide use.
This project is originated from a popular application from
Apple called “Siri” and Google voice Action. Siri application
was released on the date when the iPhone4S was published.
Google Voice Action can be used in any android version
above 4.4. In this work we have developed an application
for sending SMS messages, opening inbuilt Applications like
gallery, settings, camera, messaging etc. which uses
Google's speech recognition engine. The main goal of
application is to use user voice commands to access smart
phone instead of using it manually. As it integrates most of
the mobile phone services for daily use, it could be useful
for getting a more convenient life and it will be helpful for
those people who have disabilities for manual operations.
This is also part of the reason why it has been chosen as the
degree project. In this application user is able to access the
services of smart devices with their voice command. User
can easily access to all over the internet and can even
perform numerous services provided by the devices. In this
Project physically disable person or the person having less
knowledge about smart devices or how to access them
smartly with their voice or speech command.
II. NEED OF THE SYSTEM
Back in the 1980‟s and 1990‟s, home computers didn’t
rely on dedicated monitors to display the operating
systems, applications, and games. Instead of paying extra
for a monitor, most console owners were happy to use their
televisions only. But as far as computers go, the PC model of
dedicated monitor was eventually widely adopted. The
problem for a middle-class human to buy the computer
system should be taken into consideration. So, the need of a
cheap, alternative system raised; where the costly
computer system should have an alternative. Also for
security purpose of home, small offices, there was a
requirement of the system which can provide features such
as facial recognition and voice recognition which should be
available in very cheap rate and small in size. The rate and
the size problem were covered where invented Raspberry
Pi model by embedded manufacturers giving extremely
super quality of minicomputer. Here arises the need of the
system. The Raspberry pi is a series of single board
computer developed in wales by raspberry pi foundation.
All raspberry pi includes the same video-core IV GPU and
either a single core ARMv6 or newer ARMv7 quad-core.it is
of 256 or 512 mb RAM. It basically uses Linux kernel base
operating systems. The install manager of Raspberry pi is
NOOBS. For storage it uses SDHC and micro SDHC.
III. WORKING PROCESS
This software is based on using the Google voice and
speech API’s. The voice is recorded using the Microphone.
Then using Google speech API’s, it is converted to text. The
text is compared with previously configured commands in
configuration command file. The text matches with any of
the commands, thus it performs the specific task. After
finding the required commands the bash command for task
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072
Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3825
is executed. The speed of this process is really very fast and
depend on the speed of the internet connected.
IV. CHECKING MICROPHONE
Initial step of this process is to check whether the
microphone/webcam works properly. We must check
whether it records properly and checking microphone high
volumes, etc are high. First check whether the USB
microphone is connected properly using the command
“lsusb”. Check whether our mic/webcam comes under the
list.
Then checking the recording in highvolumes.to do this,
type the command “alsamixer” in the terminal. Thus an
interface appear, arrow buttons are used to increase the
volumes. Select the particular USB mic/webcam from the
list and check at high volumes. To check recording is done
correctly use the command “arecord –l”.use the command
“arecord –D plughw:1, 0test.wav” to record sound. The
sound is recorded in test.wav.
To listen to the recorded sound, plug in your
headphones in your raspberry pi device and enter the
command “aplay test.wav” in the terminal. Speech
Recognition for intelligent voice assistant application is
done using Google Server, using HMM algorithm. This
process involves the conversion of acoustic speech into a
set of words and is performed by software component.
Accuracy of speech recognition systems differ in vocabulary
size and confusability, speaker dependence vs.
independence, modality of speech (isolated, discontinuous,
or continuous speech, read or spontaneous speech), task
and language constraints. The system consists of five
modules: feature extraction, HMM phone model training,
dictionary preparation, grammar estimation, and sentence
decoding.
Speech recognition systems which are based on Hidden
Markov Models which are todays most widely applied in
modern technologies. They use the word or phoneme as a
unit for modeling. The model output is hidden probabilistic
functions of state and can’t be deterministically specified.
State sequence through model is not exactly known.
V. INSTALLING VOICE RECOGNISTION SOFTWARE IN
RASPBERRY PI
This software utilises Google Voice API’s.To install the
software enter the following commands.
1) Wget –no-check-certificatehttp://goo.gl/KrwrBa -0
PiAUISuite.tar.gz
2) Tar –xvzf PiAUISuite.tar.gz
3) Cd PiAUISuite/Install/
4) Sudo ./InstallAUISuite.sh
5) Wget command in first line uses two dashes (--)
6) Before no check .During installation several questions
may popup. press(y/n) accordingly .some of the questions
include do you want to set keyword?.there ill be also
questions like do you want to set filler flag to zero?, do you
want to install youtube-dl?(to use youtube search).for each
question like this respond with (y/n) accordingly.
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072
Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3826
VI. SETTING UP OWN COMMANDS
We can verify speech to text by using the command
“./speech-recog.sh” in the
directory:/home/pi/PiAUISuite/voice command.this
sodftware is run continuously usng the command “sudo
viocecommand –c” in the terminal.by default the keyword
is “pi” to activate.you can change the keyword and other
commands by opening the command configuration file.this
done by entering the command “voicecommand –e”.by tis
we can find no of keywords and commands.in this each
command is linket to particular task or action. For an
example “youtube==youtube-search...” when it records the
voice as youtube apple, it does the youtube search for
apple.
So if you want to add new voice command just type the
command and its action.for an example for the
command”check internet” that pings the google for
checking the internet connectivity.then in configuration
command file type “check internet==ping google.com”.thus
it pings when you say check internet.
Since raspberry pi can be used for robotics and many other
useful projects therefore voice assistant can be
implemented to the robots controlled by microcontroller
like raspberry pi.
VII. GOOGLE ASSISTANT
Google Assistant is a virtual personal assistant developed
by Google and announced at its developer conference in
May 2016. Unlike Google Now, the Google Assistant can
engage in two-way conversations.
Assistant initially debuted as part of Google's messaging
app Allo, and its voice-activated speaker Google Home.
After a period of exclusivity on the Pixel and Pixel
XL smartphones, it began to be deployed on
other Android devices in February 2017, including third-
party smartphones and Android Wear, and was released as
a standalone app on the iOS operating system in May.
Alongside the announcement of a software development
kit in April 2017, the Assistant has been, and is being,
further extended to support a large variety of devices,
including cars and smart home appliances. The
functionality of the Assistant can also be enhanced by
third-party developers.
Users primarily interact with the Google Assistant
through natural voice, though keyboard input is also
supported. In the same nature and manner as Google Now,
the Assistant is able to search the Internet, schedule events
and alarms, adjust hardware settings on the user's device,
and show information from the user's Google account.
Google has also announced that the Assistant will be able
to identify objects and gather visual information through
the device's camera, and support purchasing products and
sending money.
The Google Assistant library for Python is a turnkey
solution for anyone who wants to quickly integrate the
Assistant into a prototype device. The library is written in
Python and is supported on popular prototyping devices
such as the Raspberry Pi 3.Further amazon has also
introduced their own voice assistant “Alexa” ,Microsoft’s
“Cortana” and apple well known “Siri”. All of them are
equally efficient and strong but the most favourable is
google now, the google assistant. All of these voice
assistants have their own wake up command after which
they link with the database or cloud data and reply in a
very efficient way. According to the survey by satista the
following data has been obtained:
INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056
VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072
Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3827
VIII. CONCLUSIONS
This software system using raspberry pi is a voice
recognition software using the Google API’s .It can be used
in many ways. It also can be used in home automation
system and any other interactive systems. It uses webcam
or an microphone of USB type connected to raspberry pi to
record the voice. Voice recognition is mainly done by using
the Google API’s as it converts voice to text and the
particular task is done for the specific commands. The
coding is done using python. We can give different tasks
for different command. We can add many commands in
command configuration file. We have develop application,
in which user can easily send a message with their voice
command and also tried to use most of the inbuilt
application with voice command. But all these application
have adaptation for the English language. we tried to
develop application in such a way that it will be useful to
the visually impaired persons as the whole of our system
work with a voice command. We are also surveying to use
mailing and calendar where user will be able to mail and
also create a event with the voice command.
The Objective for future development is to develop a voice
engine which can also work for the other local language
like Hindi.
ACKNOWLEDGEMENT
I am highly indebted to Mr. Neven Nikolov (professor
Computer science department, Technical University of
Sofia, Bulgaria) for his guidance and constant supervision
as well as for providing necessary information.
REFERENCES
1. Yunxin Zhao, A Speaker-Independent Continuous
Speech Recognition System Using Continuous Mixture
Gaussian. IEEE TRANSACTIONS ON SPEECH AND
AUDIO PROCESSING, VOL. 1, NO. 3, JULY 1993.
2. Brandon Ballinger, Cyril Allauzen, Alexander
Gruenstein, Johan Schalkwyk, On-Demand Language
Model Interpolation for Mobile Speech Input
INTERSPEECH 2010, 26-30 September 2010,
Makuhari, Chiba, Japan, pp 1812-1815.
3. Ryuichi Nisimura, Jumpei Miyake, Hideki Kawahara
and Toshio Irino, ―Speech-To-Text Input Method For
Web System Using JavaScript_, IEEE SLT 2008 pp 209-
212.
4. S. Katz. Estimation of probabilities from sparse data
for the language model component of a speech
recognizer. In IEEE Transactions on Acoustics, Speech
and Signal Processing, volume 35, pages 400{01,
March 1987.
5. D. Povey, D. Kanevsky, B. Kingsbury, B. Ramabhadran,
G. Saon, and K. Visweswariah. Boosted MMI for model
and feature-space discriminative training. In Proc. of
the Int. Conf. on Acoustics, Speech, and Signal
Processing (ICASSP), 2008.
6. http://developer.android.com/index.html
7. www.stackoverflow.com
8. http://www.tutorialspoint.com/html/

Weitere ähnliche Inhalte

Was ist angesagt?

Experiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- Qualcomm
Experiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- QualcommExperiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- Qualcomm
Experiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- Qualcommvideos
 
1. palma integration of learning across subject discipline
1. palma  integration of learning across subject discipline1. palma  integration of learning across subject discipline
1. palma integration of learning across subject disciplineDonah Basco
 
Wintpresen2 150827214741-lva1-app6892
Wintpresen2 150827214741-lva1-app6892Wintpresen2 150827214741-lva1-app6892
Wintpresen2 150827214741-lva1-app6892Reg Dahl
 
External Device Integration with Mobile
External Device Integration with MobileExternal Device Integration with Mobile
External Device Integration with MobileSoftweb Solutions
 
Freescale i.mx golden presentation for blogger july 2011
Freescale i.mx golden presentation for blogger july 2011Freescale i.mx golden presentation for blogger july 2011
Freescale i.mx golden presentation for blogger july 2011Dylan Ko
 
Phone companion test
Phone companion testPhone companion test
Phone companion testTekObserver
 
IRJET - Digital Notice Board using Raspberry Pi
IRJET - Digital Notice Board using Raspberry PiIRJET - Digital Notice Board using Raspberry Pi
IRJET - Digital Notice Board using Raspberry PiIRJET Journal
 
Cell phones demystified
Cell phones demystifiedCell phones demystified
Cell phones demystifiedJoel May
 
Hip case study tcs iitb
Hip case study tcs iitbHip case study tcs iitb
Hip case study tcs iitbArpan Pal
 
Software Development Engineers Ireland
Software Development Engineers IrelandSoftware Development Engineers Ireland
Software Development Engineers IrelandSean O'Sullivan
 
Building frameworks: from concept to completion
Building frameworks: from concept to completionBuilding frameworks: from concept to completion
Building frameworks: from concept to completionRuben Goncalves
 
Overview of UNIVERGE 3C
Overview of UNIVERGE 3COverview of UNIVERGE 3C
Overview of UNIVERGE 3CTodd Landry
 
Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...
Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...
Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...Edureka!
 

Was ist angesagt? (15)

Experiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- Qualcomm
Experiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- QualcommExperiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- Qualcomm
Experiencias Ăşnicas mĂłviles con tecnologĂ­as de Ăşltima generaciĂłn- Qualcomm
 
TS-1679 Excerpt
TS-1679 ExcerptTS-1679 Excerpt
TS-1679 Excerpt
 
1. palma integration of learning across subject discipline
1. palma  integration of learning across subject discipline1. palma  integration of learning across subject discipline
1. palma integration of learning across subject discipline
 
Svl Oem Offer
Svl Oem OfferSvl Oem Offer
Svl Oem Offer
 
Wintpresen2 150827214741-lva1-app6892
Wintpresen2 150827214741-lva1-app6892Wintpresen2 150827214741-lva1-app6892
Wintpresen2 150827214741-lva1-app6892
 
External Device Integration with Mobile
External Device Integration with MobileExternal Device Integration with Mobile
External Device Integration with Mobile
 
Freescale i.mx golden presentation for blogger july 2011
Freescale i.mx golden presentation for blogger july 2011Freescale i.mx golden presentation for blogger july 2011
Freescale i.mx golden presentation for blogger july 2011
 
Phone companion test
Phone companion testPhone companion test
Phone companion test
 
IRJET - Digital Notice Board using Raspberry Pi
IRJET - Digital Notice Board using Raspberry PiIRJET - Digital Notice Board using Raspberry Pi
IRJET - Digital Notice Board using Raspberry Pi
 
Cell phones demystified
Cell phones demystifiedCell phones demystified
Cell phones demystified
 
Hip case study tcs iitb
Hip case study tcs iitbHip case study tcs iitb
Hip case study tcs iitb
 
Software Development Engineers Ireland
Software Development Engineers IrelandSoftware Development Engineers Ireland
Software Development Engineers Ireland
 
Building frameworks: from concept to completion
Building frameworks: from concept to completionBuilding frameworks: from concept to completion
Building frameworks: from concept to completion
 
Overview of UNIVERGE 3C
Overview of UNIVERGE 3COverview of UNIVERGE 3C
Overview of UNIVERGE 3C
 
Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...
Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...
Raspberry Pi 3 Tutorial | Raspberry Pi 3 Projects | IoT Projects | IoT Tutori...
 

Ähnlich wie IRJET- Voice Recognition(AI) : Voice Assistant Robot

Desktop Based Voice Assistant Application Using Machine Learning Approach
Desktop Based Voice Assistant Application Using Machine Learning ApproachDesktop Based Voice Assistant Application Using Machine Learning Approach
Desktop Based Voice Assistant Application Using Machine Learning ApproachIRJET Journal
 
Speech & Web based appliance control
Speech & Web based appliance controlSpeech & Web based appliance control
Speech & Web based appliance controlMohit Khatri
 
ICT, Importance of programming and programming languages
ICT, Importance of programming and programming languagesICT, Importance of programming and programming languages
ICT, Importance of programming and programming languagesEbin Robinson
 
A Review on Personal Digital Voice Assistant
A Review on Personal Digital Voice AssistantA Review on Personal Digital Voice Assistant
A Review on Personal Digital Voice AssistantIRJET Journal
 
Voice Recognition System for Automobile Safety.
Voice Recognition System for Automobile Safety.Voice Recognition System for Automobile Safety.
Voice Recognition System for Automobile Safety.IRJET Journal
 
Wake-up-word speech recognition using GPS on smart phone
Wake-up-word speech recognition using GPS on smart phoneWake-up-word speech recognition using GPS on smart phone
Wake-up-word speech recognition using GPS on smart phoneIJERA Editor
 
IRJET- Review on Portable Camera based Assistive Text and Label Reading f...
IRJET-  	  Review on Portable Camera based Assistive Text and Label Reading f...IRJET-  	  Review on Portable Camera based Assistive Text and Label Reading f...
IRJET- Review on Portable Camera based Assistive Text and Label Reading f...IRJET Journal
 
“Visual Based Virtual Assistant System”
“Visual Based Virtual Assistant System”“Visual Based Virtual Assistant System”
“Visual Based Virtual Assistant System”IRJET Journal
 
IRJET- Web based Solution for Smart Home Functionality Extension and Control,...
IRJET- Web based Solution for Smart Home Functionality Extension and Control,...IRJET- Web based Solution for Smart Home Functionality Extension and Control,...
IRJET- Web based Solution for Smart Home Functionality Extension and Control,...IRJET Journal
 
IRJET- Voice Controlled Personal Assistant Bot with Smart Storage
IRJET- Voice Controlled Personal Assistant Bot with Smart StorageIRJET- Voice Controlled Personal Assistant Bot with Smart Storage
IRJET- Voice Controlled Personal Assistant Bot with Smart StorageIRJET Journal
 
IRJET- Smart Mirror using Virtual Voice Assistant
IRJET- Smart Mirror using Virtual Voice AssistantIRJET- Smart Mirror using Virtual Voice Assistant
IRJET- Smart Mirror using Virtual Voice AssistantIRJET Journal
 
Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...
Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...
Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...IRJET Journal
 
PROFESSIONAL PROFILE
PROFESSIONAL PROFILEPROFESSIONAL PROFILE
PROFESSIONAL PROFILEMohammad Zuaib
 
IRJET- Blind Reader Using Raspberry Pi
IRJET- Blind Reader Using Raspberry PiIRJET- Blind Reader Using Raspberry Pi
IRJET- Blind Reader Using Raspberry PiIRJET Journal
 
IRJET- A Raspberry Pi based Speaker Recognition System for Access Control
IRJET- A Raspberry Pi based Speaker Recognition System for Access ControlIRJET- A Raspberry Pi based Speaker Recognition System for Access Control
IRJET- A Raspberry Pi based Speaker Recognition System for Access ControlIRJET Journal
 
LANGUAGE TRANSLATOR APP
LANGUAGE TRANSLATOR APPLANGUAGE TRANSLATOR APP
LANGUAGE TRANSLATOR APPIRJET Journal
 
IRJET- Voice Based Home Automation System using Raspberry Pi
IRJET-  	  Voice Based Home Automation System using Raspberry PiIRJET-  	  Voice Based Home Automation System using Raspberry Pi
IRJET- Voice Based Home Automation System using Raspberry PiIRJET Journal
 
SMART LEARNING ASSISTANT
SMART LEARNING ASSISTANTSMART LEARNING ASSISTANT
SMART LEARNING ASSISTANTIRJET Journal
 
IRJET - Sign Language Recognition System
IRJET -  	  Sign Language Recognition SystemIRJET -  	  Sign Language Recognition System
IRJET - Sign Language Recognition SystemIRJET Journal
 
IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)
IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)
IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)IRJET Journal
 

Ähnlich wie IRJET- Voice Recognition(AI) : Voice Assistant Robot (20)

Desktop Based Voice Assistant Application Using Machine Learning Approach
Desktop Based Voice Assistant Application Using Machine Learning ApproachDesktop Based Voice Assistant Application Using Machine Learning Approach
Desktop Based Voice Assistant Application Using Machine Learning Approach
 
Speech & Web based appliance control
Speech & Web based appliance controlSpeech & Web based appliance control
Speech & Web based appliance control
 
ICT, Importance of programming and programming languages
ICT, Importance of programming and programming languagesICT, Importance of programming and programming languages
ICT, Importance of programming and programming languages
 
A Review on Personal Digital Voice Assistant
A Review on Personal Digital Voice AssistantA Review on Personal Digital Voice Assistant
A Review on Personal Digital Voice Assistant
 
Voice Recognition System for Automobile Safety.
Voice Recognition System for Automobile Safety.Voice Recognition System for Automobile Safety.
Voice Recognition System for Automobile Safety.
 
Wake-up-word speech recognition using GPS on smart phone
Wake-up-word speech recognition using GPS on smart phoneWake-up-word speech recognition using GPS on smart phone
Wake-up-word speech recognition using GPS on smart phone
 
IRJET- Review on Portable Camera based Assistive Text and Label Reading f...
IRJET-  	  Review on Portable Camera based Assistive Text and Label Reading f...IRJET-  	  Review on Portable Camera based Assistive Text and Label Reading f...
IRJET- Review on Portable Camera based Assistive Text and Label Reading f...
 
“Visual Based Virtual Assistant System”
“Visual Based Virtual Assistant System”“Visual Based Virtual Assistant System”
“Visual Based Virtual Assistant System”
 
IRJET- Web based Solution for Smart Home Functionality Extension and Control,...
IRJET- Web based Solution for Smart Home Functionality Extension and Control,...IRJET- Web based Solution for Smart Home Functionality Extension and Control,...
IRJET- Web based Solution for Smart Home Functionality Extension and Control,...
 
IRJET- Voice Controlled Personal Assistant Bot with Smart Storage
IRJET- Voice Controlled Personal Assistant Bot with Smart StorageIRJET- Voice Controlled Personal Assistant Bot with Smart Storage
IRJET- Voice Controlled Personal Assistant Bot with Smart Storage
 
IRJET- Smart Mirror using Virtual Voice Assistant
IRJET- Smart Mirror using Virtual Voice AssistantIRJET- Smart Mirror using Virtual Voice Assistant
IRJET- Smart Mirror using Virtual Voice Assistant
 
Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...
Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...
Study on Processor used in Virtual Assistants: Google Assistant, Alexa, Siri ...
 
PROFESSIONAL PROFILE
PROFESSIONAL PROFILEPROFESSIONAL PROFILE
PROFESSIONAL PROFILE
 
IRJET- Blind Reader Using Raspberry Pi
IRJET- Blind Reader Using Raspberry PiIRJET- Blind Reader Using Raspberry Pi
IRJET- Blind Reader Using Raspberry Pi
 
IRJET- A Raspberry Pi based Speaker Recognition System for Access Control
IRJET- A Raspberry Pi based Speaker Recognition System for Access ControlIRJET- A Raspberry Pi based Speaker Recognition System for Access Control
IRJET- A Raspberry Pi based Speaker Recognition System for Access Control
 
LANGUAGE TRANSLATOR APP
LANGUAGE TRANSLATOR APPLANGUAGE TRANSLATOR APP
LANGUAGE TRANSLATOR APP
 
IRJET- Voice Based Home Automation System using Raspberry Pi
IRJET-  	  Voice Based Home Automation System using Raspberry PiIRJET-  	  Voice Based Home Automation System using Raspberry Pi
IRJET- Voice Based Home Automation System using Raspberry Pi
 
SMART LEARNING ASSISTANT
SMART LEARNING ASSISTANTSMART LEARNING ASSISTANT
SMART LEARNING ASSISTANT
 
IRJET - Sign Language Recognition System
IRJET -  	  Sign Language Recognition SystemIRJET -  	  Sign Language Recognition System
IRJET - Sign Language Recognition System
 
IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)
IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)
IDE Code Compiler for the physically challenged (Deaf, Blind & Mute)
 

Mehr von 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
 

Mehr von 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...
 

KĂźrzlich hochgeladen

Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsArindam Chakraborty, Ph.D., P.E. (CA, TX)
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfrs7054576148
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 

KĂźrzlich hochgeladen (20)

Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Intro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdfIntro To Electric Vehicles PDF Notes.pdf
Intro To Electric Vehicles PDF Notes.pdf
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 

IRJET- Voice Recognition(AI) : Voice Assistant Robot

  • 1. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072 Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3824 Voice Recognition(AI): Voice Assistant Robot Naman Pundir (Author) Computer Science Department, HMRITM, GGSIPU, DELHI -------------------------------------------------------------------------***------------------------------------------------------------------------ Abstract — Voice interface is becoming a common feature in devices such as tablets, smartphones and laptops. Moreover, voice recognition technology is touted to mature and become the default method to control of a variety of interfaces, including mobile devices, windows and microcontrollers such as Arduino and raspberry pi. Thus, it is critical to understand the factors that influence the use of voice activated applications in the public domain. The present study examined how the perceived acceptability of using the Voice-Activated Personal Assistant (VAPA) in devices influences its reported use. If the devices can listen to the user for the request or handle the daily affairs, then give the right response, it will be much easier for users to communicate with their devices and the devices will be much more “Smart” as a human assistant. This project is focusing on the Raspberry voice assistant control development over the voice control (recognition, generate and analyze corresponding commands, intelligent responses automatically) that are needed in daily life. Physically disable person can also use this Application. Voice SMS is an application developed in this work that allows a user to record and convert spoken messages into SMS text message. Speech recognition for Voice uses a technique based on hidden Markov models (HMM - Hidden Markov Model). It is currently the most successful and most flexible approach to speech recognition. Therefore, we want to talk about one simple kind of assistant robot that we build it, because this kind of robot give us more help in our daily needs. This paper talks about new method to make robot that assist human in conversational way. After hard working we conclude in this paper the procedure to make assistant robot using Raspberry-Pi three model B, speaker, microphone and supplementary elements. This project can listen the command and reply by linking with different cloud sources. Keywords— HMM (Hidden Markov Model), TTS (Text to Speech), Intent, Raspberry pi,google api. I. INTRODUCTION Many years ago, software programs were developed and run on the computer. Nowadays, smart phones and all other smart devices are widely used by all people. This shows that the market is increasing fast and there are also more capabilities for Smartphone because of this wide use. This project is originated from a popular application from Apple called “Siri” and Google voice Action. Siri application was released on the date when the iPhone4S was published. Google Voice Action can be used in any android version above 4.4. In this work we have developed an application for sending SMS messages, opening inbuilt Applications like gallery, settings, camera, messaging etc. which uses Google's speech recognition engine. The main goal of application is to use user voice commands to access smart phone instead of using it manually. As it integrates most of the mobile phone services for daily use, it could be useful for getting a more convenient life and it will be helpful for those people who have disabilities for manual operations. This is also part of the reason why it has been chosen as the degree project. In this application user is able to access the services of smart devices with their voice command. User can easily access to all over the internet and can even perform numerous services provided by the devices. In this Project physically disable person or the person having less knowledge about smart devices or how to access them smartly with their voice or speech command. II. NEED OF THE SYSTEM Back in the 1980‟s and 1990‟s, home computers didn’t rely on dedicated monitors to display the operating systems, applications, and games. Instead of paying extra for a monitor, most console owners were happy to use their televisions only. But as far as computers go, the PC model of dedicated monitor was eventually widely adopted. The problem for a middle-class human to buy the computer system should be taken into consideration. So, the need of a cheap, alternative system raised; where the costly computer system should have an alternative. Also for security purpose of home, small offices, there was a requirement of the system which can provide features such as facial recognition and voice recognition which should be available in very cheap rate and small in size. The rate and the size problem were covered where invented Raspberry Pi model by embedded manufacturers giving extremely super quality of minicomputer. Here arises the need of the system. The Raspberry pi is a series of single board computer developed in wales by raspberry pi foundation. All raspberry pi includes the same video-core IV GPU and either a single core ARMv6 or newer ARMv7 quad-core.it is of 256 or 512 mb RAM. It basically uses Linux kernel base operating systems. The install manager of Raspberry pi is NOOBS. For storage it uses SDHC and micro SDHC. III. WORKING PROCESS This software is based on using the Google voice and speech API’s. The voice is recorded using the Microphone. Then using Google speech API’s, it is converted to text. The text is compared with previously configured commands in configuration command file. The text matches with any of the commands, thus it performs the specific task. After finding the required commands the bash command for task
  • 2. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072 Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3825 is executed. The speed of this process is really very fast and depend on the speed of the internet connected. IV. CHECKING MICROPHONE Initial step of this process is to check whether the microphone/webcam works properly. We must check whether it records properly and checking microphone high volumes, etc are high. First check whether the USB microphone is connected properly using the command “lsusb”. Check whether our mic/webcam comes under the list. Then checking the recording in highvolumes.to do this, type the command “alsamixer” in the terminal. Thus an interface appear, arrow buttons are used to increase the volumes. Select the particular USB mic/webcam from the list and check at high volumes. To check recording is done correctly use the command “arecord –l”.use the command “arecord –D plughw:1, 0test.wav” to record sound. The sound is recorded in test.wav. To listen to the recorded sound, plug in your headphones in your raspberry pi device and enter the command “aplay test.wav” in the terminal. Speech Recognition for intelligent voice assistant application is done using Google Server, using HMM algorithm. This process involves the conversion of acoustic speech into a set of words and is performed by software component. Accuracy of speech recognition systems differ in vocabulary size and confusability, speaker dependence vs. independence, modality of speech (isolated, discontinuous, or continuous speech, read or spontaneous speech), task and language constraints. The system consists of five modules: feature extraction, HMM phone model training, dictionary preparation, grammar estimation, and sentence decoding. Speech recognition systems which are based on Hidden Markov Models which are todays most widely applied in modern technologies. They use the word or phoneme as a unit for modeling. The model output is hidden probabilistic functions of state and can’t be deterministically specified. State sequence through model is not exactly known. V. INSTALLING VOICE RECOGNISTION SOFTWARE IN RASPBERRY PI This software utilises Google Voice API’s.To install the software enter the following commands. 1) Wget –no-check-certificatehttp://goo.gl/KrwrBa -0 PiAUISuite.tar.gz 2) Tar –xvzf PiAUISuite.tar.gz 3) Cd PiAUISuite/Install/ 4) Sudo ./InstallAUISuite.sh 5) Wget command in first line uses two dashes (--) 6) Before no check .During installation several questions may popup. press(y/n) accordingly .some of the questions include do you want to set keyword?.there ill be also questions like do you want to set filler flag to zero?, do you want to install youtube-dl?(to use youtube search).for each question like this respond with (y/n) accordingly.
  • 3. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072 Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3826 VI. SETTING UP OWN COMMANDS We can verify speech to text by using the command “./speech-recog.sh” in the directory:/home/pi/PiAUISuite/voice command.this sodftware is run continuously usng the command “sudo viocecommand –c” in the terminal.by default the keyword is “pi” to activate.you can change the keyword and other commands by opening the command configuration file.this done by entering the command “voicecommand –e”.by tis we can find no of keywords and commands.in this each command is linket to particular task or action. For an example “youtube==youtube-search...” when it records the voice as youtube apple, it does the youtube search for apple. So if you want to add new voice command just type the command and its action.for an example for the command”check internet” that pings the google for checking the internet connectivity.then in configuration command file type “check internet==ping google.com”.thus it pings when you say check internet. Since raspberry pi can be used for robotics and many other useful projects therefore voice assistant can be implemented to the robots controlled by microcontroller like raspberry pi. VII. GOOGLE ASSISTANT Google Assistant is a virtual personal assistant developed by Google and announced at its developer conference in May 2016. Unlike Google Now, the Google Assistant can engage in two-way conversations. Assistant initially debuted as part of Google's messaging app Allo, and its voice-activated speaker Google Home. After a period of exclusivity on the Pixel and Pixel XL smartphones, it began to be deployed on other Android devices in February 2017, including third- party smartphones and Android Wear, and was released as a standalone app on the iOS operating system in May. Alongside the announcement of a software development kit in April 2017, the Assistant has been, and is being, further extended to support a large variety of devices, including cars and smart home appliances. The functionality of the Assistant can also be enhanced by third-party developers. Users primarily interact with the Google Assistant through natural voice, though keyboard input is also supported. In the same nature and manner as Google Now, the Assistant is able to search the Internet, schedule events and alarms, adjust hardware settings on the user's device, and show information from the user's Google account. Google has also announced that the Assistant will be able to identify objects and gather visual information through the device's camera, and support purchasing products and sending money. The Google Assistant library for Python is a turnkey solution for anyone who wants to quickly integrate the Assistant into a prototype device. The library is written in Python and is supported on popular prototyping devices such as the Raspberry Pi 3.Further amazon has also introduced their own voice assistant “Alexa” ,Microsoft’s “Cortana” and apple well known “Siri”. All of them are equally efficient and strong but the most favourable is google now, the google assistant. All of these voice assistants have their own wake up command after which they link with the database or cloud data and reply in a very efficient way. According to the survey by satista the following data has been obtained:
  • 4. INTERNATIONAL RESEARCH JOURNAL OF ENGINEERING AND TECHNOLOGY (IRJET) E-ISSN: 2395-0056 VOLUME: 06 ISSUE: 06 | JUNE 2019 WWW.IRJET.NET P-ISSN: 2395-0072 Š 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3827 VIII. CONCLUSIONS This software system using raspberry pi is a voice recognition software using the Google API’s .It can be used in many ways. It also can be used in home automation system and any other interactive systems. It uses webcam or an microphone of USB type connected to raspberry pi to record the voice. Voice recognition is mainly done by using the Google API’s as it converts voice to text and the particular task is done for the specific commands. The coding is done using python. We can give different tasks for different command. We can add many commands in command configuration file. We have develop application, in which user can easily send a message with their voice command and also tried to use most of the inbuilt application with voice command. But all these application have adaptation for the English language. we tried to develop application in such a way that it will be useful to the visually impaired persons as the whole of our system work with a voice command. We are also surveying to use mailing and calendar where user will be able to mail and also create a event with the voice command. The Objective for future development is to develop a voice engine which can also work for the other local language like Hindi. ACKNOWLEDGEMENT I am highly indebted to Mr. Neven Nikolov (professor Computer science department, Technical University of Sofia, Bulgaria) for his guidance and constant supervision as well as for providing necessary information. REFERENCES 1. Yunxin Zhao, A Speaker-Independent Continuous Speech Recognition System Using Continuous Mixture Gaussian. IEEE TRANSACTIONS ON SPEECH AND AUDIO PROCESSING, VOL. 1, NO. 3, JULY 1993. 2. Brandon Ballinger, Cyril Allauzen, Alexander Gruenstein, Johan Schalkwyk, On-Demand Language Model Interpolation for Mobile Speech Input INTERSPEECH 2010, 26-30 September 2010, Makuhari, Chiba, Japan, pp 1812-1815. 3. Ryuichi Nisimura, Jumpei Miyake, Hideki Kawahara and Toshio Irino, ―Speech-To-Text Input Method For Web System Using JavaScript_, IEEE SLT 2008 pp 209- 212. 4. S. Katz. Estimation of probabilities from sparse data for the language model component of a speech recognizer. In IEEE Transactions on Acoustics, Speech and Signal Processing, volume 35, pages 400{01, March 1987. 5. D. Povey, D. Kanevsky, B. Kingsbury, B. Ramabhadran, G. Saon, and K. Visweswariah. Boosted MMI for model and feature-space discriminative training. In Proc. of the Int. Conf. on Acoustics, Speech, and Signal Processing (ICASSP), 2008. 6. http://developer.android.com/index.html 7. www.stackoverflow.com 8. http://www.tutorialspoint.com/html/