A Python module for loading lif file as numpy array
Project description
explore_lif
Load 3D confocal images from lif files as numpy arrays.
Install
- The most convenient way would be:
pip install -e .from the directory where you have cloned or downloaded the code. - You can also Include the file
explore_lifin your project directory
How to Use It
For 3D Image
from explore_lif import Reader
reader = Reader('lif_file.lif')
series = reader.getSeries()
chosen = series[0] # choose first image in the lif file
# get a numpy array corresponding to the 1st time point & 1st channel
# the shape is (x, y, z)
image = chosen.getXYZ(T=0, channel=0)
For 2D Image with Multiple Channels
from explore_lif import Reader
reader = Reader('lif_file.lif')
series = reader.getSeries()
chosen = series[0] # choose first image in the lif file
# get a numpy array corresponding to the 1st time point
# the shape is (x, y, channel_number)
image = chosen.getXYC(T=0)
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
explore_lif-0.1.1.tar.gz
(23.9 kB
view details)
File details
Details for the file explore_lif-0.1.1.tar.gz.
File metadata
- Download URL: explore_lif-0.1.1.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.5.0.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e6df7ac4a6a98cc8474b8a39ce9b5f37e8ebaae5d3aac5b88ba22d91e7ac016
|
|
| MD5 |
4a893229fd7549df8aa90ce38bb7006d
|
|
| BLAKE2b-256 |
9d41a153d11df106c69881af1379065c877ecb43b3d4e0592bdbb6522a6a0158
|