Speed up image analysis in Python with efficient reading, batch-processing, viewing functions and easily extend your own function for batch processing.
Project description
impy is All You Need in Image Analysis
impy is an all-in-one image analysis library, equipped with parallel processing, GPU support, GUI based tools and so on.
The core array, ImgArray, is a subclass of numpy.ndarray, tagged with information such as
- image axes
- scale of each axis
- directory of the original image
- history of image processing
- and other image metadata
By making full use of them, impy provides super efficient tools of image analysis for you.
I'm also working on documentation for tutorials and API. Please take a look if you're interested in.
:warning: Image processing algorithms in ImgArray are almost stable so that their behavior will not change a lot. However, since napari is under development and I'm groping for better UI right now, any functions that currently implemented in impy viewer may change or no longer work in the future. Make sure keeping napari and impy updated when you use.
Installation
- use pip
pip install impy-array
- from source
git clone https://github.com/hanjinliu/impy
Code as fast as you speak
Almost all the functions, such as filtering, deconvolution, labeling, single molecule detection, and even those pure numpy functions, are aware of image metadata. They "know" which dimension corresponds to "z" axis, which axes they should iterate along or where to save the image. As a result, your code will be very concise:
import impy as ip
import numpy as np
img = ip.imread("path/to/image") # Read images with metadata.
img["z=3;t=0"].imshow() # Plot image slice at z=3 and t=0.
img_fil = img.gaussian_filter(sigma=2) # Paralell batch denoising. No more for loop!
img_prj = np.max(img_fil, axis="z") # Z-projection (numpy is aware of image axes!).
img_prj.imsave(f"Max-{img.name}") # Save in the same place. Don't spend time on searching for the directory!
Seamless interface between napari
napari is an interactive viewer for multi-dimensional images. impy has a simple and efficient interface with it, via the object ip.gui. Since ImgArray is tagged with image metadata, you don't have to care about axes or scales. Just run
ip.gui.add(img)
impy's viewer also provides many useful widgets and functions such as
- Excel-like table for data analysis, layer property editing etc.
- Compact file explorer
- interactive
matplotlibfigure canvas - cropping, duplication, measurement, filtering tools
Extend your function for batch processing
Already have a function for numpy and scipy? Decorate it with @ip.bind
@ip.bind
def imfilter(img, param=None):
# Your function here.
# Do something on a 2D or 3D image and return image, scalar or labels
return out
and it's ready for batch processing!
img.imfilter(param=1.0)
Commaind line usage
impy also supports command line based image analysis. All method of ImgArray is available
from commad line, such as
impy path/to/image.tif ./output.tif --method gaussian_filter --sigma 2.0
which is equivalent to
import impy as ip
img = ip.imread("path/to/image.tif")
out = img.gaussian_filter(sigma=2.0)
out.imsave("./output.tif")
For more complex procedure, it is possible to send image directly to IPython
impy path/to/image.tif -i
thr = img.gaussian_filter().threshold()
or to napari
impy path/to/image.tif -n
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 impy-array-1.25.2.tar.gz.
File metadata
- Download URL: impy-array-1.25.2.tar.gz
- Upload date:
- Size: 157.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
911564de23abede68636f1f45435d1ae3a4775d41c3cf46b48e9081c31deafd2
|
|
| MD5 |
fb646e3b7c36074cb5d7a77da1c6a469
|
|
| BLAKE2b-256 |
1e51597688fc459968646382fec69d5e956c2cde31bc1e08fb7c49b8c469d461
|
File details
Details for the file impy_array-1.25.2-py3-none-any.whl.
File metadata
- Download URL: impy_array-1.25.2-py3-none-any.whl
- Upload date:
- Size: 179.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e192bb4b4ab691a9be6495cae625c1a820cd9a680c5c17031d7b92737b56b2a2
|
|
| MD5 |
769b20092cfc54d98f18703101b58dc6
|
|
| BLAKE2b-256 |
f0a50f7c7d0101b286b6b35cabc4222dde496a9cf70ea99baf5785e43ab79c11
|