pyimagej


Namepyimagej JSON
Version 1.4.1 PyPI version JSON
download
home_page
SummaryPython wrapper for ImageJ
upload_time2023-03-13 17:52:25
maintainer
docs_urlNone
author
requires_python>=3.7
licenseApache-2.0
keywords java imagej imagej2 fiji
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyImageJ: Python wrapper for ImageJ2

[![Image.sc Forum](https://img.shields.io/badge/dynamic/json.svg?label=forum&url=https%3A%2F%2Fforum.image.sc%2Ftags%2Fpyimagej.json&query=%24.topic_list.tags.0.topic_count&colorB=brightgreen&suffix=%20topics&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABPklEQVR42m3SyyqFURTA8Y2BER0TDyExZ+aSPIKUlPIITFzKeQWXwhBlQrmFgUzMMFLKZeguBu5y+//17dP3nc5vuPdee6299gohUYYaDGOyyACq4JmQVoFujOMR77hNfOAGM+hBOQqB9TjHD36xhAa04RCuuXeKOvwHVWIKL9jCK2bRiV284QgL8MwEjAneeo9VNOEaBhzALGtoRy02cIcWhE34jj5YxgW+E5Z4iTPkMYpPLCNY3hdOYEfNbKYdmNngZ1jyEzw7h7AIb3fRTQ95OAZ6yQpGYHMMtOTgouktYwxuXsHgWLLl+4x++Kx1FJrjLTagA77bTPvYgw1rRqY56e+w7GNYsqX6JfPwi7aR+Y5SA+BXtKIRfkfJAYgj14tpOF6+I46c4/cAM3UhM3JxyKsxiOIhH0IO6SH/A1Kb1WBeUjbkAAAAAElFTkSuQmCC)](https://forum.image.sc/tag/pyimagej)
[![Build Status](https://github.com/imagej/pyimagej/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/imagej/pyimagej/actions/workflows/build.yml)
[![codecov](https://codecov.io/gh/imagej/pyimagej/branch/main/graph/badge.svg?token=9z6AYgHINK)](https://codecov.io/gh/imagej/pyimagej)
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/imagej/pyimagej/main)

PyImageJ provides a set of wrapper functions for integration between [ImageJ2]
and Python. It also supports the original [ImageJ] API and data structures.

A major advantage of this approach is the ability to combine ImageJ and ImageJ2
with other tools available from the Python software ecosystem, including NumPy,
SciPy, scikit-image, [CellProfiler], [OpenCV], [ITK] and many more.

## Quick Start

Jump into the [documentation and tutorials](https://pyimagej.readthedocs.io/) to get started!

## System Requirements

### Hardware Requirements

PyImageJ requires at minimum a standard computer with enough RAM and CPU
performance to support the workflow operations defined by the user. While
PyImageJ will run on a range of hardware, we recommend the following RAM
and CPU specifications:

- RAM: >= 2 GB (64 MB minimum)
- CPU: >= 1 core

Notably, PyImageJ can be installed and used on server infrastructure for
large scale image processing.

### OS Requirements

PyImageJ has been tested on the following operating systems:

- Linux (Ubuntu 20.04 LTS)
- Windows
- macOS

### Software Requirements

PyImageJ requires the following packages:

* Python >= 3.7
* [imglyb] >= 2.0.1
* [jgo] >= 1.0.3
* [JPype] >= 1.3.0
* [labeling] >= 0.1.12
* [matplotlib] \(optional, for `ij.py.show` function only)
* [NumPy]
* [scyjava] >= 1.8.0
* [xarray]

PyImageJ will not function properly if dependency versions are too old.

In addition, PyImageJ requires [OpenJDK] and [Maven] to be installed.

## Installation

PyImageJ can be installed using [Conda]+[Mamba]. Here is how to create
and activate a new conda environment with PyImageJ available:

```
conda install mamba -n base -c conda-forge
mamba create -n pyimagej -c conda-forge pyimagej openjdk=8
conda activate pyimagej
```

Alternately, you can install PyImageJ with pip, but in this
case you will need to install OpenJDK and Maven manually.

Installation time takes approximately 20 seconds. Initializing PyImageJ
takes an additional ~30 seconds to ~2-3 minutes (depending on bandwidth)
while it downloads and caches the needed Java libraries.

For detailed installation instructions and requirements, see
[Installation](https://pyimagej.readthedocs.io/en/latest/Install.html).

## Usage

The first step when using PyImageJ is to create an ImageJ2 gateway.
This gateway can point to any official release of ImageJ2 or to a local
installation. Using the gateway, you have full access to the ImageJ2 API,
plus utility functions for translating between Python (NumPy, xarray,
pandas, etc.) and Java (ImageJ2, ImgLib2, etc.) structures.

For instructions on how to start up the gateway for various settings, see
[How to initialize PyImageJ](https://pyimagej.readthedocs.io/en/latest/Initialization.html).

Here is an example of opening an image using ImageJ2 and displaying it:

```python
# Create an ImageJ2 gateway with the newest available version of ImageJ2.
import imagej
ij = imagej.init()

# Load an image.
image_url = 'https://imagej.net/images/clown.jpg'
jimage = ij.io().open(image_url)

# Convert the image from ImageJ2 to xarray, a package that adds
# labeled datasets to numpy (http://xarray.pydata.org/en/stable/).
image = ij.py.from_java(jimage)

# Display the image (backed by matplotlib).
ij.py.show(image, cmap='gray')
```

For more, see the
[tutorial notebooks](https://pyimagej.readthedocs.io/en/latest/notebooks.html).

## API Reference

For a complete reference of the PyImageJ API, please see the
[API Reference](https://pyimagej.readthedocs.io/en/latest/api.html).

## Getting Help

[The Scientific Community Image Forum](https://forum.image.sc/tag/pyimagej)
is the best place to get general help on usage of PyImageJ, ImageJ2, and any
other image processing tasks. Bugs can be reported to the PyImageJ GitHub
[issue tracker](https://github.com/imagej/pyimagej/issues).

## Contributing

All contributions, reports, and ideas are welcome. Contribution is done
via pull requests onto the pyimagej repository.

Most development discussion takes place on the pyimagej
[GitHub repository](https://github.com/imagej/pyimagej).
You can also reach the developers at the
[Image.sc Zulip chat](https://imagesc.zulipchat.com/#narrow/stream/328100-scyjava).

For details on how to develop the PyImageJ codebase, see
[Development.md](https://pyimagej.readthedocs.io/en/latest/Development.html).

------------------------------------------------------------------------------

[ImageJ2]: https://imagej.net/software/imagej2
[ImageJ]: https://imagej.net/software/imagej
[CellProfiler]: https://imagej.net/software/cellprofiler
[OpenCV]: https://imagej.net/software/opencv
[ITK]: https://imagej.net/software/itk
[imglyb]: https://github.com/imglib/imglyb
[jgo]: https://github.com/scijava/jgo
[JPype]: https://jpype.readthedocs.io/
[labeling]: https://github.com/Labelings/Labeling
[matplotlib]: https://matplotlib.org/
[NumPy]: https://numpy.org/
[scyjava]: https://github.com/scijava/scyjava
[xarray]: https://docs.xarray.dev/
[OpenJDK]: https://en.wikipedia.org/wiki/OpenJDK
[Maven]: https://maven.apache.org/
[Conda]: https://conda.io/
[Mamba]: https://mamba.readthedocs.io/

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyimagej",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "java,imagej,imagej2,fiji",
    "author": "",
    "author_email": "ImageJ2 developers <ctrueden@wisc.edu>",
    "download_url": "https://files.pythonhosted.org/packages/6d/fc/ff9ea31049c2c925f96670e89b08867a4eaaade822ebc1ad1db305b42841/pyimagej-1.4.1.tar.gz",
    "platform": "any",
    "description": "# PyImageJ: Python wrapper for ImageJ2\n\n[![Image.sc Forum](https://img.shields.io/badge/dynamic/json.svg?label=forum&url=https%3A%2F%2Fforum.image.sc%2Ftags%2Fpyimagej.json&query=%24.topic_list.tags.0.topic_count&colorB=brightgreen&suffix=%20topics&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABPklEQVR42m3SyyqFURTA8Y2BER0TDyExZ+aSPIKUlPIITFzKeQWXwhBlQrmFgUzMMFLKZeguBu5y+//17dP3nc5vuPdee6299gohUYYaDGOyyACq4JmQVoFujOMR77hNfOAGM+hBOQqB9TjHD36xhAa04RCuuXeKOvwHVWIKL9jCK2bRiV284QgL8MwEjAneeo9VNOEaBhzALGtoRy02cIcWhE34jj5YxgW+E5Z4iTPkMYpPLCNY3hdOYEfNbKYdmNngZ1jyEzw7h7AIb3fRTQ95OAZ6yQpGYHMMtOTgouktYwxuXsHgWLLl+4x++Kx1FJrjLTagA77bTPvYgw1rRqY56e+w7GNYsqX6JfPwi7aR+Y5SA+BXtKIRfkfJAYgj14tpOF6+I46c4/cAM3UhM3JxyKsxiOIhH0IO6SH/A1Kb1WBeUjbkAAAAAElFTkSuQmCC)](https://forum.image.sc/tag/pyimagej)\n[![Build Status](https://github.com/imagej/pyimagej/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/imagej/pyimagej/actions/workflows/build.yml)\n[![codecov](https://codecov.io/gh/imagej/pyimagej/branch/main/graph/badge.svg?token=9z6AYgHINK)](https://codecov.io/gh/imagej/pyimagej)\n[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/imagej/pyimagej/main)\n\nPyImageJ provides a set of wrapper functions for integration between [ImageJ2]\nand Python. It also supports the original [ImageJ] API and data structures.\n\nA major advantage of this approach is the ability to combine ImageJ and ImageJ2\nwith other tools available from the Python software ecosystem, including NumPy,\nSciPy, scikit-image, [CellProfiler], [OpenCV], [ITK] and many more.\n\n## Quick Start\n\nJump into the [documentation and tutorials](https://pyimagej.readthedocs.io/) to get started!\n\n## System Requirements\n\n### Hardware Requirements\n\nPyImageJ requires at minimum a standard computer with enough RAM and CPU\nperformance to support the workflow operations defined by the user. While\nPyImageJ will run on a range of hardware, we recommend the following RAM\nand CPU specifications:\n\n- RAM: >= 2 GB (64 MB minimum)\n- CPU: >= 1 core\n\nNotably, PyImageJ can be installed and used on server infrastructure for\nlarge scale image processing.\n\n### OS Requirements\n\nPyImageJ has been tested on the following operating systems:\n\n- Linux (Ubuntu 20.04 LTS)\n- Windows\n- macOS\n\n### Software Requirements\n\nPyImageJ requires the following packages:\n\n* Python >= 3.7\n* [imglyb] >= 2.0.1\n* [jgo] >= 1.0.3\n* [JPype] >= 1.3.0\n* [labeling] >= 0.1.12\n* [matplotlib] \\(optional, for `ij.py.show` function only)\n* [NumPy]\n* [scyjava] >= 1.8.0\n* [xarray]\n\nPyImageJ will not function properly if dependency versions are too old.\n\nIn addition, PyImageJ requires [OpenJDK] and [Maven] to be installed.\n\n## Installation\n\nPyImageJ can be installed using [Conda]+[Mamba]. Here is how to create\nand activate a new conda environment with PyImageJ available:\n\n```\nconda install mamba -n base -c conda-forge\nmamba create -n pyimagej -c conda-forge pyimagej openjdk=8\nconda activate pyimagej\n```\n\nAlternately, you can install PyImageJ with pip, but in this\ncase you will need to install OpenJDK and Maven manually.\n\nInstallation time takes approximately 20 seconds. Initializing PyImageJ\ntakes an additional ~30 seconds to ~2-3 minutes (depending on bandwidth)\nwhile it downloads and caches the needed Java libraries.\n\nFor detailed installation instructions and requirements, see\n[Installation](https://pyimagej.readthedocs.io/en/latest/Install.html).\n\n## Usage\n\nThe first step when using PyImageJ is to create an ImageJ2 gateway.\nThis gateway can point to any official release of ImageJ2 or to a local\ninstallation. Using the gateway, you have full access to the ImageJ2 API,\nplus utility functions for translating between Python (NumPy, xarray,\npandas, etc.) and Java (ImageJ2, ImgLib2, etc.) structures.\n\nFor instructions on how to start up the gateway for various settings, see\n[How to initialize PyImageJ](https://pyimagej.readthedocs.io/en/latest/Initialization.html).\n\nHere is an example of opening an image using ImageJ2 and displaying it:\n\n```python\n# Create an ImageJ2 gateway with the newest available version of ImageJ2.\nimport imagej\nij = imagej.init()\n\n# Load an image.\nimage_url = 'https://imagej.net/images/clown.jpg'\njimage = ij.io().open(image_url)\n\n# Convert the image from ImageJ2 to xarray, a package that adds\n# labeled datasets to numpy (http://xarray.pydata.org/en/stable/).\nimage = ij.py.from_java(jimage)\n\n# Display the image (backed by matplotlib).\nij.py.show(image, cmap='gray')\n```\n\nFor more, see the\n[tutorial notebooks](https://pyimagej.readthedocs.io/en/latest/notebooks.html).\n\n## API Reference\n\nFor a complete reference of the PyImageJ API, please see the\n[API Reference](https://pyimagej.readthedocs.io/en/latest/api.html).\n\n## Getting Help\n\n[The Scientific Community Image Forum](https://forum.image.sc/tag/pyimagej)\nis the best place to get general help on usage of PyImageJ, ImageJ2, and any\nother image processing tasks. Bugs can be reported to the PyImageJ GitHub\n[issue tracker](https://github.com/imagej/pyimagej/issues).\n\n## Contributing\n\nAll contributions, reports, and ideas are welcome. Contribution is done\nvia pull requests onto the pyimagej repository.\n\nMost development discussion takes place on the pyimagej\n[GitHub repository](https://github.com/imagej/pyimagej).\nYou can also reach the developers at the\n[Image.sc Zulip chat](https://imagesc.zulipchat.com/#narrow/stream/328100-scyjava).\n\nFor details on how to develop the PyImageJ codebase, see\n[Development.md](https://pyimagej.readthedocs.io/en/latest/Development.html).\n\n------------------------------------------------------------------------------\n\n[ImageJ2]: https://imagej.net/software/imagej2\n[ImageJ]: https://imagej.net/software/imagej\n[CellProfiler]: https://imagej.net/software/cellprofiler\n[OpenCV]: https://imagej.net/software/opencv\n[ITK]: https://imagej.net/software/itk\n[imglyb]: https://github.com/imglib/imglyb\n[jgo]: https://github.com/scijava/jgo\n[JPype]: https://jpype.readthedocs.io/\n[labeling]: https://github.com/Labelings/Labeling\n[matplotlib]: https://matplotlib.org/\n[NumPy]: https://numpy.org/\n[scyjava]: https://github.com/scijava/scyjava\n[xarray]: https://docs.xarray.dev/\n[OpenJDK]: https://en.wikipedia.org/wiki/OpenJDK\n[Maven]: https://maven.apache.org/\n[Conda]: https://conda.io/\n[Mamba]: https://mamba.readthedocs.io/\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Python wrapper for ImageJ",
    "version": "1.4.1",
    "split_keywords": [
        "java",
        "imagej",
        "imagej2",
        "fiji"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3292da1cc68e9c05c4ee575343905e91d1ceb522cc9641aa464e066805bdd8d",
                "md5": "9a5706305dc4f32ddb31d1fb01731dc8",
                "sha256": "c1c56889c4a73a358832758d678935fa563580f3fcb4071f37e195a289a985d2"
            },
            "downloads": -1,
            "filename": "pyimagej-1.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9a5706305dc4f32ddb31d1fb01731dc8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 34538,
            "upload_time": "2023-03-13T17:52:24",
            "upload_time_iso_8601": "2023-03-13T17:52:24.008794Z",
            "url": "https://files.pythonhosted.org/packages/d3/29/2da1cc68e9c05c4ee575343905e91d1ceb522cc9641aa464e066805bdd8d/pyimagej-1.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6dfcff9ea31049c2c925f96670e89b08867a4eaaade822ebc1ad1db305b42841",
                "md5": "a6f40a6cf0a26112fa6d549ed2019c3e",
                "sha256": "cd6a1e1b0d94b55e9858257f29eea20c0ce67db897dd6624dac2cf8d9c9a4d2c"
            },
            "downloads": -1,
            "filename": "pyimagej-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a6f40a6cf0a26112fa6d549ed2019c3e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 58034,
            "upload_time": "2023-03-13T17:52:25",
            "upload_time_iso_8601": "2023-03-13T17:52:25.229808Z",
            "url": "https://files.pythonhosted.org/packages/6d/fc/ff9ea31049c2c925f96670e89b08867a4eaaade822ebc1ad1db305b42841/pyimagej-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-13 17:52:25",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "pyimagej"
}
        
Elapsed time: 0.05371s