jcnils / pynrrd

Simple pure-python module for reading and writing nrrd files.

Home Page:https://nn8.nl/posts/2010/07/hello-pynrrd/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status DOI Python version PyPi version Documentation Status

pynrrd

pynrrd is a pure-Python module for reading and writing NRRD files into and from numpy arrays.

Dependencies

The module's only dependency is numpy.

Installation

Install via pip and PyPi repository (recommended)

pip install pynrrd

Install via pip and GitHub

pip install git+https://github.com/mhe/pynrrd.git

Install from source (recommended for contributing to pynrrd)

For developers that want to contribute to pynrrd, you can clone the pynrrd repository and install it using the following commands:

git clone https://github.com/mhe/pynrrd.git
cd pynrrd
pip install .

or, for the last line, instead use:

pip install -e .

to install in 'develop' or 'editable' mode, where changes can be made to the local working code and Python will use the updated pynrrd code.

Example usage

import numpy as np
import nrrd

# Some sample numpy data
data = np.zeros((5,4,3,2))
filename = 'testdata.nrrd'

# Write to a NRRD file
nrrd.write(filename, data)

# Read the data back from file
readdata, header = nrrd.read(filename)
print(readdata.shape)
print(header)

Tests

Run the following command in the base directory to run the tests:

python -m unittest discover -v nrrd/tests

Next Steps

For more information, see the documentation.

License

See the LICENSE for more information.

About

Simple pure-python module for reading and writing nrrd files.

https://nn8.nl/posts/2010/07/hello-pynrrd/

License:MIT License


Languages

Language:Python 100.0%