n-dimensional array viewer in Python
Project description
napari
multi-dimensional image viewer for python
napari is a fast, interactive, multi-dimensional image viewer for Python. It's designed for browsing, annotating, and analyzing large multi-dimensional images. It's built on top of Qt
(for the GUI), vispy
(for performant GPU-based rendering), and the scientific Python stack (numpy
, scipy
).
We're developing napari in the open! But the project is in an alpha stage, and there will still likely be breaking changes with each release. You can follow progress on this repository, test out new versions as we release them, and contribute ideas and code.
We're working on tutorials, but you can also quickly get started by looking below.
installation
from pip, with "batteries included"
napari can be installed on most macOS, Linux, and Windows systems with Python 3.6, 3.7 and 3.8 using pip:
pip install napari[all]
Note: while not strictly required, it is highly recommended to install
napari into a clean virtual environment using an environment manager like
conda or
venv. For example, with conda
:
conda create -y -n napari-env python=3.8
conda activate napari-env
pip install napari[all]
from source
To clone the repository locally and install in editable mode use
git clone https://github.com/napari/napari.git
cd napari
pip install -e .[all]
# or, to install in editable mode AND grab all of the developer tools
# (this is required if you want to contribute code back to napari)
pip install -r requirements.txt
For more information or troubleshooting see our installation tutorial
ℹ️ Specifying a GUI Backend
napari needs a library called Qt to run its user interface (UI). In Python, there are two alternative libraries to run this, called PyQt5 and PySide2. By default, we don't choose for you, and simply running
pip install napari
will not install either. You might already have one of them installed in your environment, thanks to other scientific packages such as Spyder or matplotlib. If neither is available, running napari will result in an error message asking you to install one of them.Running
pip install napari[all]
will install the default framework – currently PyQt5, but this could change in the future.To install napari with a specific framework, you can use:
pip install napari[pyqt5] # for PyQt5 # OR pip install napari[pyside2] # for PySide2
simple example
From inside an IPython shell (started with ipython --gui=qt
) or jupyter notebook (after running a cell with magic command %gui qt
) you can open up an interactive viewer by calling
from skimage import data
import napari
viewer = napari.view_image(data.astronaut(), rgb=True)
To do the same thing inside a script call
from skimage import data
import napari
with napari.gui_qt():
viewer = napari.view_image(data.astronaut(), rgb=True)
features
Check out the scripts in our examples
folder to see some of the functionality we're developing!
napari supports six main different layer types, Image
, Labels
, Points
, Vectors
, Shapes
, and Surface
, each corresponding to a different data type, visualization, and interactivity. You can add multiple layers of different types into the viewer and then start working with them, adjusting their properties.
All our layer types support n-dimensional data and the viewer provides the ability to quickly browse and visualize either 2D or 3D slices of the data.
napari also supports bidirectional communication between the viewer and the Python kernel, which is especially useful when launching from jupyter notebooks or when using our built-in console. Using the console allows you to interactively load and save data from the viewer and control all the features of the viewer programmatically.
You can extend napari using custom shortcuts, key bindings, and mouse functions.
tutorials
For more details on how to use napari
checkout our tutorials. These are still a work in progress, but we'll be updating them regularly.
mission, values, and roadmap
For more information about our plans for napari
you can read our mission and values statement, which includes more details on our vision for supporting a plugin ecosystem around napari. We also have
a roadmap that captures current development priorities within the project.
contributing
Contributions are encouraged! Please read our contributing guide to get started. Given that we're in an early stage, you may want to reach out on our Github Issues before jumping in.
code of conduct
napari
has a Code of Conduct that should be honored by everyone who participates in the napari
community.
governance
You can learn more about how the napari
project is organized and managed from our governance model, which includes information about, and ways to contact, the @napari/steering-council and @napari/core-devs.
citing napari
If you find napari
useful please cite this repository using its DOI as follows:
napari contributors (2019). napari: a multi-dimensional image viewer for python. doi:10.5281/zenodo.3555620
Note this DOI will resolve to all versions of napari. To cite a specific version please find the DOI of that version on our zenodo page. The DOI of the latest version is in the badge at the top of this page.
help
We're a community partner on the image.sc forum and all help and support requests should be posted on the forum with the tag napari
. We look forward to interacting with you there.
Bug reports should be made on our github issues using the bug report template. If you think something isn't working, don't hesitate to reach out - it is probably us and not you!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file napari-0.3.5.tar.gz
.
File metadata
- Download URL: napari-0.3.5.tar.gz
- Upload date:
- Size: 642.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 210873884c0bb901ed7f9696b2a202a5967dff83612e2c9fd89ddd0c3ed6d9ff |
|
MD5 | ea43336ce3a87423db3a0f01211f8bef |
|
BLAKE2b-256 | c6803960caa9389abcd8bab2a7853caa4a654aed427af7bedfd7a62d2d5c9814 |
File details
Details for the file napari-0.3.5-py3-none-any.whl
.
File metadata
- Download URL: napari-0.3.5-py3-none-any.whl
- Upload date:
- Size: 751.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2700cfafd45229034edbfba124319a671df4ac38d672427ee648fe5a5b5e61a6 |
|
MD5 | f704af88dcff00ba44822b67d58a812a |
|
BLAKE2b-256 | 25454bb26362c0855883a66dc7c6b9cde75de2af581bcf2330090c7fb1754660 |