1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Small image viewer for multi-dimensional files. Compiles
on Linux and Mac OS X. It needs some libraries from
the Berkeley Advanced Reconstruction Toolbox (BART).
https://mrirecon.github.io/bart/

Installation:
Requires BART 0.8.00 or later.
Mac OS X:
sudo port install pkgconfig
sudo port install gtk3
sudo port install adwaita-icon-theme
sudo port install libomp
Linux:
sudo apt-get install libgtk-3-dev
Compile with make after setting the TOOLBOX_PATH
environment variable to the directory where BART
is installed.
### Usage
`view <images>...`
### Troubleshooting
If an error is raised along the lines of
`Gtk-WARNING **: cannot open display`, ensure X11 is installed
and running. On later versions of OS X, you may
need  for View to run.
Set the environment variable `DISPLAY=":0"`, run XQuartz,
and then retry `view`.
|