Metadata-Version: 2.1
Name: simplebrainviewer
Version: 0.3.1
Home-page: https://github.com/vanandrew/SimpleBrainViewer
Author: Andrew Van
Author-email: vanandrew@wustl.edu
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: all
License-File: LICENSE

# SimpleBrainViewer
A simple brain viewer using matplotlib

###### What is this?
Pretty self-explanatory... It's a simple brain viewer written
with matplotlib. Useful if you just want to view a volume quickly
in python.

###### Usage

You can call BrainViewer from python or the command line (via nifti file or any other nibabel compatible format):

```
"""
  Example
"""
import nibabel as nib
from simplebrainviewer import *
import matplotlib.pyplot as plt

# load a volume
data = nib.load('/a/nifti/file').get_fdata()

# plot the data
simplebrainviewer.plot_brain(data)

```

###### Command Line Usage
```
usage: brainviewer.py [-h] volume

View a brain volume

positional arguments:
  volume      brain volume to view

optional arguments:
  -h, --help  show this help message and exit
```
