60

“Make amateur radio cool again”, said Mr Artificial Intelligence.

 5 years ago
source link: https://www.tuicool.com/articles/hit/IfEfIvq
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

A project on building a speech recognition system for amateur radio communication.

System setup:

I speak to a Baofeng handheld radio transceiver, the DIY antenna picks up the radio wave, SDR demodulates the radio signal to standard audio signal, Google speech-to-text performs the speech recognition, Smith-Waterman algorithm performs sequence alignment to find the most probable call sign in a database and AJAX is used in a local httpserver to output the text. The system diagram is shown below.

f2uEjq2.jpg!web
System diagram for the voice recognition system for amateur radio communication

This is the demo. It successfully finds the most probable call sign from a database and captures the message “monitoring”.

Demo

Hardware (antenna, SDR dongle, FM radio transceiver):

I attach 0.5 meter (~wavelength/4) copper wire to connectors to form my antenna. I buy all my connectors from Amazon and the copper wire from a local hardware store.

The parts for the antenna are

  1. 0.5 meter copper wire with diameter 0.15mm
  2. UHF Female Jack Solder SO-239
  3. RF coaxial coax adapter F female to UHF male PL-259 connector
  4. N Female to F Male Connector RF Coax Coaxial Adapter
  5. DHT Electronics RF coaxial coax cable assembly N male to MCX male right angle 6'’

I use a hand-held FM radio transceiver (Baofeng UV-5R v2+) for ham radio transmission. NooElec SDR dongle is used to receive the signal from the antenna and send it to my laptop. They are both available on Amazon.

The complete hardware setup is shown below.

E36vUvR.jpg!web
Hardware setup : antenna, SDR dongle, FM radio transceiver

Software-defined radio/digital signal processing:

According to Wikipedia,

Software-defined radio ( SDR ) is a radio communication system where components that have been traditionally implemented in hardware (e.g. mixers , filters , amplifiers , modulators / demodulators , detectors , etc.) are instead implemented by means of software on a personal computer or embedded system .

I use SDRSharp to do all the signal processing and conversion. A screenshot of a working SDRSharp is shown below

raAb6vB.png!web
Digital signal processing

Speech recognition:

I use Google Speech-to-Text API for the speech recognition.

Here is the snippet.

Speech recognition

But as shown in the demo, Google speech-to-text seems to struggle a bit and produces some errors. This is probably due to the noise in the background. I think this can be improved if one can train a deep net with training set taken from real ham radio conversations.

Smith-Waterman algorithm:

Very likely, the speech recognition system will make some errors. I alleviate that problem by keeping a database of call signs. The database can be constructed with data from a variety of sources. For example, for aircraft radio communication, dump1090 is a nice program that can capture the information of aircraft by decoding messages sent on 1090MHz. Alternatively, one may simply use a logbook that stores the call signs of people who frequently use local repeaters.

Once we have a database of call signs, we can use Smith-Waterman alignment algorithm to find the best match.

Here is the snippet.

Swith-Waterman algorithm

Asynchronous JavaScript and XML(AJAX):

For real-time update, I use AJAX. AJAX enables automatic fetching of information from a file which contains the call signs/speeches/timestamps.

I use a simple httpserver locally by typing the following command in the terminal.

python -m SimpleHTTPServer

The snippet for the webpage is shown below.

AJAX

A screenshot of the webpage is shown below.

raA7zqf.png!web
Webpage output

Final words

Many people says that amateur radio is a dying hobby. I find it sad because there are many interesting things one can do with it, especially when it is combined with more recent technology(like AI). So, I decide to work on this project and share it with you all. I hope you find it fun.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK