Answered step by step
Verified Expert Solution
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 voicefrequency encoder which represents every English character by a combination of three voiceband frequency components low middle and high
For example, it encodes character by signal contains frequencies 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 show you the frequencies for each character. Assume the duration of each character signal is around
Table : Encoding frequencies for each English character
tableCharacterLow frequency component,Middle frequency component,High frequency componentabcdefhijkmnopqstuVwtzspaceTo 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 multifrequency 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 eg Fourier transform of the input signal to determine which frequencies that
have the highest amplitudes in each 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
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:
Minireport as described above.
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 MATLABPython because they have many useful functions.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started