Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Project description: This Project can be divided into two phases: Phase One: Design, Implement and test an English alphabet character voice - frequency encoder which

Project description:
This Project can be divided into two phases:
Phase One:
Design, Implement and test an English alphabet character voice-frequency encoder which represents every English character by a combination of three voice-band frequency components (low, middle and high).
For example, it encodes character 'a' by signal contains frequencies (100HZ,1100HZ,2500Hz). Therefore, given the frequency combination for each character, you should be able to encode any character to the corresponding signal contacting the corresponding frequencies (see table below).
Table 1.1 show you the frequencies (100Hz-3500Hz) for each character. Assume the duration of each character signal is around 40ms.
Table 1.1: Encoding frequencies for each English character
\table[[Character,Low frequency component,Middle frequency component,High frequency component],[a,100,1100,2500],[b,100,1100,3000],[c,100,1100,3500],[d,100,1300,2500],[e,100,1300,3000],[f,100,1300,3500],[h,100,1500,2500],[i,100,1500,3000],[j,100,1500,3500],[k,300,1100,2500],[m,300,1100,3000],[n,300,1100,3500],[o,300,1300,2500],[p,300,1300,3000],[q,300,1300,3500],[s,300,1500,2500],[t,300,1500,3000],[u,300,1500,3500],[V,500,1100,2500],[w,500,1100,3000],[t,500,1100,3500],[z,500,1300,2500],[space,500,1300,3000],[,500,1300,3500],[,500,1500,2500],[,500,1500,3000],[,500,1500,3500]]To sum up, in this phase you have to design the following:
Implement the English character encoder using the above description and specifications.
Build a GUI (graphical user interface) by which the user can encode any English string (sentence) and the
system should generate the corresponding signal for the given sentence.
Two choices are available for the generated signal:
Play the generated signal so that the user can hear it.
Save the generated signal as a (.wav) audio file in the current working directory.
Phase Two:
In this phase you have to design, implement and test a decoder for the system in part one, which can recover the
text string from the encoded multi-frequency signal. Simply, your system should take an audio file (.wav) as an
input and recognizes the encoded string and display it on the GUI screen.
You must use the following two approaches to build your decoder:
Use frequency analysis (e.g. Fourier transform) of the input signal to determine which frequencies that
have the highest amplitudes in each 40ms and decode the character from them.
Use bandpass Filters, so that you design filters represent the given frequencies and pass the input signal
through them to pick the frequencies that passes and ones that rejected by the filters, then determine the
frequencies in each 40ms.
To sum up, in this phase you have to design the following:
Two systems, each can decode any sequence of tones to the corresponding alphabetic English characters.
One of the systems uses frequency analysis and the second built by using filters.
Build a GUI so that the user can upload any audio file and a run button to be able to convert the sequence
of tones in the audio into corresponding characters and show the result on a text box.
Sufficiently test your two systems with different number of encoded strings with different length, and
report the accuracy of your systems. Accuracy is the number of correctly recognized letters divided by the
string length.
Project Deliverables:
1- Mini-report as described above.
2-System implementation (source code) and a demonstration of each phase as described above.
You can use any programming language you prefer for implementing your project. However, I highly
recommend MATLAB/Python because they have many useful functions.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro PowerShell For Database Developers

Authors: Bryan P Cafferky

1st Edition

1484205413, 9781484205419

More Books

Students also viewed these Databases questions

Question

1. List the basic factors determining pay rates.pg 87

Answered: 1 week ago