Git Product home page Git Product logo

sidecar-radar-ppi-display-frequency-analyzer's Introduction

Introduction

The main goal of the Radar SideCar software project is to create a highly adaptable environment for running signal processing algorithms. Users configure signal processing streams using XML configuration files that define how information flows from algorithm to algorithm and how data flows from machine to machine in the SideCar LAN.

There are several applications available which provide a graphical interface to the user:

  • AScope - a software oscilloscope for viewing data samples (additional info)
  • BScope - a rectangular representation of radar returns - contrast with PPIDisplay's polar display (additional info)
  • Master - a process manager application that shows the active processing streams running in the SideCar LAN
  • Playback - an application that can playback recorded data files. Supports playback rate changing and looping when it reaches the end of a data file
  • PPIDisplay - a simulation of a phosphor plot position indicator (PPI) display. Even has a crude simulated decay effect for those that can't live without phosphor decay (additional info)

Various signal processing algorithms can be found in the Algorithms directory.

Documentation

Many but not all of the source headers have JavaDoc-style comments. Using doxygen, one can convert them into a static web site:

% cd ~/src/sidecar
% doxygen doc/Doxyfile

The HTML output will reside under the docs/. It is available online at https://bradhowes.github.io/sidecar/index.html

Building

Building has worked on various Linux and MacOS X systems. Nearly all of the code is C++ with some bits in C. The code relies on the following external libraries:

  • ACE - should work with at least version 5.5
  • Boost C++ Framework - built and tested using v1.60.0
  • Qt - built and tested using v5.10.1
  • Zeroconf - on Linux, requires Avahi's mDNS API emulation support (legacy)
  • OpenVSIP - vector signal and image processing library

CMake scripts control the building process, and require at least v3.6. The usual way to build is to create a build directory, move into it and then execute cmake .. to generate Makefiles, like so:

% cd ~/src/sidecar
% mkdir build
% cd build
% cmake ..

If successful, one should then just type make to build the executables.

Linux Fedora 27 Installation Notes

Originally, I developed the software on both macOS and Debian. For kicks, I tried and succeeded getting most of the code and apps built on a Fedora 27 installation. This was a bit more involved than the macOS install described below, but it does work. The following packages are needed on the system:

avahi-compat-libdns_sd (0.7-11)
avahi-compat-libdns_sd-devel (0.7-11)
boost (1.64.0-5)
boost-devel (1.64.0-5)
cmake (3.11.0-1)
fftw (3.3.5-7)
fftw-devel (3.3.5-7)
freeglut-devel (3.0.0-6)
gcc (7.3.1-5)
gcc-c++ (7.3.1-5)
lapack-devel (3.8.0-7)
mesa-demos (8.3.0-9)
qt5 (5.9.4-2)
qt5-qtsvg (5.9.4-1)
qt5-qtsvg-devel (5.9.4-1)
qt5-qttools-devel (5.9.4-1)

Other versions would probably work as well, but these are what I used.

The software also needs an implementation of the Vector Signal and Image Processing Library spec. I have a slightly modified fork of OpenVSIP that compiles on macOS. To install:

% git clone https://github.com/bradhowes/openvsip.git
% cd openvsip
% ./autogen.sh
% mkdir objdir
% cd objdir
% ../configure # It *should* find the LAPACK install from above

If all goes well with configure, you should be able to build:

% make
% make install

If configure has issues, you will have to explore its options to see if you can get it to do what you want.

Now to build SideCar:

% git clone https://github.com/bradhowes/sidecar.git
% cd sidecar
% mkdir build
% cd build
% cmake ..

Hopefully CMake will find everything and run without errors. Next:

% make

This will take some time -- you can try adding -j N where N is something like the number of CPUs on your machine. Note that currently the spectrum application does not build on Fedora 27 due to OpenGL configuration issues.

MacOS Installation Notes

Here are some brief notes on getting everything to run on macOS. This works on my MacBook Pro 2017 running High Sierra (10.13.3). Install the Brew package manager if you don't already have it. Next, install the following packages (I've noted the versions that I currently have)

% brew install cmake # 3.10.3
% brew install ace # 6.4.7
% brew install boost # 1.66.0
% brew install fftw # 3.3.7
% brew install open-mpi # 3.0.0
% brew install qt # 5.10.1

The software also needs an implementation of the Vector Signal and Image Processing Library spec. I have a slightly modified fork of OpenVSIP that compiles on macOS. To install:

% git clone https://github.com/bradhowes/openvsip.git
% cd openvsip
% ./autogen.sh
% mkdir objdir
% cd objdir
% ../configure --with-lapack=apple # Only if on macOS

If all goes well with configure, you should be able to build:

% make
% make install

If configure has issues, you will have to explore its options to see if you can get it to do what you want.

Now to build SideCar:

% git clone https://github.com/bradhowes/sidecar.git
% cd sidecar
% mkdir build
% cd build
% cmake ..

Hopefully CMake will find everything and run without errors. Next:

% make

This will take some time -- you can try adding -j N where N is something like the number of CPUs on your machine.

Environment Configuration

Various parts of the software like to know where it was installed, and they expect to find an environment variable called SIDECAR that holds the installation directory. For our purposes, we will just set it to the build directory that holds the output of the make operation.

% export SIDECAR="$PWD"

We also need to save this value for any future processes to find. The best place to store it is in $HOME/.profile or $HOME/.bash_profile (I've only tested with the first).

% echo export SIDECAR="'$SIDECAR'" >> $HOME/.profile

Post Install

The SideCar applications rely on IPv4 multicast for transmitting data between them (using Zeroconf/Bonjour to determine who is around to listen to). For best results, you should probably route multicast traffic over your loopback interface. The apps are hardcoded (I think) to use the address 237.1.2.100 for multicast traffic.

% sudo route add -net 237.1.2.100/32 -interface lo0

There are some binary files in the data/pri directory that need to be joined before they can be used:

% cd $SIDECAR/data/pri
% bash prijoin.sh

Demonstration

If all of the above went well, we can test out the apps in the build/bin directory. First, let's try and emit some data:

% open $SIDECAR/bin/priemitter.app

You should see something like

Now, try loading the data file $SIDECAR/data/pri/20t10scans.pri by selecting "File > Open" (⌘ O) and navigating to the 20t10scans.pri file. Make sure that the Connection Type is set to Multicast in the main window; it defaults to using TCP.

The window shows Connections: 0 because no one is listening for data on the NegativeVideo channel. Let's see if we can get an app to do so:

% open $SIDECAR/bin/ascope.app

The AScope app will show something like an osciliscope display that plots data samples from a data source.

When it starts up, it won't be connected to anything. Bring up the Channels Window (⌘ 1) and you should see one channel available:

Click on the + button at the bottom to subscribe to the channel and close the window. Back in the priemitter app, click the Start button. With a good amount of luck, you should see something like this:

Now, let's try for the big fish: ppidisplay. This application attempts to display incoming data in a format similar to a radar display. However, unlike its cousin ascope, this application needs to know a bit about the incoming data in order to properly display it. We will point it to an XML configuration file that properly describes the format of the 20t10scans data we are emitting:

% export SIDECAR_CONFIG="$SIDECAR/data/pri/20t10scans.xml"
% open $SIDECAR/bin/ppidisplay.app

Bring up the Channel Selector window with ⌘ 1 and select NegativeVideo for the Video source. You should start to see data flow to the display.

Signal Processing Chains

There is a GUI application called master which lets you launch and monitor signal processing chains -- collections of algorithms that process input streams and generate new output streams. Unfortunately, getting this to work properly on a new host is a bit of dark art. Below is a minimal attempt to document what needs to be done to get at least a minimal processing chain up and running

SSH Connectivity

The first thing that needs to be done is to enable SSH access to the machine(s) you wish to run the processing chains. For demonstration purposes we will run all processing locally, so we need SSH to the local machine. This is disabled by default on macOS and for a good reason: enabling SSH can allow others to access your machine. Just be aware of that.

Next, we need to be able to access the host via SSH using a public key. Since we are trying to reach our own machine using SSH, the easiest way to enable this is to do the following (assuming you have a public key with the name id_rsa.pub)

% cat $HOME/.ssh/id\_rsa.pub >> $HOME/.ssh/authorized\_keys
% ssh localhost
The authenticity of host 'localhost (::1)' can't be established.
ECDSA key fingerprint is SHA256:2Me0Xq0lP5ruqvhQQn8UkHm3NopftDviyZvJhGr7ZYg.
Are you sure you want to continue connecting (yes/no)? yes

Warning: Permanently added 'localhost' (ECDSA) to the list of known hosts.
Last login: Wed Apr 11 10:36:32 2018 from 192.168.12.132
% exit
logout
Connection to localhost closed.
% 

(Future connections will be less noisy)

Launching Master Application

The master GUI app allows one to load XML configuration files that describe signal processing chains and then launch them and monitor their performance.

Load the basic configuration file found at $SIDECAR/data/configs/basic.xml by pressing the big plus sign (+) in the upper-left region corner. Now try launching it by pressing the Launch button. If your environment and SSH are set up properly, you should see an alert saying all was well and your master view should look something like this:

The basic.xml configuration defines just one processing stream -- "Basic Extraction" -- with four algorithms:

  • NCIntegrate -- a smoothing filter
  • Threshold -- a filter that converts floating values into booleans depending on their magnitude
  • MofN -- further filters boolean values such that a true value depends on having a certain number of surrounding true values.
  • Extract -- another conversion filter that generates an extraction record for each true value from MofN.

The master view shows real runtime state from each of the algorithms. The view also has a button for each algorithm that allows you to edit runtime parameters declared by the algorithm.

Sending Data

Start up the priemitter application mentioned earlier and reload the 20t10scans.pri file. Make sure that the multicast address is 237.1.2.102 -- this is the same value that is in the basic.xml. Notice that after loading, the Connections value still shows 0, unlike when we ran ascope. This is because Sidecar processing streams do not do any work unless there is something that is consuming their output, and we don't have anything yet that is doing so. However, the streams will perform work if they are set in the "AutoDiag" state. Click on the "State" popup and select "AutoDiag" (or "Calibrate"). Now, the Connections count should change to 1 if all the plumbing is working properly.

NOTE: an easy way to debug issues is to launch a GUI app from a termainal shell, such as $SIDECAR/bin/master.app/Contents/MacOS/master. That way log messages from the application will appear in the terminal window. Also, log levels can be set for master in the "Logger Configuration Window". Note that DEBUG level will emit a lot of data and make the GUI rather slow

Press "Start" button in the priemitter application. You should see the real-time stats for the algorithms turn to green and show messages per second stats:

Viewing Data

The basic processing stream above consumes data over the NegativeVideo channel, and it creates three new data streams:

  • NCIntegrate -- the smoothed output from the NCIntegrate algorithm
  • Threshold -- a stream of binary values from thresholding the smoothed values
  • MofN -- a stream of binary values from the M-of-N filtering
  • Extractions -- a stream of extraction records

The ascope application can only show streams of floating-point data. However, the ppidisplay app demonstrated above can show all three data types (floating-point, binary, and extractions). Simply show the "Channels Window" (⌘ 1) and you should see the additional available channels. By default binary data appears as dark blue (configurable).

sidecar-radar-ppi-display-frequency-analyzer's People

Contributors

bradhowes avatar brhcriteo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.