Giter Site home page Giter Site logo

sifreader's Introduction

SIF Reader

This package is designed to read Andor SIF image file.

In addition to raw image data, it provides access to the wavelength axis for spectra, and metadata such as exposure time, gain, recording date etc. Image data can be read as a numpy array or as an xarray DataArray, which contains the image data as well as the coordinate axes and labels in a single object. For spectra, the spectral axis can be returned as nanometers, wavenumbers or electron volts.

To the best of our knowledge, this is currently the only Python package that can extract wavelength information from .sif files using only pure Python and numpy (i.e. without relying on any Andor dll libraries).

Requirements

numpy (optionally xarray, pytest to run the unit tests)

Installation

Install with pip:

>pip install sifreader

Usage

Open a file and print the metadata:

>file = SIFFile('my_image.sif')
>print(file)
<sifreader.sifreader.sifreader.SIFFile object at 0x30f9eecc0>
Original Filename:             E:\test_sequence.sif
Date:                          Thu May 10 12:01:48 2018
...

Read a single or all frames contained in the file as numpy arrays:

>first_frame = file.read_block(0)
>all_frames = file.read_all()

The horizontal axis is contained in the x_axis member variable. If the file contains a spectrum, the axis will be the wavelength in namometers, otherwise it will contain the pixel numbers:

>wavelengths = file.x_axis

With the optional xarray package

Read all frames in the file as a DataArray:

>xarr = file.as_xarray()

For spectra: make a DataArray that contains the photon energy in eV rather than the default wavelength:

>spectrum_file = SIFFile('my_spectrum.sif')
>xarr = spectrum_file.as_xarray('photon_energy')

The options for this method are 'wavelength' (default), 'wavenumber' and 'photon_energy'. Note, that this only makes a difference if the file contains a spectrum. For images, both axes will always contain the pixel numbers.

One of the nice features of DataArray is the ability to easily select data and plot it in a single line:

spectrum_file.as_xarray().sel(frames=0, wavelength=slice(749.5, 768.2)).plot()

Version History

  • 0.2: Added support for wavelength information, xarray exporting and unit tests
  • 0.1: First release

sifreader's People

Contributors

lightingghost avatar drs251 avatar jsalort avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.