freiform / sigviewer

SigViewer is a viewing application for biosignals.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SigViewer

SigViewer is a viewing application for biosignals such as EEG or MEG time series. In addition to viewing raw data, SigViewer can also create, edit, and display event information (such as annotations or artifact selections).

Download

Screenshots

screenshot-1

Building SigViewer

SigViewer requires a standard-compliant C++11 build toolchain, for example recent versions of GCC or Clang. Other compilers such as MSVC might work, but are not tested. Furthermore, SigViewer depends on Qt. Current SigViewer builds use Qt 5.8 (previous or future versions are not guaranteed to work).

SigViewer depends on libbiosig and libxdf. There are two options to get these external dependencies for your platform:

  1. Build these dependencies yourself (see separate descriptions below).
  2. Use our pre-built binaries. The corresponding archive contains binary versions of libbiosig and libxdf and must be extracted into SigViewer’s source folder (which we denote as $sigviewer).

Note that if you are on Windows, you cannot build libbiosig yourself, and therefore you have to use our pre-built binary.

Windows

SigViewer requires Windows 7 or Windows 10. Other versions might work, but have not been tested. First, download the offline installer for Qt 5.8.0 for Windows 32-bit (MinGW 5.3.0). Run the installation wizard and make sure to also select MinGW 5.3 in the Tools group. Once the installation is completed, a new folder Qt 5.8.0 is added to the Start menu. It contains the command prompt Qt 5.8 for Desktop, which has all required build tools (qmake and mingw32-make) added to its path. Make sure you use this command prompt if you want to build on the command line. Alternatively, you can build SigViewer with Qt Creator, which is installed along with Qt 5.8 by default. Here, we describe the build process using Qt Creator.

  1. Download and unzip the SigViewer source.
  2. Provide all external dependencies by downloading the external archive and extracting it inside $sigviewer (see below for more details and options regarding the external dependencies).
  3. Open sigviewer.pro in Qt Creator .
  4. Accept the default configuration by clicking on Configure Project.
  5. Click on Build Project (the hammer icon) to build SigViewer.
  6. Click on Run (the play icon) to start SigViewer.
  7. To create a stand-alone version of SigViewer, open a command prompt, change into $sigviewer/bin/release, and run windeployqt sigviewer.exe. SigViewer now runs on any Windows machine (no previous Qt installation is required) if the contents of this directory is distributed together with sigviewer.exe.

macOS

Mac OS X (now renamed to macOS) 10.9 or later is required. First, install XCode from the App Store. Next, download the offline installer for Qt 5.8.0 for macOS. Run the installation wizard. Make sure that qmake is available on the path if you want to build SigViewer on the command line. Alternatively, you can build SigViewer with Qt Creator, which is installed along with Qt 5.8 by default. Here, we describe the build process using the command line, but if you want to use Qt Creator instead refer to the description for building SigViewer on Windows.

  1. Download and unzip the SigViewer source.
  2. Provide all external dependencies:
    • Either download the external archive and extract it inside $sigviewer.
    • Or copy the necessary files from libbiosig and libxdf builds to the corresponding folders as detailed in the build descriptions for libbiosig and libxdf below.
  3. In a terminal, run qmake.
  4. Run make (or if you want to use more cores to build in parallel, run make -j 4 if you want to use four cores). The SigViewer binary is built in the bin/release folder.
  5. To create a stand-alone version of SigViewer, open a terminal, change into $sigviewer/bin/release and run macdeployqt sigviewer.app -dmg. This creates a disk image with the app, which can then be dragged to the Applications folder.

Linux

Install the GNU toolchain and Qt 5 with your native package manager. You can either build on the command line or with Qt Creator (which you then need to install).

  1. Download and unzip the SigViewer source.
  2. Provide all external dependencies:
    • Either download the external archive and extract it inside $sigviewer.
    • Or copy the necessary files from libbiosig and libxdf builds to the corresponding folders as detailed in the build descriptions for libbiosig and libxdf below.
  3. In a terminal, run qmake.
  4. Run make (or if you want to use more cores to build in parallel, run make -j 4 if you want to use four cores). The SigViewer binary is built in the bin/release folder.
  5. You can directly start the executable in a terminal. If you use Arch Linux or Ubuntu/Debian Linux, we provide native packages for these distributions.

Building external dependencies

Windows

Building libbiosig on Windows is currently not possible. Please use our pre-built binary included in the external archive.

To build libxdf from source, follow these steps:

  1. Download and unzip the libxdf source (SigViewer 0.6.1 uses libxdf 0.94).
  2. On the command line, run qmake followed by mingw32-make (or build the project with Qt Creator).
  3. Copy xdf.h into $sigviewer/external/include and libxdf.a to $sigviewer/external/lib.

macOS

To build libbiosig from source, follow these steps:

  1. Building libbiosig requires gawk. The easiest way to install it is via Homebrew (brew install gawk).
  2. Download and unzip BioSig for C/C++ (SigViewer 0.6.1 uses libbiosig 1.8.4b).
  3. Change the following lines in Makefile:
    • Change line 199 to: # DEFINES += -D=WITH_ZLIB
    • Change line 207 to: # DEFINES += -D=WITH_CHOLMOD
    • Change 10.7 in lines 148 and 151 to 10.9
  4. In a terminal, run make libbiosig.a.
  5. Copy biosig.h and gdftime.h to $sigviewer/external/include and libbiosig.a to $sigviewer/external/lib.

To build libxdf from source, follow these steps:

  1. Download and unzip the libxdf source (SigViewer 0.6.1 uses libxdf 0.94).
  2. In a terminal, run qmake followed by make.
  3. Copy xdf.h into $sigviewer/external/include and libxdf.a to $sigviewer/external/lib.

Linux

To build libbiosig from source, follow these steps:

  1. Download and unzip BioSig for C/C++ (SigViewer 0.6.1 uses libbiosig 1.8.4b).
  2. Change the following lines in Makefile:
    • Change line 199 to: # DEFINES += -D=WITH_ZLIB
    • Change line 207 to: # DEFINES += -D=WITH_CHOLMOD
  3. In a terminal, run make libbiosig.a.
  4. Copy biosig.h and gdftime.h to $sigviewer/external/include and libbiosig.a to $sigviewer/external/lib.

To build libxdf from source, follow these steps:

  1. Download and unzip the libxdf source (SigViewer 0.6.1 uses libxdf 0.94).
  2. In a terminal, run qmake followed by make.
  3. Copy xdf.h into $sigviewer/external/include and libxdf.a to $sigviewer/external/lib.

About

SigViewer is a viewing application for biosignals.

License:GNU General Public License v3.0


Languages

Language:C++ 98.5%Language:QMake 1.2%Language:Shell 0.3%Language:C 0.0%