Line 44: Line 44:
 
-----
 
-----
 
==Matlab Code==
 
==Matlab Code==
# DFT Window Function: [[File:Specgm2.txt]]
+
# DFT Window Function:
# Spectogram Function (16kHz compatability): [[File:Specgm2.m]]
+
 
 +
    function [X] = DFTwin(x,L,m,N)
 +
    %DFTwin computes the DFT of a windowed length L segment of vector x
 +
    window = hamming(L); %hamming window of desired length L
 +
    x1 = x(m:length(window)+m); %segment of x we want to DFT
 +
    signal = zeros(1,L);
 +
    for z =1:1:length(window)
 +
        signal(z) = x1(z) .* window(z);
 +
    end
 +
    X = fft(signal,N);
 +
    end
 +
 
 +
# Spectogram Function (16kHz compatibility):  
 +
 
 +
    function [A] = Specgm2(x,L,overlap,N)
 +
    %Specgm creates a spectogram using DFTwin via a matrix of windowed DFTs
 +
    %create a matrix
 +
    for n = 1:1:length(x)
 +
        m = (((n-1) * L) - ((n-1) *overlap)) + 1;
 +
        if ((m+L) > length(x)) %if m + length of window exceeds the signal bounds
 +
            break
 +
        end
 +
        A(:,n) = transpose(DFTwin(x,L,m,N));
 +
    end
 +
    for z = 1:1:(N/2)
 +
        A(1,:) = []; %clear half of the matrix
 +
    end
 +
    A = 20*log10(abs(A)); %convert to dB
 +
    A = flip(A);
 +
    [l,k] = size(A); %#columns and rows in matrix A
 +
    y1 = 0:(1/(length(l))):8000 - (1/(length(k))); %0 to 8kHz
 +
    x1 = 0:(1/16000):length(x)/16000; %16kHz sampling rate
 +
    imagesc(x1,y1,A); %define x and y time/freq. vectors to plot
 +
    colormap(jet)
 +
    axis xy
 +
    %axis([])
 +
    end
 +
 
 
# Main Project Script: [[File:Bhenman_ECE438Project_aa_v1.m]]
 
# Main Project Script: [[File:Bhenman_ECE438Project_aa_v1.m]]
 
-----
 
-----

Revision as of 12:41, 23 November 2019

Formant Analysis Using Wideband Spectographic Representation

By user:BJH (Brandon Henman)


Topic Background

Like most systems in the real world, the human vocal tract can be broken down and modeled as a system that takes real inputs (vibration of vocal cords) and transforms them (via the vocal tract) into real outputs (human speech).

The vocal system itself resonates certain frequencies, called formant frequencies, depending on how a person changes the shape of their vocal tract in order to pronounce certain phonemes, or "building blocks" of sounds.

This makes sense logically, as our brains classify different phonemes and speech to be different ranges of frequencies in order to process speech signals, otherwise all sounds would mean the same thing!

In order for our brains to have universally recognized phonemes, it follows that a phoneme is roughly the same frequency for everyone, e.g. "you" sounds like "yoo" for everyone (within the same language, that's an entirely different topic).

Interestingly enough, this implies that the variations between individual pitch caused by differences in vocal cord size (which affects the frequency of the vocal folds when voicing signals) does NOT affect the resonant frequencies of the vocal tract.

Think of the vocal tract as a garden hose with a variable-spray nozzle. The water pressure/flow is your vocal cords applying an input to your nozzle, or vocal tract. Your nozzle (vocal tract) then selects which spray settings it wants to shape the water flow into before it spreads out from the end of the hose, which is seen the same by both yourself and the outside world: the same as your speech!


Audio Files

Here are some examples of voiced phonemes that will be analyzed for their formant frequencies:

-Custom-recorded, 16kHz sampling rate

Me saying "a" :Media:Vowels_voiced_a.wav ("ay")

Me saying "e" :Media:Vowels_voiced_e.wav ("ee")

Me saying "i" :Media:Vowels_voiced_i.wav ("eye")

Me saying "o" :Media:Vowels_voiced_o.wav ("oh")

Me saying "u" :Media:Vowels_voiced_u.wav ("yoo")

Time Domain Representation of Recorded Signals:

SpeechSignals.png


Methodology

  1. Convert the audio to single-channel
  2. Plot time-domain representations of voiced phonemes
  3. Create Spectographic Representations of each signal by applying a shifting N-point DFT window along the length of the input signal and converting the resulting DFT into a column of an output matrix (wideband spectogram)
  4. Identify formant frequencies F1 and F2 at the beginning and end of speech
  5. Compare formant frequencies of custom signals to commonly accepted values of voiced phonemes

Matlab Code

  1. DFT Window Function:
   function [X] = DFTwin(x,L,m,N)
   %DFTwin computes the DFT of a windowed length L segment of vector x
   window = hamming(L); %hamming window of desired length L
   x1 = x(m:length(window)+m); %segment of x we want to DFT
   signal = zeros(1,L);
   for z =1:1:length(window)
       signal(z) = x1(z) .* window(z);
   end
   X = fft(signal,N);
   end
  1. Spectogram Function (16kHz compatibility):
   function [A] = Specgm2(x,L,overlap,N)
   %Specgm creates a spectogram using DFTwin via a matrix of windowed DFTs
   %create a matrix
   for n = 1:1:length(x)
       m = (((n-1) * L) - ((n-1) *overlap)) + 1;
       if ((m+L) > length(x)) %if m + length of window exceeds the signal bounds
           break
       end
       A(:,n) = transpose(DFTwin(x,L,m,N));
   end
   for z = 1:1:(N/2)
       A(1,:) = []; %clear half of the matrix
   end
   A = 20*log10(abs(A)); %convert to dB
   A = flip(A);
   [l,k] = size(A); %#columns and rows in matrix A
   y1 = 0:(1/(length(l))):8000 - (1/(length(k))); %0 to 8kHz
   x1 = 0:(1/16000):length(x)/16000; %16kHz sampling rate
   imagesc(x1,y1,A); %define x and y time/freq. vectors to plot
   colormap(jet)
   axis xy
   %axis([])
   end
  1. Main Project Script: File:Bhenman ECE438Project aa v1.m

Spectogram Results & Formant Analysis

Wideband Spectogram of A:

WbSpec a.png

Wideband Spectogram of E:

WbSpec e.png

Wideband Spectogram of I:

WbSpec i.png

Wideband Spectogram of O:

WbSpec o.png

Wideband Spectogram of U:

WbSpec u.png


Summary


Alumni Liaison

Ph.D. on Applied Mathematics in Aug 2007. Involved on applications of image super-resolution to electron microscopy

Francisco Blanco-Silva