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: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1950
Speaker Identification & Verification Using MFCC & SVM
Ahmed Sajjad1, Ayesha Shirazi2, Nagma Tabassum3, Mohd Saquib4, Naushad Sheikh5
1Professor, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering & Technology,
Nagpur, Maharashtra, India
2Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering &
Technology, Nagpur, Maharashtra, India
3 Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering
& Technology, Nagpur, Maharashtra, India
4Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering &
Technology, Nagpur, Maharashtra, India
5Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering &
Technology, Nagpur, Maharashtra, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Speaker recognition is a developing source of
security nowadays. Speaker recognition has a wide scope in
future applications such as voice dialing, database access
services, information services, security control, hospital,
laboratories, industries etc. Speakerrecognition istheprocess
of automatically verifying and identifying the person who is
speaking. This project is used to recognize the person who is
speaking. Speaker recognition has two major parts speaker
identification and speaker verification. The speaker
recognition can be done by using two methods that is text
dependent and text independent. This paper represents
speaker identificationandverificationusingspeechdependent
process. In this process first the features are extracted from
voice and then those features are matched or verified in order
to recognize the speaker. Here for feature extraction we are
using MFCC (Mel Frequency Cepstral Coefficient) technique as
it gives a great performance for making it robust, accurate,
faster and computationally efficient. Alsoforfeaturematching
SVM (Support Vector Machine) is used.
Key Words: Speaker recognition, speaker identification,
speaker verification, text dependent, text independent,
feature extraction, MFCC, SVM
1. INTRODUCTION
The most convenient way of communication since
ancient times is talking i.e. speaking to each other.
Whenever we speak to someone we convey
information in the form of words or voice or to be
prudent sayspeech as this project isrelatedtoit. When
air passes through the vocal tract of a person while
speaking, inhaling etc. the vocal folds reflects this air
which in turn produces speech. Hence speech is
produced due to vibration in vocal system of a human
body. Since every human being has a different vocal
tract they produce a different sounds or speech. The
aim of this project is to identify and hence verify
different speeches or person. This recognition of a
particular person through its speech automatically
using a biometric device is done by using MFCC and
SVM. MFCC and SVM are used as they give maximum
accuracy as compared to LPCC, LPC, HPC, etc. The
human pitch(an important characteristic of human
voice) varies with the change in background
noise(traffic, creeping of birds, unwanted sounds),
human emotions(stress, happiness, envy), human
health problems(cough, cold). These variations are
easily eliminated in MFCC and SVM giving a high
accuracy up to 95%. Also these are easily to workwith.
2.1 Speech Production
Speech is produced with the help of vocal folds. The vocal
system of a human being is responsible for the generationof
speech . The human vocal system consist of nasal cavity,lips,
teeth, glottis, tongue, palate, larynx, etc.
Figure 1: Human Speech Production System
“Speech is produced by air pressure waves emanating
(emitting) from the mouth & the nostrils of a speaker.” As
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1951
defined by Huang et al (2001)[1]. In other words speech is
the ability to express feelings & thoughts by fluent sounds &
gestures.
2.2 Speech Recognition
Speech recognition is nothingbutconveyinginformation toa
computer, having it recognizes what we are saying, and
finally doing this in real time.
Speech recognition has two functions identification
and verification respectively. Speech identification is the
process of identifying the speaker from the data base. It is a
1:N match. The voice given at the input is compared with
voice available in data base until the voice is matched. If the
voice is matches it means the speech is identified from N
database otherwise the output as ‘match not found’. Speech
verification is the process of accepting or rejecting the
identity of a speaker. It is a 1:1 match. This isa linearprocess
where the input voice is checked with only one data and the
result will be obtain as true or false, yes or no.
Figure 2: Speaker identification & verification
process
Speech recognition can be done by using two
processes:
Text Dependent: The text must be same at the time of
feeding (preparing database) and while giving the input for
recognition. This is know as text dependent process. In this
process we can also use phrases or pins.
Text Independent: The process is said to be text
independent, when the text at the time of feeding and
verification is different. In this case there is no restriction
over text
3. FEATURE EXTRACTION
It is the first and very important process of speaker
recognition. It extracts the primary information from the
speech and removes the other unnecessary data like
background noise, other interruptions (stress, emotions,
environmental conditions).
3.1 MFCC
Mel Frequency Cepstral Coefficient was introducedbyDavis
and Mermelstein in the 1980s. MFCC is most popular
technique and commonly used in most of the application of
speech signal for feature extraction[2]. We use MFCC
because it is analogous to human hearing mechanism.
The MFCC consists of five major steps: pre-processing,
windowing, FFT (Fast Fourier Transform), mel-frequency
wrapping and cepstrum. The input signal is given to the
MFCC and we get the desired coefficient known as MFCC.
Speech waveform (Input signal)
Spectrum
Mel spectrum
MFCC
Figure 3: Extraction process of MFCC
Pre-processing:pre-processingincludesfiltering,filteringis
converting the given voice signal in a form which is suitable
for the computer. Pre-processing is segregating the voice
part from the unvoiced part.
Windowing: It is usedfor minimizingthespectral distortion.
For this we are using hamming window which is set to make
frame blocking at 20-25 ms in order to achieve a stationary
behavior. Hamming window provides continuity at the
beginning and end of the each frame. It provides a better
frequency resolution. The result of windowing is given as
Y(n) = X(n) x w(n)
Speaker
identification
Speaker 1
Speaker 2
Speaker 3
Speaker 4
Is this Speaker 1?Verification
Pre-processing
Windowing
FFT
Mel-frequency wrapping
Cepstrum
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1952
Where,
Y(n) – output signal
X(n) – input signal
w(n) – hamming window
FFT (Fast Fourier Transform): FFT is the most important
step of MFCC is to construct the fast fourier transform of
each frame which extract componentsfromthesignalsatthe
rate of 10 ms. Fast fourier transform converts each N
number of samples from time domain to frequency domain.
The sizes of FFT are 512, 1024, 2048. It is used to obtain
magnitude frequency response.
Mel-Frequency Wrapping: According to a psychological
survey human presentation of frequency content of voice or
speech is not proportional or can say does notfollowa linear
scale. For measurement of different pitch mel scale is used.
“One mel is defined as one thousands of the pitch of a 1kHz
tone[1].” Mel scale frequency can be approximated by
equation:
B(f) = 2595 log10 (1 + f / 700)
The simulation of spectrum is done by using filter bank. The
triangular band pass frequency response is use as a filter
bank. The position of filter bank is equally spaced by using
mel-scale.
Cepstrum: The final step of MFCC is cepstrum in this step,
Mel spectrumcoefficients areconverted into timedomainby
using DCT (Discrete Cosine Transform). The result will be
obtained as MFCC.
4. FEATURE MATCHING
Feature matching is the process of identifying feature from
two similar database. One knows as source and the other
known as target.
4.1 SVM
SVM was developed by Vapinik in 1998. It is one of the most
important developments in patternrecognitioninthelast10
years[3]. As this technique givesmoreaccuracyascompared
to techniques like neural network, vector quantization etc.
Figure 4: Linear Support Vector Machine
SVM is a simple and effective algorithm. It is a linear
classifier[4] i.e. it can contain only two components ata time
and gives a proportional output. Also it can be known as a
comparator as it has a binary output it gives output as yes or
no, accept or reject, 0 or 1 etc. In this project, we are using
more than two components for better efficiency, hence we
are using N number of SVM.
5. CONCLUSIONS
This paper describes a procedure for speaker recognition
using MFCC and SVM. MFCC is used for feature extraction
whereas SVM is used forfeatureverification.Theimportance
of MFCC and SVM and why they are widely used is properly
described in this paper. Instead of SVM techniques like
GMM(Gaussian Mixture Model) and HMM(Hidden Markov
Model) can be used in future as they are easier to use,
require less data and gives better accuracy. The future
application of this project are voice dialing in mobilephones
and telephones, hands free dialing in Wireless Bluetooth
headsets, biometric login to telephone aided shopping
systems and numeric entry modules.
ACKNOWLEDGEMENT
I would like to thank Prof. Dr. Ahmed Sajjad Khan for the
giving the idea of this project.
REFERENCES
[1] Huang, X, Acero, A. & Hon, H. “Spoken language
processing – A guide to theory, algorithm, prentice hall
PTR”, New Jersey (2001).
[2] Jyoti B. Ramgire and Prof. Sumati M. Jagdale, “A survey
on speaker recognition with various feature extraction
and classification techniques”, IRJET, Volume 3, Issue 4,
April 2016, pp. 709-712.
[3] Geeta Nijhawan and M.K. Soni, “Speaker recognition
using support vector machine”, International Journal of
Computer Application, Volume 87-No.2, February 2014.
[4] Simon Haykin, McMaster University, Hamilton, Ontario,
Canada, Neural Networks a ComprehensiveFoundation,
2nd edition, pp. 256-347.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1953
BIOGRAPHIES
Prof. Dr. Ahmed Sajjad Khan
(PhD-Cellular Automata Modelling
and processing speech signal)
Ayesha Shirazi
Graduation Student
Nagpur University
Nagma Tabassum Shekh
Graduation Student
Nagpur University
Mohammad Saquib
Graduation Student
Nagpur University
Naushad Sheikh
Graduation Student
Nagpur University

More Related Content

What's hot

Speaker identification using mel frequency
Speaker identification using mel frequency Speaker identification using mel frequency
Speaker identification using mel frequency Phan Duy
 
Environmental Sound detection Using MFCC technique
Environmental Sound detection Using MFCC techniqueEnvironmental Sound detection Using MFCC technique
Environmental Sound detection Using MFCC techniquePankaj Kumar
 
IRJET- Voice based Gender Recognition
IRJET- Voice based Gender RecognitionIRJET- Voice based Gender Recognition
IRJET- Voice based Gender RecognitionIRJET Journal
 
On the use of voice activity detection in speech emotion recognition
On the use of voice activity detection in speech emotion recognitionOn the use of voice activity detection in speech emotion recognition
On the use of voice activity detection in speech emotion recognitionjournalBEEI
 
multirate signal processing for speech
multirate signal processing for speechmultirate signal processing for speech
multirate signal processing for speechRudra Prasad Maiti
 
Hindi digits recognition system on speech data collected in different natural...
Hindi digits recognition system on speech data collected in different natural...Hindi digits recognition system on speech data collected in different natural...
Hindi digits recognition system on speech data collected in different natural...csandit
 
Wavelet Based Noise Robust Features for Speaker Recognition
Wavelet Based Noise Robust Features for Speaker RecognitionWavelet Based Noise Robust Features for Speaker Recognition
Wavelet Based Noise Robust Features for Speaker RecognitionCSCJournals
 
COLEA : A MATLAB Tool for Speech Analysis
COLEA : A MATLAB Tool for Speech AnalysisCOLEA : A MATLAB Tool for Speech Analysis
COLEA : A MATLAB Tool for Speech AnalysisRushin Shah
 
Real Time Speaker Identification System – Design, Implementation and Validation
Real Time Speaker Identification System – Design, Implementation and ValidationReal Time Speaker Identification System – Design, Implementation and Validation
Real Time Speaker Identification System – Design, Implementation and ValidationIDES Editor
 
Course report-islam-taharimul (1)
Course report-islam-taharimul (1)Course report-islam-taharimul (1)
Course report-islam-taharimul (1)TANVIRAHMED611926
 
Speaker recognition in android
Speaker recognition in androidSpeaker recognition in android
Speaker recognition in androidAnshuli Mittal
 
Text-Independent Speaker Verification
Text-Independent Speaker VerificationText-Independent Speaker Verification
Text-Independent Speaker VerificationCody Ray
 
Wavelet Based Feature Extraction for the Indonesian CV Syllables Sound
Wavelet Based Feature Extraction for the Indonesian CV Syllables SoundWavelet Based Feature Extraction for the Indonesian CV Syllables Sound
Wavelet Based Feature Extraction for the Indonesian CV Syllables SoundTELKOMNIKA JOURNAL
 
Human Emotion Recognition From Speech
Human Emotion Recognition From SpeechHuman Emotion Recognition From Speech
Human Emotion Recognition From SpeechIJERA Editor
 
A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...
A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...
A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...CSCJournals
 

What's hot (20)

Speaker identification using mel frequency
Speaker identification using mel frequency Speaker identification using mel frequency
Speaker identification using mel frequency
 
Environmental Sound detection Using MFCC technique
Environmental Sound detection Using MFCC techniqueEnvironmental Sound detection Using MFCC technique
Environmental Sound detection Using MFCC technique
 
IRJET- Voice based Gender Recognition
IRJET- Voice based Gender RecognitionIRJET- Voice based Gender Recognition
IRJET- Voice based Gender Recognition
 
On the use of voice activity detection in speech emotion recognition
On the use of voice activity detection in speech emotion recognitionOn the use of voice activity detection in speech emotion recognition
On the use of voice activity detection in speech emotion recognition
 
multirate signal processing for speech
multirate signal processing for speechmultirate signal processing for speech
multirate signal processing for speech
 
Hindi digits recognition system on speech data collected in different natural...
Hindi digits recognition system on speech data collected in different natural...Hindi digits recognition system on speech data collected in different natural...
Hindi digits recognition system on speech data collected in different natural...
 
Wavelet Based Noise Robust Features for Speaker Recognition
Wavelet Based Noise Robust Features for Speaker RecognitionWavelet Based Noise Robust Features for Speaker Recognition
Wavelet Based Noise Robust Features for Speaker Recognition
 
COLEA : A MATLAB Tool for Speech Analysis
COLEA : A MATLAB Tool for Speech AnalysisCOLEA : A MATLAB Tool for Speech Analysis
COLEA : A MATLAB Tool for Speech Analysis
 
Real Time Speaker Identification System – Design, Implementation and Validation
Real Time Speaker Identification System – Design, Implementation and ValidationReal Time Speaker Identification System – Design, Implementation and Validation
Real Time Speaker Identification System – Design, Implementation and Validation
 
speech enhancement
speech enhancementspeech enhancement
speech enhancement
 
Dy36749754
Dy36749754Dy36749754
Dy36749754
 
Course report-islam-taharimul (1)
Course report-islam-taharimul (1)Course report-islam-taharimul (1)
Course report-islam-taharimul (1)
 
Speaker recognition in android
Speaker recognition in androidSpeaker recognition in android
Speaker recognition in android
 
Text-Independent Speaker Verification
Text-Independent Speaker VerificationText-Independent Speaker Verification
Text-Independent Speaker Verification
 
Speech Recognition No Code
Speech Recognition No CodeSpeech Recognition No Code
Speech Recognition No Code
 
Speaker recognition.
Speaker recognition.Speaker recognition.
Speaker recognition.
 
Wavelet Based Feature Extraction for the Indonesian CV Syllables Sound
Wavelet Based Feature Extraction for the Indonesian CV Syllables SoundWavelet Based Feature Extraction for the Indonesian CV Syllables Sound
Wavelet Based Feature Extraction for the Indonesian CV Syllables Sound
 
Human Emotion Recognition From Speech
Human Emotion Recognition From SpeechHuman Emotion Recognition From Speech
Human Emotion Recognition From Speech
 
Speech Signal Processing
Speech Signal ProcessingSpeech Signal Processing
Speech Signal Processing
 
A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...
A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...
A New Method for Pitch Tracking and Voicing Decision Based on Spectral Multi-...
 

Similar to Speaker Identification & Verification Using MFCC & SVM

A Review On Speech Feature Techniques And Classification Techniques
A Review On Speech Feature Techniques And Classification TechniquesA Review On Speech Feature Techniques And Classification Techniques
A Review On Speech Feature Techniques And Classification TechniquesNicole Heredia
 
Intelligent Arabic letters speech recognition system based on mel frequency c...
Intelligent Arabic letters speech recognition system based on mel frequency c...Intelligent Arabic letters speech recognition system based on mel frequency c...
Intelligent Arabic letters speech recognition system based on mel frequency c...IJECEIAES
 
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...IRJET Journal
 
Voice Signal Synthesis using Non Negative Matrix Factorization
Voice Signal Synthesis using Non Negative Matrix FactorizationVoice Signal Synthesis using Non Negative Matrix Factorization
Voice Signal Synthesis using Non Negative Matrix FactorizationIRJET Journal
 
A comparison of different support vector machine kernels for artificial speec...
A comparison of different support vector machine kernels for artificial speec...A comparison of different support vector machine kernels for artificial speec...
A comparison of different support vector machine kernels for artificial speec...TELKOMNIKA JOURNAL
 
Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...IOSR Journals
 
Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...IOSR Journals
 
A survey on Enhancements in Speech Recognition
A survey on Enhancements in Speech RecognitionA survey on Enhancements in Speech Recognition
A survey on Enhancements in Speech RecognitionIRJET Journal
 
A Novel, Robust, Hierarchical, Text-Independent Speaker Recognition Technique
A Novel, Robust, Hierarchical, Text-Independent Speaker Recognition TechniqueA Novel, Robust, Hierarchical, Text-Independent Speaker Recognition Technique
A Novel, Robust, Hierarchical, Text-Independent Speaker Recognition TechniqueCSCJournals
 
IRJET- Emotion recognition using Speech Signal: A Review
IRJET-  	  Emotion recognition using Speech Signal: A ReviewIRJET-  	  Emotion recognition using Speech Signal: A Review
IRJET- Emotion recognition using Speech Signal: A ReviewIRJET Journal
 
ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION
ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION
ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION ijcsit
 
Voice biometric recognition
Voice biometric recognitionVoice biometric recognition
Voice biometric recognitionphyuhsan
 
Speaker recognition on matlab
Speaker recognition on matlabSpeaker recognition on matlab
Speaker recognition on matlabArcanjo Salazaku
 
AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...
AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...
AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...IJCSEA Journal
 
Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...IRJET Journal
 
Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...IRJET Journal
 

Similar to Speaker Identification & Verification Using MFCC & SVM (20)

A Review On Speech Feature Techniques And Classification Techniques
A Review On Speech Feature Techniques And Classification TechniquesA Review On Speech Feature Techniques And Classification Techniques
A Review On Speech Feature Techniques And Classification Techniques
 
Intelligent Arabic letters speech recognition system based on mel frequency c...
Intelligent Arabic letters speech recognition system based on mel frequency c...Intelligent Arabic letters speech recognition system based on mel frequency c...
Intelligent Arabic letters speech recognition system based on mel frequency c...
 
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
IRJET- Device Activation based on Voice Recognition using Mel Frequency Cepst...
 
Voice Signal Synthesis using Non Negative Matrix Factorization
Voice Signal Synthesis using Non Negative Matrix FactorizationVoice Signal Synthesis using Non Negative Matrix Factorization
Voice Signal Synthesis using Non Negative Matrix Factorization
 
A comparison of different support vector machine kernels for artificial speec...
A comparison of different support vector machine kernels for artificial speec...A comparison of different support vector machine kernels for artificial speec...
A comparison of different support vector machine kernels for artificial speec...
 
Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...
 
Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...Speech Recognized Automation System Using Speaker Identification through Wire...
Speech Recognized Automation System Using Speaker Identification through Wire...
 
Ijetcas14 426
Ijetcas14 426Ijetcas14 426
Ijetcas14 426
 
[IJET-V1I6P21] Authors : Easwari.N , Ponmuthuramalingam.P
[IJET-V1I6P21] Authors : Easwari.N , Ponmuthuramalingam.P[IJET-V1I6P21] Authors : Easwari.N , Ponmuthuramalingam.P
[IJET-V1I6P21] Authors : Easwari.N , Ponmuthuramalingam.P
 
A survey on Enhancements in Speech Recognition
A survey on Enhancements in Speech RecognitionA survey on Enhancements in Speech Recognition
A survey on Enhancements in Speech Recognition
 
A Novel, Robust, Hierarchical, Text-Independent Speaker Recognition Technique
A Novel, Robust, Hierarchical, Text-Independent Speaker Recognition TechniqueA Novel, Robust, Hierarchical, Text-Independent Speaker Recognition Technique
A Novel, Robust, Hierarchical, Text-Independent Speaker Recognition Technique
 
IRJET- Emotion recognition using Speech Signal: A Review
IRJET-  	  Emotion recognition using Speech Signal: A ReviewIRJET-  	  Emotion recognition using Speech Signal: A Review
IRJET- Emotion recognition using Speech Signal: A Review
 
ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION
ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION
ADAPTIVE WATERMARKING TECHNIQUE FOR SPEECH SIGNAL AUTHENTICATION
 
Voice biometric recognition
Voice biometric recognitionVoice biometric recognition
Voice biometric recognition
 
Speaker recognition on matlab
Speaker recognition on matlabSpeaker recognition on matlab
Speaker recognition on matlab
 
Av4103298302
Av4103298302Av4103298302
Av4103298302
 
AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...
AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...
AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND T...
 
Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...
 
Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...Voice Recognition Based Automation System for Medical Applications and for Ph...
Voice Recognition Based Automation System for Medical Applications and for Ph...
 
50120140502007
5012014050200750120140502007
50120140502007
 

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

Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
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
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
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
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
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
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
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
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 

Recently uploaded (20)

Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
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🔝
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
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...
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
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
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
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
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
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
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 

Speaker Identification & Verification Using MFCC & SVM

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1950 Speaker Identification & Verification Using MFCC & SVM Ahmed Sajjad1, Ayesha Shirazi2, Nagma Tabassum3, Mohd Saquib4, Naushad Sheikh5 1Professor, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering & Technology, Nagpur, Maharashtra, India 2Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering & Technology, Nagpur, Maharashtra, India 3 Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering & Technology, Nagpur, Maharashtra, India 4Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering & Technology, Nagpur, Maharashtra, India 5Student of Graduation, Dept. of Electronics & Telecommunication Engineering, Anjuman College of Engineering & Technology, Nagpur, Maharashtra, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Speaker recognition is a developing source of security nowadays. Speaker recognition has a wide scope in future applications such as voice dialing, database access services, information services, security control, hospital, laboratories, industries etc. Speakerrecognition istheprocess of automatically verifying and identifying the person who is speaking. This project is used to recognize the person who is speaking. Speaker recognition has two major parts speaker identification and speaker verification. The speaker recognition can be done by using two methods that is text dependent and text independent. This paper represents speaker identificationandverificationusingspeechdependent process. In this process first the features are extracted from voice and then those features are matched or verified in order to recognize the speaker. Here for feature extraction we are using MFCC (Mel Frequency Cepstral Coefficient) technique as it gives a great performance for making it robust, accurate, faster and computationally efficient. Alsoforfeaturematching SVM (Support Vector Machine) is used. Key Words: Speaker recognition, speaker identification, speaker verification, text dependent, text independent, feature extraction, MFCC, SVM 1. INTRODUCTION The most convenient way of communication since ancient times is talking i.e. speaking to each other. Whenever we speak to someone we convey information in the form of words or voice or to be prudent sayspeech as this project isrelatedtoit. When air passes through the vocal tract of a person while speaking, inhaling etc. the vocal folds reflects this air which in turn produces speech. Hence speech is produced due to vibration in vocal system of a human body. Since every human being has a different vocal tract they produce a different sounds or speech. The aim of this project is to identify and hence verify different speeches or person. This recognition of a particular person through its speech automatically using a biometric device is done by using MFCC and SVM. MFCC and SVM are used as they give maximum accuracy as compared to LPCC, LPC, HPC, etc. The human pitch(an important characteristic of human voice) varies with the change in background noise(traffic, creeping of birds, unwanted sounds), human emotions(stress, happiness, envy), human health problems(cough, cold). These variations are easily eliminated in MFCC and SVM giving a high accuracy up to 95%. Also these are easily to workwith. 2.1 Speech Production Speech is produced with the help of vocal folds. The vocal system of a human being is responsible for the generationof speech . The human vocal system consist of nasal cavity,lips, teeth, glottis, tongue, palate, larynx, etc. Figure 1: Human Speech Production System “Speech is produced by air pressure waves emanating (emitting) from the mouth & the nostrils of a speaker.” As
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1951 defined by Huang et al (2001)[1]. In other words speech is the ability to express feelings & thoughts by fluent sounds & gestures. 2.2 Speech Recognition Speech recognition is nothingbutconveyinginformation toa computer, having it recognizes what we are saying, and finally doing this in real time. Speech recognition has two functions identification and verification respectively. Speech identification is the process of identifying the speaker from the data base. It is a 1:N match. The voice given at the input is compared with voice available in data base until the voice is matched. If the voice is matches it means the speech is identified from N database otherwise the output as ‘match not found’. Speech verification is the process of accepting or rejecting the identity of a speaker. It is a 1:1 match. This isa linearprocess where the input voice is checked with only one data and the result will be obtain as true or false, yes or no. Figure 2: Speaker identification & verification process Speech recognition can be done by using two processes: Text Dependent: The text must be same at the time of feeding (preparing database) and while giving the input for recognition. This is know as text dependent process. In this process we can also use phrases or pins. Text Independent: The process is said to be text independent, when the text at the time of feeding and verification is different. In this case there is no restriction over text 3. FEATURE EXTRACTION It is the first and very important process of speaker recognition. It extracts the primary information from the speech and removes the other unnecessary data like background noise, other interruptions (stress, emotions, environmental conditions). 3.1 MFCC Mel Frequency Cepstral Coefficient was introducedbyDavis and Mermelstein in the 1980s. MFCC is most popular technique and commonly used in most of the application of speech signal for feature extraction[2]. We use MFCC because it is analogous to human hearing mechanism. The MFCC consists of five major steps: pre-processing, windowing, FFT (Fast Fourier Transform), mel-frequency wrapping and cepstrum. The input signal is given to the MFCC and we get the desired coefficient known as MFCC. Speech waveform (Input signal) Spectrum Mel spectrum MFCC Figure 3: Extraction process of MFCC Pre-processing:pre-processingincludesfiltering,filteringis converting the given voice signal in a form which is suitable for the computer. Pre-processing is segregating the voice part from the unvoiced part. Windowing: It is usedfor minimizingthespectral distortion. For this we are using hamming window which is set to make frame blocking at 20-25 ms in order to achieve a stationary behavior. Hamming window provides continuity at the beginning and end of the each frame. It provides a better frequency resolution. The result of windowing is given as Y(n) = X(n) x w(n) Speaker identification Speaker 1 Speaker 2 Speaker 3 Speaker 4 Is this Speaker 1?Verification Pre-processing Windowing FFT Mel-frequency wrapping Cepstrum
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1952 Where, Y(n) – output signal X(n) – input signal w(n) – hamming window FFT (Fast Fourier Transform): FFT is the most important step of MFCC is to construct the fast fourier transform of each frame which extract componentsfromthesignalsatthe rate of 10 ms. Fast fourier transform converts each N number of samples from time domain to frequency domain. The sizes of FFT are 512, 1024, 2048. It is used to obtain magnitude frequency response. Mel-Frequency Wrapping: According to a psychological survey human presentation of frequency content of voice or speech is not proportional or can say does notfollowa linear scale. For measurement of different pitch mel scale is used. “One mel is defined as one thousands of the pitch of a 1kHz tone[1].” Mel scale frequency can be approximated by equation: B(f) = 2595 log10 (1 + f / 700) The simulation of spectrum is done by using filter bank. The triangular band pass frequency response is use as a filter bank. The position of filter bank is equally spaced by using mel-scale. Cepstrum: The final step of MFCC is cepstrum in this step, Mel spectrumcoefficients areconverted into timedomainby using DCT (Discrete Cosine Transform). The result will be obtained as MFCC. 4. FEATURE MATCHING Feature matching is the process of identifying feature from two similar database. One knows as source and the other known as target. 4.1 SVM SVM was developed by Vapinik in 1998. It is one of the most important developments in patternrecognitioninthelast10 years[3]. As this technique givesmoreaccuracyascompared to techniques like neural network, vector quantization etc. Figure 4: Linear Support Vector Machine SVM is a simple and effective algorithm. It is a linear classifier[4] i.e. it can contain only two components ata time and gives a proportional output. Also it can be known as a comparator as it has a binary output it gives output as yes or no, accept or reject, 0 or 1 etc. In this project, we are using more than two components for better efficiency, hence we are using N number of SVM. 5. CONCLUSIONS This paper describes a procedure for speaker recognition using MFCC and SVM. MFCC is used for feature extraction whereas SVM is used forfeatureverification.Theimportance of MFCC and SVM and why they are widely used is properly described in this paper. Instead of SVM techniques like GMM(Gaussian Mixture Model) and HMM(Hidden Markov Model) can be used in future as they are easier to use, require less data and gives better accuracy. The future application of this project are voice dialing in mobilephones and telephones, hands free dialing in Wireless Bluetooth headsets, biometric login to telephone aided shopping systems and numeric entry modules. ACKNOWLEDGEMENT I would like to thank Prof. Dr. Ahmed Sajjad Khan for the giving the idea of this project. REFERENCES [1] Huang, X, Acero, A. & Hon, H. “Spoken language processing – A guide to theory, algorithm, prentice hall PTR”, New Jersey (2001). [2] Jyoti B. Ramgire and Prof. Sumati M. Jagdale, “A survey on speaker recognition with various feature extraction and classification techniques”, IRJET, Volume 3, Issue 4, April 2016, pp. 709-712. [3] Geeta Nijhawan and M.K. Soni, “Speaker recognition using support vector machine”, International Journal of Computer Application, Volume 87-No.2, February 2014. [4] Simon Haykin, McMaster University, Hamilton, Ontario, Canada, Neural Networks a ComprehensiveFoundation, 2nd edition, pp. 256-347.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1953 BIOGRAPHIES Prof. Dr. Ahmed Sajjad Khan (PhD-Cellular Automata Modelling and processing speech signal) Ayesha Shirazi Graduation Student Nagpur University Nagma Tabassum Shekh Graduation Student Nagpur University Mohammad Saquib Graduation Student Nagpur University Naushad Sheikh Graduation Student Nagpur University