1 / 21

Speech Processing

Speech Processing. References. James H. McClellan, et al. Computer-Based Exercises for Signal Processing Using MATLAB 5 . Prentice-Hall, 1998. L.R. Rabiner and R.W. Schafer. Digital Processing of Speech Signals . Prentice-Hall, 1978.

chakra
Télécharger la présentation

Speech Processing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Speech Processing

  2. References James H. McClellan, et al. Computer-Based Exercises for Signal Processing Using MATLAB 5. Prentice-Hall, 1998. L.R. Rabiner and R.W. Schafer. Digital Processing of Speech Signals. Prentice-Hall, 1978. Lawrence Rabiner and Biing-Hwang Juang. Fundamentals of Speech Recognition. Prentice-Hall, 1993.

  3. The sound of spoken words is divided-up into phonemes. European languages have about forty phonemes. Phonemes are divided into two groups: voiced sounds and unvoiced sounds. Voiced sounds are “vowel-like” sounds where the sound comes from the throat. Unvoiced phonemes are “consonant-like” phonemes where the sound comes from compressed air blown through the mouth. While unvoiced phonemes are “consonant-like,” not all consonants are unvoiced. Phonemes like “s” are unvoiced, but phonemes like “z” are voiced.

  4. Speech production may be modeled by the following diagram: Voiced Pulse Train Glottis Vocal Tract Lip Radiation Random Noise Unvoiced (See Figure 10.5 in Computer-Based Exercises for Signal Processing.)

  5. The glottis (in the throat) produces “quasi-periodic” signals (like singing a long note). These signals are modeled as the output of the glottis block. These signals are then passed into a vocal tract block. The vocal tract models the mouth, nose and teeth. Finally the lip radiationblock models the lips. Unvoiced sounds have no glottal pulse component and can be modeled with the vocal tract and lip radiation blocks. To obtain any kind of sound, the input to the vocal tract and lip radiation blocks cannot be simply a unit step but rather a random process.

  6. Let us give function values to these signals and processes: G(z) Voiced Pulse Train Glottis e[n] V(z) R(z) uG[n] Vocal Tract uL[n] Lip Radiation pL[n] Random Noise Unvoiced

  7. e[n] is a periodic pulse train. G(z) is the transfer function of the glottis uG[n] is the glottis output. V(z) is the transfer function of the vocal tract. uL[n] is the output of the vocal tract. R(z) is the transfer function of the lips. pL[n] is the output of the lips.

  8. The glottal transfer function G(z) will be represented by an exponential model: The symbol e represents the base of natural logarithms. The parameter a is some value less than one that corresponds to the natural frequency of the glottis (which varies from speaker to speaker, man to woman, child to adult, etc.).

  9. The frequency response of G(z)for various values of a is shown on the following slide. (Graph printed using glottal.m.)

  10. The vocal tract V(z) can be modeled after a sequence of “lossless tubes”: uG[n] uL[n] Ak-1 Ak+1 Ak Each “tube” has a cross-sectional area Ak.

  11. The vocal tract transfer function V(z) will be represented by following model: The parameters rk (which correspond to reflection coefficients along the vocal tract) are found from

  12. Where Ak (k=1, … N) are parameters corresponding to cross-sectional areas of the vocal tract. (These values are given for a particular phoneme.) The denominator D(z) is found from the recursive relationship: starting with D0(z) = 1 and ending with D(z) = DN(z).

  13. The numerator G [of V(z)] is found by Finally, the lip radiation transfer function is given by

  14. The previous voice model was implemented in MATLAB in a script file called voice.m. The vocal tract transfer function V(z) parameters are computed by a MATLAB function called AtoV(). The glottal transfer function G(z) coefficients are assigned to arrays numg and deng. The vocal tract/lip radiation transfer function V(z)R(z) coefficients are assigned to arrays numv and denv.

  15. numg, deng G(z) Voiced AtoV  numv, denv Pulse Train Glottis e[n] V(z) R(z) uG[n] Vocal Tract uL[n] Lip Radiation pL[n] Random Noise Unvoiced uG[n] = rand();

  16. AtoV() for k=1:N-1 r = [r (A(k+1)-A(k))/(A(k+1)+A(k))]; end;

  17. for k=1:N D = [D 0] + r(k).*[0 fliplr(D)]; G = G*(1+r(k)); end;

  18. The array pis a pulse train Voiced Speech ug = 0.1*filter(numg,deng,p); pl = filter(numv,denv,ug); Unvoiced Speech ug = 0.01*randn(1,10000); pl = filter(numv,denv,ug);

  19. Given the vocal tract areas Ak for a given vowel, we can synthesize the vowels. In the following demonstration, we will synthesize the phonemes AA and IY. The phoneme AA is like a short a (ă) The phoneme IY is like a long e (ē).

  20. AA voiced (aav.wav) AA unvoiced (aau.wav) IY voiced (iyv.wav) IY unvoiced (iyu.wav)

More Related