Read and write image data from and to CZI files.
Project description
Read image and metadata from Carl Zeiss(r) ZISRAW (CZI) files.
CZI is the native image file format of the ZEN(r) software by Carl Zeiss
Microscopy GmbH. It stores multidimensional images and metadata from
microscopy experiments.
**Author**: [Christoph Gohlke](http://www.lfd.uci.edu/~gohlke/)
**Organization**: Laboratory for Fluorescence Dynamics, University of California, Irvine
**Version**: 2017.09.12
Requirements
------------
+ `CPython 3.6 64-bit <http://www.python.org>`_
+ `Numpy 1.13 <http://www.numpy.org>`_
+ `Scipy 0.19 <http://www.scipy.org>`_
+ `Tifffile.py 2017.09.12 <http://www.lfd.uci.edu/~gohlke/>`_
+ `Czifle.pyx 2017.07.20 <http://www.lfd.uci.edu/~gohlke/>`_
(for decoding JpegXrFile and JpgFile images)
- Cython 0.25 <http://cython.org>
- jpeglib v9 <http://ijg.org>
- jxrlib 0.2.0 <https://github.com/glencoesoftware/jxrlib>
+ A python distuitls compatible C compiler
Revisions
---------
- 2017.09.12
- Require tifffile.py 2017.09.12
- 2017.07.21
- Use multi-threading in CziFile.asarray to decode and copy segment data.
- Always convert BGR to RGB. Remove bgr2rgb
- Decode JpegXR directly from byte arrays.
- 2017.07.13
- Add function to convert CZI file to memory-mappable TIFF file.
- 2017.07.11
- Add 'out' parameter to CziFile.asarray.
- Remove memmap option from CziFile.asarray (backwards incompatible).
- Change spline interpolation order to 0 (backwards incompatible).
- Make axes return a string.
- Require tifffile 2017.07.11.
- 2015.08.17
- Require tifffile 2015.08.17.
- 2014.10.10
- Read data into a memory mapped array (optional).
- 2013.12.04
- Decode JpegXrFile and JpgFile via _czifle extension module.
- Attempt to reconstruct tiled mosaic images.
- 2013.11.20
- Initial release.
Notes
-----
The API is not stable yet and might change between revisions.
The file format design specification [^1] is confidential and the licence agreement does not permit to write data into CZI files.
Only a subset of the 2012 specification is implemented in the initial release. Specifically, multifile images are not yet supported.
Tested on Windows with a few example files only.
References
----------
ZISRAW (CZI) File Format Design specification Release Version 1.2.2.
- CZI 07-2016/CZI-DOC ZEN 2.3/DS_ZISRAW-FileFormat.pdf (confidential).
- [Documentation can be requested here](http://microscopy.zeiss.com/microscopy/en_us/downloads/zen.html)
- [CZI The File Format for the Microscope | ZEISS International](http://microscopy.zeiss.com/microscopy/en_us/products/microscope-software/zen-2012/czi.html)
Examples
--------
```python
with CziFile('test.czi') as czi:
image = czi.asarray()
image.shape
>>>(3, 3, 3, 250, 200, 3)
image[0, 0, 0, 0, 0]
>>>array([10, 10, 10], dtype=uint8)
```
CZI is the native image file format of the ZEN(r) software by Carl Zeiss
Microscopy GmbH. It stores multidimensional images and metadata from
microscopy experiments.
**Author**: [Christoph Gohlke](http://www.lfd.uci.edu/~gohlke/)
**Organization**: Laboratory for Fluorescence Dynamics, University of California, Irvine
**Version**: 2017.09.12
Requirements
------------
+ `CPython 3.6 64-bit <http://www.python.org>`_
+ `Numpy 1.13 <http://www.numpy.org>`_
+ `Scipy 0.19 <http://www.scipy.org>`_
+ `Tifffile.py 2017.09.12 <http://www.lfd.uci.edu/~gohlke/>`_
+ `Czifle.pyx 2017.07.20 <http://www.lfd.uci.edu/~gohlke/>`_
(for decoding JpegXrFile and JpgFile images)
- Cython 0.25 <http://cython.org>
- jpeglib v9 <http://ijg.org>
- jxrlib 0.2.0 <https://github.com/glencoesoftware/jxrlib>
+ A python distuitls compatible C compiler
Revisions
---------
- 2017.09.12
- Require tifffile.py 2017.09.12
- 2017.07.21
- Use multi-threading in CziFile.asarray to decode and copy segment data.
- Always convert BGR to RGB. Remove bgr2rgb
- Decode JpegXR directly from byte arrays.
- 2017.07.13
- Add function to convert CZI file to memory-mappable TIFF file.
- 2017.07.11
- Add 'out' parameter to CziFile.asarray.
- Remove memmap option from CziFile.asarray (backwards incompatible).
- Change spline interpolation order to 0 (backwards incompatible).
- Make axes return a string.
- Require tifffile 2017.07.11.
- 2015.08.17
- Require tifffile 2015.08.17.
- 2014.10.10
- Read data into a memory mapped array (optional).
- 2013.12.04
- Decode JpegXrFile and JpgFile via _czifle extension module.
- Attempt to reconstruct tiled mosaic images.
- 2013.11.20
- Initial release.
Notes
-----
The API is not stable yet and might change between revisions.
The file format design specification [^1] is confidential and the licence agreement does not permit to write data into CZI files.
Only a subset of the 2012 specification is implemented in the initial release. Specifically, multifile images are not yet supported.
Tested on Windows with a few example files only.
References
----------
ZISRAW (CZI) File Format Design specification Release Version 1.2.2.
- CZI 07-2016/CZI-DOC ZEN 2.3/DS_ZISRAW-FileFormat.pdf (confidential).
- [Documentation can be requested here](http://microscopy.zeiss.com/microscopy/en_us/downloads/zen.html)
- [CZI The File Format for the Microscope | ZEISS International](http://microscopy.zeiss.com/microscopy/en_us/products/microscope-software/zen-2012/czi.html)
Examples
--------
```python
with CziFile('test.czi') as czi:
image = czi.asarray()
image.shape
>>>(3, 3, 3, 250, 200, 3)
image[0, 0, 0, 0, 0]
>>>array([10, 10, 10], dtype=uint8)
```
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
czifile-0.1.3.tar.gz
(15.2 kB
view details)
File details
Details for the file czifile-0.1.3.tar.gz
.
File metadata
- Download URL: czifile-0.1.3.tar.gz
- Upload date:
- Size: 15.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 533f94f684451cf9887c77f29f33944ad029403b025a68f58a2b4e2cdfba23d6 |
|
MD5 | 1f4aeb9ee156697411fd476b20e129b8 |
|
BLAKE2b-256 | 96cf28f3d10f244fe24e21fd279970fcd31b31b31013a1dafb4d837898ee2f13 |