Metadata-Version: 2.1
Name: read_lif
Version: 0.3.0
Summary: A Python module for loading lif file as numpy array
Home-page: https://github.com/yangyushi/read_lif
Author: Yushi Yang
Author-email: yangyushi1992@icloud.com
License: UNKNOWN
Description: # read_lif
        
        Load 3D confocal images from `lif` files as `numpy` arrays.
        
        The code was originally written by Mathieu Leocmach in package [colloids](https://github.com/MathieuLeocmach/colloids).
        
        ## Install
        
        - The most convenient way would be: `pip install read_lif`
        - You can also Include the file `read_lif` in your project directory
        
        ## How to Use It
        
        ```python
        import read_lif
        
        reader = read_lif.Reader('lif_file.lif')
        series = reader.getSeries()
        chosen = series[0]  # choose first image in the lif file
        image = chosen.getFrame(T=0, channel=0)  # image is a numpy array, first time point & first channel
        ```
        
Platform: UNKNOWN
Requires-Python: >=2.5
Description-Content-Type: text/markdown
