Speaker Recognition using Matlab

Ø ABSTRACT:
           ·        The project recognizes the input data spoken by the speaker by comparing it with the reference data.
·        It involves having Fast Fourier transform of the given speech then normalizing the frequency signal.

           ·        Finally, the reference and the given data are compared and the result is displayed depending on the variation in the input speeches. 

Ø WORKING OF MODEL: 


Ø MATLAB CODING:
Ø  Coding for Input:-
data=data(1:600);
fy=fft(data);
fy=fy.*conj(fy);
tn=fy/sqrt(sum(abs(fy).^2));

Ø  Coding for Comparasion:-
s=sqrt(sum(abs(f-d).^2));
if s<2*1
    result=strcat('HELLO!!!');
    result
else
    result=strcat('YOU ARE NOT');
    result
end

No comments:

Post a Comment