Metadata-Version: 2.1
Name: simplebrainviewer
Version: 0.2
Summary: A simple brain viewer using matplotlib
Home-page: https://github.com/vanandrew/SimpleBrainViewer
Author: Andrew Van
Author-email: vanandrew@wustl.edu
License: UNKNOWN
Description: # 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 (Only does 3D, no 4D yet!)
        
        positional arguments:
          volume      brain volume to view
        
        optional arguments:
          -h, --help  show this help message and exit
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
