Read and write ImageJ ROI format
Project description
Roifile is a Python library to read, write, create, and plot ImageJ ROIs, an undocumented and ImageJ application specific format to store regions of interest, geometric shapes, paths, text, and whatnot for image overlays.
- Author:
- License:
BSD-3-Clause
- Version:
2026.2.10
- DOI:
Quickstart
Install the roifile package and all dependencies from the Python Package Index:
python -m pip install -U "roifile[all]"
View overlays stored in a ROI, ZIP, or TIFF file:
python -m roifile file.roi
See Examples for using the programming interface.
Source code, examples, and support are available on GitHub.
Requirements
This revision was tested with the following requirements and dependencies (other versions may work):
CPython 3.11.9, 3.12.10, 3.13.12, 3.14.3 64-bit
NumPy 2.4.2
Tifffile 2026.1.28 (optional)
Imagecodecs 2026.1.14 (optional)
Matplotlib 3.10.8 (optional)
Revisions
2026.2.10
Revise wrapping of integer coordinates again (breaking).
Bump file version to 229.
Support groups > 255 (untested).
Support IMAGE subtype (requires imagecodecs).
Add point_type and point_size properties for point ROIs.
Do not return empty paths in path2coords.
Improve documentation.
2026.1.29
Fix code review issues.
2026.1.22
Fix boolean codec in ImagejRoi.properties.
2026.1.20
Fix reading ImagejRoi.props.
Add ImagejRoi.properties property to decode and encode ImagejRoi.props.
2026.1.8
Improve code quality.
Drop support for Python 3.10.
2025.12.12
Move tests to separate module.
2025.5.10
Support Python 3.14.
2025.2.20
…
Refer to the CHANGES file for older revisions.
Notes
The ImageJ ROI format cannot store integer coordinate values outside the range of -5000..60536.
Refer to the ImageJ RoiDecoder.java source code for a reference implementation.
Other Python packages handling ImageJ ROIs:
Examples
Create a new ImagejRoi instance from an array of x, y coordinates, then set ROI properties:
>>> roi = ImagejRoi.frompoints([[1.1, 2.2], [3.3, 4.4], [5.5, 6.6]]) >>> roi.roitype = ROI_TYPE.POINT >>> roi.point_size = ROI_POINT_SIZE.LARGE >>> roi.options |= ROI_OPTIONS.SHOW_LABELS
Export the instance to an ImageJ ROI formatted byte string or file:
>>> out = roi.tobytes()
>>> out[:4]
b'Iout'
>>> roi.tofile('_test.roi')
Read the ImageJ ROI from the file and verify the content:
>>> roi2 = ImagejRoi.fromfile('_test.roi')
>>> roi2 == roi
True
>>> roi.roitype == ROI_TYPE.POINT
True
>>> roi.subpixelresolution
True
>>> roi.coordinates()
array([[1.1, 2.2],
[3.3, 4.4],
[5.5, 6.6]], dtype=float32)
>>> roi.left, roi.top, roi.right, roi.bottom
(1, 2, 7, 8)
>>> roi2.name = 'test'
Plot the ROI using matplotlib:
>>> roi.plot()
Write the ROIs to a ZIP file:
>>> roiwrite('_test.zip', [roi, roi2], mode='w')
Read the ROIs from the ZIP file:
>>> rois = roiread('_test.zip')
>>> assert len(rois) == 2 and rois[0] == roi and rois[1].name == 'test'
Write the ROIs to an ImageJ formatted TIFF file:
>>> import numpy
>>> import tifffile
>>> tifffile.imwrite(
... '_test.tif',
... numpy.zeros((9, 9), 'u1'),
... imagej=True,
... metadata={'Overlays': [roi.tobytes(), roi2.tobytes()]},
... )
Read the ROIs embedded in an ImageJ formatted TIFF file:
>>> rois = roiread('_test.tif')
>>> assert len(rois) == 2 and rois[0] == roi and rois[1].name == 'test'
View the overlays stored in a ROI, ZIP, or TIFF file from a command line:
python -m roifile _test.roi
For an advanced example, see roifile_demo.py in the source distribution.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file roifile-2026.2.10.tar.gz.
File metadata
- Download URL: roifile-2026.2.10.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87d2b685b00a4ca15125187727e634ae5c00b902362de302b592f892259f3751
|
|
| MD5 |
d39dae0cb1ed203d991c119adf9b8e91
|
|
| BLAKE2b-256 |
59cf49d9a139e292415d669dccd0c283d99a4d027b9edbd533d7f56db8ff85e0
|
File details
Details for the file roifile-2026.2.10-py3-none-any.whl.
File metadata
- Download URL: roifile-2026.2.10-py3-none-any.whl
- Upload date:
- Size: 21.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5928a616b58a8ff1c9f89a0590db3616ccbf069c6692f8ecec2a7349f8bbb6ec
|
|
| MD5 |
e17cd03192e78ec5f4b3543531f3ff36
|
|
| BLAKE2b-256 |
34783cc84d58e13234861adf91d2897254cd84d3d4a90534d91c960b672e67d1
|