You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Zolfa f220515eb6 complete fork: nd2reader -> nd2reader2 2 years ago
docs@f700c239f8 Fix error in loop handling 4 years ago
nd2reader2 complete fork: nd2reader -> nd2reader2 2 years ago
sphinx Version 3.2.3 due to build error of new version number storage system 4 years ago
tests complete fork: nd2reader -> nd2reader2 2 years ago
.codeclimate.yml Add codeclimate integration 7 years ago
.gitignore Fix test and update gitignore 6 years ago
.gitmodules generated docs in other branch 7 years ago
.travis.yml update Travis settings 4 years ago
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 5 years ago
CONTRIBUTING.md Update contributing 7 years ago
CONTRIBUTORS.txt Rebranding in anticipation of better metadata support (mainly for FRAP experiments). 7 years ago
COPYING Minor changes for dev branched version release 3 years ago
LICENSE version 3.0.1: Include LICENSE via MANIFEST.in for conda forge 7 years ago
MANIFEST.in New version 3.2.2 4 years ago
README.md Update README.md 4 years ago
release.txt Version 3.2.3 due to build error of new version number storage system 4 years ago
requirements.txt Start porting to PIMS framework, cleanup unnecessary files 7 years ago
setup.cfg Add universal bdist wheel 7 years ago
setup.py complete fork: nd2reader -> nd2reader2 2 years ago
test.py complete fork: nd2reader -> nd2reader2 2 years ago

README.md

nd2reader

Anaconda-Server Badge Anaconda-Server Badge Build Status Test Coverage Code Climate

About

nd2reader is a pure-Python package that reads images produced by NIS Elements 4.0+. It has only been definitively tested on NIS Elements 4.30.02 Build 1053. Support for older versions is being actively worked on. The reader is written in the pims framework, enabling easy access to multidimensional files, lazy slicing, and nice display in IPython.

Documentation

The documentation is available here.

Installation

The package is available on PyPi. Install it using:

pip install nd2reader

If you don't already have the packages numpy, pims, six and xmltodict, they will be installed automatically if you use the setup.py script. Python >= 3.5 are supported.

Installation via Conda Forge

Installing nd2reader from the conda-forge channel can be achieved by adding conda-forge to your channels with:

conda config --add channels conda-forge

Once the conda-forge channel has been enabled, nd2reader can be installed with:

conda install nd2reader

It is possible to list all of the versions of nd2reader available on your platform with:

conda search nd2reader --channel conda-forge

ND2s

nd2reader follows the pims framework. To open a file and show the first frame:

from nd2reader import ND2Reader
import matplotlib.pyplot as plt

with ND2Reader('my_directory/example.nd2') as images:
  plt.imshow(images[0])

After opening the file, all pims features are supported. Please refer to the pims documentation.

Backwards compatibility

Older versions of nd2reader do not use the pims framework. To provide backwards compatibility, a legacy Nd2 class is provided.

Contributing

If you'd like to help with the development of nd2reader or just have an idea for improvement, please see the contributing page for more information.

Bug Reports and Features

If this fails to work exactly as expected, please open an issue. If you get an unhandled exception, please paste the entire stack trace into the issue as well.

Acknowledgments

PIMS modified version by Ruben Verweij.

Original version by Jim Rybarski. Support for the development of this package was partially provided by the Finkelstein Laboratory.