Skip to content

Latest commit

 

History

History
192 lines (167 loc) · 11.3 KB

README.md

File metadata and controls

192 lines (167 loc) · 11.3 KB

preprint paper website Github commit

multicolor DMD-SIM

This repository contains code for designing, analyzing, and carrying out multicolor structured illumination microscopy experiments based on a digital micromirror device (DMD-SIM), including DMD simulation code, DMD pattern generation, SIM reconstruction and instrument control. It also includes a number of useful utilities for simulating the resulting diffraction pattern given certain DMD patterns, determining system point-spread functions and optical transfer functions, and determining the affine transformation between the DMD coordinates and the imaging space coordinates. The various files are described in more detail below.

Published work using this code

  • "Multicolor structured illumination microscopy and quantitative control of polychromatic light with a digital micromirror device" (BOE, bioRxiv, Zenodo, release).
  • "Resolution doubling in light-sheet microscopy via oblique plane structured illumination" (Nat. Methods, bioRxiv, Zenodo, release).
  • "Spatial wavefront shaping with a multipolar-resonant metasurface for structured illumination microscopy" (Opt. Mat. Exp., arXiv).
  • "A Structured Illumination Microscopy Framework with Spatial-Domain Noise Propagation" (bioRxiv, Zenodo, v1.5.0).
  • "Fourier synthesis optical diffraction tomography for kilohertz rate volumetric imaging" (arXiv).

Installation

The best way to use this python package is to install it with pip

git clone https://github.com/QI2lab/mcSIM.git
cd mcSIM
pip install .

If you would like to edit the code, then install using the -e option

git clone https://github.com/QI2lab/mcSIM.git
cd mcSIM
pip install -e .

Optional hardware control

The dependencies for the experimental control code are not installed by default because the DMD control code relies on the Windows specific pywinusb. To install these dependencies run

git clone https://github.com/QI2lab/mcSIM.git
cd mcSIM
pip install .[expt_ctrl]

Optional GPU support

Some functions can be optionally run on a GPU. This functionality has been tested with CUDA 11.2 and 11.8. If GPU support is desired, first install the CUDA toolkit manually, and then install mcSIM with pip. For example, if you are using a conda environment and CUDA toolkit 11.8

conda install -c conda-forge cudatoolkit=11.8
git clone https://github.com/QI2lab/mcSIM.git
cd mcSIM
pip install .[gpu]

Alternatively, installing CuPy first should pull in the cudatoolkit dependencies

conda install -c conda-forge cupy cuda-version=11.8
git clone https://github.com/QI2lab/mcSIM.git
cd mcSIM
pip install .[gpu]

This will install the appropriate version of CuPy and the scikit-image portion of cuCIM. Note that the entire RAPIDS/cuCIM package cannot be installed on Windows, but the scikit-image portion can. Alternatively, to install the scikit-image portion of cuCIM manually run

pip install "git+https://github.com/rapidsai/[email protected]#egg=cucim&subdirectory=python/cucim"

or the tag v22.12.00 can be replaced with the most recent version.

SIM reconstruction code

Code for reconstructing SIM images from raw data using a Gustafsson/Heintzmann Wiener filter style reconstruction. Several reconstruction options are available, largely following either the approach of openSIM or fairSIM. To get started with reconstructing SIM data, download image data from Zenodo and place it in a directory called examples/data. Then, see the example scripts

DMD simulation code

Code for simulating the diffraction patterns produced by the DMD. Various scripts illustrating the usage of this code can be found in the examples directory. This simulation code has many useful features, including an analytic solution for the joint blaze/diffraction condition, pattern simulation tools, tools for extracting the intensity pattern in the Fourier plane of a collecting lens, etc. For example usage, see

This file can be used to generate multicolor SIM patterns and other useful calibrations patterns for the DMD. It also contains many tools for working with the basis vector/unit cell representation of DMD patterns. This allows a complete enumeration of DMD diffraction orders in a compact and computationally efficient form.

Utility code

Code to fit the affine transformation between the DMD coordinates and camera coordinates using imaging data from a DMD pattern consisting of many small points. These code relies on tools for working with affine transformations found here. For example usage first download the image data available on Zenodo, and then see the script calibrate_affine_xform.py.

Useful tools for automatically localizing sparse fluorescent beads and performing both 2D and 3D PSF fitting using various PSF models. Also provides useful statistics and figures summarizing the results. This code has now been split out into a separate repository. For more information about these tools, see the readme pip installing the mcsim repository as described above will also pull in these dependencies.

Examples

Scripts illustrated examples of different DMD simulations and analysis are stored in examples. Associated data necessary to run some of these examples can be downloaded from Zenodo. These scripts assume this data has been placed in a directory called examples/data

Hardware control code

Hardware control is based around MicroManager2.0. Currently, we control the instrument using a fork of the napari-micromanager project which controls the MicroManager core using pymmcore-plus. Our fork of this project relies on MicroManager device drives to control cameras and stages, and on python code to control the DMD and DAQ. The "device adapters" for the DMD and DAQ are found below

Code for controlling a DLP6500 or DLP9000 DMD over USB on Windows. This code was initially based on the approaches of Lightcrafter6500DMDControl and Pycrafter6500. Extension to other operating systems has not been implemented but should be straightforward.

This file also includes functions used to define pattern sequences on the DMD using patterns have either been previously loaded onto the firmware using the Texas Instruments DLP6500 and DLP9000 GUI or which are loaded "on-the-fly". There is a low-level interface for running these patterns based directly on their index in the firmware. There is also a higher-level interface which supports defining "channels" and "modes" which can be saved in a json configuration file.

When run as a script, this file provides a command line interface to programming DMD pattern sequences.

Code for controlling a national instruments DAQ through PyDAQmx

DAQ configuration file describing "modes" and "channels" for the DAQ. This file is used by nidaq instances created with daq.py

This file is used to create DAQ sequences for SIM and ODT experiments

expt_ctrl/*.cfg

MicroManager configuration files describing the equipment and settings used in the experiment.

useful script files

Example scripts which are useful for controlling various instruments during testing include:

Instrument design

A parts list is available here. Mechanical drawings and 3D models of custom parts such as the DMD mount are available on Zenodo. For a more complete description of the optical path, see our BOE paper linked above.

Documentation

Documentation is generated from function docstrings and built with Sphinx. e.g. navigate to docs and run

make html

Then open docs/_build/html/index.html in your browser

Acknowlegements

Thank you to Songyun Gu for extending the DMD control code to work with the DLP9000. Thank you to Beibei Gao for assistance in extending the DMD pattern generation code to work with the staggered pixel geometry used by the DLP4500.