A libary for performing wavefront shaping experiments and simulations
Project description
What is wavefront shaping?
Wavefront shaping (WFS) is a technique for controlling the propagation of light in arbitrarily complex structures, including strongly scattering materials [1]. In WFS, a spatial light modulator (SLM) is used to shape the phase and/or amplitude of the incident light. With a properly constructed wavefront, light can be made to focus through [2], or inside [3] scattering materials; or light can be shaped to have other desired properties, such as optimal sensitivity for specific measurements [4], specialized point-spread functions [5], spectral filtering [6], or for functions like optical trapping [7].
It stands out that an important driving force in WFS is the development of new algorithms, for example, to account for sample movement [8], experimental conditions [9], to be optimally resilient to noise [10], or to use digital twin models to compute the required correction patterns [11, 12, 13, 14]. Much progress has been made towards developing fast and noise-resilient algorithms, or algorithms designed specifically for the methodology of wavefront shaping, such as using algorithms based on Hadamard patterns or Fourier-based approaches [15]. Fast techniques that enable wavefront shaping in dynamic samples [16, 17] have also been developed, and many potential applications have been prototyped, including endoscopy [12], optical trapping [18], Raman scattering [19], and deep-tissue imaging [20]. Applications extend beyond that of microscope imaging, such as in optimizing photoelectrochemical absorption [21] and tuning random lasers [22].
With the development of these advanced algorithms, however, the complexity of WFS software is steadily increasing as the field matures, which hinders cooperation as well as end-user adoption. Code for controlling wavefront shaping tends to be complex and setup-specific, and developing this code typically requires detailed technical knowledge and low-level programming. Moreover, since many labs use their own in-house programs to control the experiments, sharing and re-using code between different research groups is troublesome.
Even though authors are increasingly sharing their code, for example for controlling spatial light modulators (SLMs) [23], or running genetic algorithms [24], a modular framework that combines all aspects of hardware control, simulation, and graphical user interface (GUI) integration is still lacking.
What is OpenWFS?
OpenWFS is a Python package that is primarily designed for performing and for simulating wavefront shaping experiments. It aims to accelerate wavefront shaping research by providing:
- Hardware control. Modular code for controlling spatial light modulators, cameras, and other hardware typically encountered in wavefront shaping experiments. Highlights include:
- Spatial light modulator. The
SLM
object provides a versatile way to control spatial light modulators, allowing for software lookup tables, synchronization, texture warping, and multi-texture functionality accelerated by OpenGL. - Scanning microscope. The
ScanningMicroscope
object uses a National Instruments data acquisition card to control a laser-scanning microscope. - GenICam cameras. The
Camera
object uses theharvesters
backend [25] to access any camera supporting the GenICam standard [26]. - Automatic synchronization. OpenWFS provides tools for automatic synchronization of actuators (e.g. an SLM) and detectors (e.g. a camera). The automatic synchronization makes it trivial to perform pipelined measurements that avoid the delay normally caused by the latency of the video card and SLM.
- Spatial light modulator. The
- Simulation. The ability to simulate optical experiments is essential for the rapid development and debugging of wavefront shaping algorithms. OpenWFS provides an extensive framework for testing and simulating wavefront shaping algorithms, including the effect of measurement noise, stage drift, and user-defined aberrations. This allows for rapid prototyping and testing of new algorithms without the need for physical hardware.
- Wavefront shaping algorithms. A growing collection of wavefront shaping algorithms. OpenWFS abstracts the hardware control, synchronization, and signal processing so that the user can focus on the algorithm itself. As a result, even advanced algorithms can be implemented in a few dozens of lines of code, and automatically work with any combination of hardware and simulation tools that OpenWFS supports.
- Platform for exchange and joint collaboration. OpenWFS can be used as a platform for sharing and exchanging wavefront shaping algorithms. The package is designed to be modular and easy to expand, and it is our hope that the community will contribute to the package by adding new algorithms, hardware control modules, and simulation tools. Python was specifically chosen for this purpose for its active community, high level of abstraction and the ease of sharing tools.
- Micro-Manager compatibility. Micro-Manager [27], a widely used open-source microscopy control platform. The devices in OpenWFS, such as GenICam camera’s, or the scanning microscope, as well as all algorithms, can be controlled from Micro-Manager using the recently developed [28] adapter that imports Python scripts into Micro-Manager
- Automated troubleshooting. OpenWFS provides tools for automated troubleshooting of wavefront shaping experiments. This includes tools for measuring the performance of wavefront shaping algorithms, and for identifying common problems such as incorrect SLM calibration, drift, measurement noise, and other experimental imperfections.
Getting started
To use OpenWFS, Python 3.9 or later is required. Since it is available on the PyPI repository, OpenWFS can be installed using pip
:
pip install openwfs[all]
This will also install the optional dependencies for OpenWFS:
opengl For the OpenGL-accelerated SLM control, the PyOpenGL
package is installed. In order for this package to work, an OpenGL-compatible graphics card and driver is required.
genicam For the GenICam camera support, the harvesters
package is installed, which, in turn, needs the genicam
package. At the time of writing, this package is only available for Python versions up to 3.11. To use the GenICam camera support, you also need a compatible camera with driver installed.
- nidaq* For the scanning microscope, the
nidaqmx
package is installed, which requires a National Instruments data acquisition card with corresponding drivers to be installed on your system.
If these dependencies cannot be installed on your system, the installation will fail. In this case, you can instead install OpenWFS without dependencies by omitting [all]
in the installation command, and manually install only the required dependencies, e.g. pip install openwfs[opengl]
.
At the time of writing, OpenWFS is at version 1.0.0, and it is tested up to Python version 3.11 on Windows 11 and Manjaro and Ubuntu Linux distributions. Note that the latest versions of the package will be available on the PyPI repository, and the latest documentation and the example code can be found on the Read the Docs website [29]. The source code can be found on [30].
Listing 3.1 shows an example of how to use OpenWFS to run a simple wavefront shaping experiment. This example illustrates several of the main concepts of OpenWFS. First, the code initializes objects to control a spatial light modulator (SLM) connected to a video port, and a camera that provides feedback to the wavefront shaping algorithm. It then runs a WFS algorithm to focus the light.
This example uses the StepwiseSequential
wavefront shaping algorithm [31]. The algorithm needs access to the SLM for controlling the wavefront. This feedback is obtained from a SingleRoi
object, which takes images from the camera, and averages them over the specified circular region of interest. The algorithm returns the measured transmission matrix in the field results.t, which is used to compute the optimal phase pattern to compensate the aberrations. Finally, the code measures the intensity at the detector before and after applying the optimized phase pattern.
"""
Hello wavefront shaping
===============================================
This script demonstrates how to use OpenWFS to perform a simple
wavefront shaping experiment. To run this script, you need to have
a GenICam-compatible camera connected to your computer,
and a spatial light modulator (SLM) connected to the secondary
video output.
"""
import numpy as np
from openwfs.algorithms import StepwiseSequential
from openwfs.devices import SLM, Camera
from openwfs.processors import SingleRoi
# Display the SLM patterns on the secondary monitor
slm = SLM(monitor_id=2)
# Connect to a GenICam camera, average pixels to get feedback signal
camera = Camera(R"C:\Program Files\Basler\pylon 7\Runtime\x64\ProducerU3V.cti")
feedback = SingleRoi(camera, pos=(320, 320), mask_type="disk", radius=2.5)
# Run the algorithm
alg = StepwiseSequential(feedback=feedback, slm=slm, n_x=10, n_y=10, phase_steps=4)
result = alg.execute()
# Measure intensity with flat and shaped wavefronts
slm.set_phases(0)
before = feedback.read()
slm.set_phases(-np.angle(result.t))
after = feedback.read()
print(f"Intensity in the target increased from {before} to {after}")
This code illustrates how OpenWFS separates the concerns of the hardware control (SLM
and Camera
), signal processing (SingleRoi
) and the algorithm itself (StepwiseSequential
). A large variety of wavefront shaping experiments can be performed by using different types of feedback signals (such as optimizing multiple foci simultaneously using a MultiRoi
object), using different algorithms, or different image sources, such as a ScanningMicroscope
. Notably, these objects can be replaced by mock objects, that simulate the hardware and allow for rapid prototyping and testing of new algorithms without direct access to wavefront shaping hardware (see section-simulations
).
Acknowledgements
We would like to thank Gerwin Osnabrugge, Bahareh Mastiani, Giulia Sereni, Siebe Meijer, Gijs Hannink, Merle van Gorsel, Michele Gintoli, Karina van Beek, Abhilash Thendiyammal, Lyuba Amitonova, and Tzu-Lun Wang for their contributions to earlier revisions of our wavefront shaping code. This work was supported by the European Research Council under the European Union’s Horizon 2020 Programme / ERC Grant Agreement n° [678919], and the Dutch Research Council (NWO) through Vidi grant number 14879.
- [1] Joel Kubby, Sylvain Gigan, and Meng Cui, editors. Wavefront Shaping for Biomedical Imaging. Advances in Microscopy and Microanalysis. Cambridge University Press, 2019. doi:10.1017/9781316403938.
- [2] Ivo M. Vellekoop and A. P. Mosk. Focusing coherent light through opaque strongly scattering media. Opt. Lett., 32(16):2309–2311, Aug 2007. doi:10.1364/OL.32.002309.
- [3] Ivo M. Vellekoop, EG Van Putten, A Lagendijk, and AP Mosk. Demixing light paths inside disordered metamaterials. Optics express, 16(1):67–80, 2008.
- [4] Dorian Bouchet, Stefan Rotter, and Allard P Mosk. Maximum information states for coherent scattering measurements. Nature Physics, 17(5):564–568, 2021.
- [5] Antoine Boniface et al. Transmission-matrix-based point-spread-function engineering through a complex medium. Optica, 4(1):54–59, 2017.
- [6] Jung-Hoon Park, ChungHyun Park, YongKeun Park, Hyunseung Yu, and Yong-Hoon Cho. Active spectral filtering through turbid media. Optics Letters, Vol. 37, Issue 15, pp. 3261-3263, 37:3261–3263, 8 2012. URL: [https://opg.optica.org/viewmedia.cfm?uri=ol-37-15-3261&seq=0&html=true https://opg.optica.org/abstract.cfm?uri=ol-37-15-3261 https://opg.optica.org/ol/abstract.cfm?uri=ol-37-15-3261](https://opg.optica.org/viewmedia.cfm?uri=ol-37-15-3261&seq=0&html=true https://opg.optica.org/abstract.cfm?uri=ol-37-15-3261 https://opg.optica.org/ol/abstract.cfm?uri=ol-37-15-3261), doi:10.1364/OL.37.003261.
- [7] Tomáš Čižmár, Michael Mazilu, and Kishan Dholakia. In situ wavefront correction and its application to micromanipulation. Nature Photonics, 4(6):388–394, 2010.
- [8] Lorenzo Valzania and Sylvain Gigan. Online learning of the transmission matrix of dynamic scattering media. Optica, 10(6):708–716, 2023.
- [9] Benjamin R. Anderson, Ray Gunawidjaja, and Hergen Eilers. Effect of experimental parameters on optimal reflection of light from opaque media. Physical Review A, 93:013813, 1 2016. URL: https://journals.aps.org/pra/abstract/10.1103/PhysRevA.93.013813, doi:10.1103/PHYSREVA.93.013813/FIGURES/12/MEDIUM.
- [10] Bahareh Mastiani and Ivo M Vellekoop. Noise-tolerant wavefront shaping in a hadamard basis. Optics express, 29(11):17534–17541, 2021.
- [11] PS Salter, M Baum, I Alexeev, M Schmidt, and MJ Booth. Exploring the depth range for three-dimensional laser machining with aberration correction. Optics express, 22(15):17644–17656, 2014.
- [12] Martin Plöschner, Tomáš Tyc, and Tomáš Čižmár. Seeing through chaos in multimode fibres. Nature Photonics, 9(8):529–535, 2015.
- [13] Abhilash Thendiyammal, Gerwin Osnabrugge, Tom Knop, and Ivo M. Vellekoop. Model-based wavefront shaping microscopy. Opt. Lett., 45(18):5101–5104, Sep 2020. doi:10.1364/OL.400985.
- [14] DWS Cox, T Knop, and Ivo M. Vellekoop. Model-based aberration corrected microscopy inside a glass tube. arXiv preprint arXiv:2311.13363, 2023.
- [15] Bahareh Mastiani, Gerwin Osnabrugge, and Ivo M. Vellekoop. Wavefront shaping for forward scattering. Optics Express, 30:37436, 10 2022. doi:10.1364/oe.470194.
- [16] Yan Liu et al. Focusing light inside dynamic scattering media with millisecond digital optical phase conjugation. Optica, 4(2):280–288, Feb 2017. doi:10.1364/OPTICA.4.000280.
- [17] Omer Tzang et al. Wavefront shaping in complex media with a 350 khz modulator via a 1d-to-2d transform. Nature Photonics, 2019. doi:10.1038/s41566-019-0503-6.
- [18] Tomáš Čižmár, Michael Mazilu, and Kishan Dholakia. In situ wavefront correction and its application to micromanipulation. Nature Photonics, 4:388–394, 05 2010. doi:10.1038/nphoton.2010.85.
- [19] Jonathan V. Thompson, Graham A. Throckmorton, Brett H. Hokr, and Vladislav V. Yakovlev. Wavefront shaping enhanced raman scattering in a turbid medium. Optics letters, 41:1769, 4 2016. URL: https://pubmed.ncbi.nlm.nih.gov/27082341/, doi:10.1364/OL.41.001769.
- [20] Lina Streich et al. High-resolution structural and functional deep brain imaging using adaptive optics three-photon microscopy. Nature Methods 2021 18:10, 18:1253–1258, 9 2021. doi:10.1038/s41592-021-01257-6.
- [21] Seng Fatt Liew, Sébastien M. Popoff, Stafford W. Sheehan, Arthur Goetschy, Charles A. Schmuttenmaer, A. Douglas Stone, and Hui Cao. Coherent control of photocurrent in a strongly scattering photoelectrochemical system. ACS Photonics, 3:449–455, 3 2016. URL: https://technion-staging.elsevierpure.com/en/publications/coherent-control-of-photocurrent-in-a-strongly-scattering-photoel, doi:10.1021/ACSPHOTONICS.5B00642.
- [22] Nicolas Bachelard, Sylvain Gigan, Xavier Noblin, and Patrick Sebbah. Adaptive pumping for spectral control of random lasers. Nature Physics, 10:426–431, 2014. URL: https://ui.adsabs.harvard.edu/abs/2014NatPh..10..426B/abstract, doi:10.1038/nphys2939.
- [23] S. Popoff. Slmpy: a simple python module to interact with spatial light modulators. https://github.com/wavefrontshaping/slmPy, 2017.
- [24] Benjamin R. Anderson, Andrew O’Kins, Kostiantyn Makrasnov, Rebecca Udby, Patrick Price, and Hergen Eilers. A modular gui-based program for genetic algorithm-based feedback-assisted wavefront shaping. Journal of Physics: Photonics, 6:045008, 8 2024. URL: https://iopscience.iop.org/article/10.1088/2515-7647/ad6ed3, doi:10.1088/2515-7647/AD6ED3.
- [25] Rod Barman et al. Harvesters. URL: https://github.com/genicam/harvesters.
- [26] GenICam - generic interface for cameras. URL: https://www.emva.org/standards-technology/genicam/.
- [27] Mark Tsuchida and Sam Griffin. Micro-manager project overview. URL: https://micro-manager.org/Micro-Manager_Project_Overview.
- [28] Ivo Vellekoop and Jeroen Doornbos. Micro-manager pydevice. URL: https://micro-manager.org/PyDevice.
- [29] OpenWFS documentation. URL: https://openwfs.readthedocs.io/en/latest/.
- [30] Jeroen Doornbos, Daniël W. S. Cox, Tom Knop, Harish Sasikumar, and Ivo M. Vellekoop. Openwfs - a library for conducting and simulating wavefront shaping experiments. URL: https://github.com/IvoVellekoop/openwfs/.
- [31] Ivo M. Vellekoop and AP Mosk. Phase control algorithms for focusing light through turbid media. Optics communications, 281(11):3071–3080, 2008.
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
Built Distribution
File details
Details for the file openwfs-1.0.0.tar.gz
.
File metadata
- Download URL: openwfs-1.0.0.tar.gz
- Upload date:
- Size: 96.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 813978b711d6e3ddf63ac43ee1cf1bfbc5a335333e23c268904b2c0ab4f2d450 |
|
MD5 | c021c0f4cbbf45a9558fe854e43a9471 |
|
BLAKE2b-256 | bc6974c9028f469866d39800fb2dd3f6ae85d566acfb95959f341ac7d22919ab |
File details
Details for the file openwfs-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: openwfs-1.0.0-py3-none-any.whl
- Upload date:
- Size: 103.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3172ed3faa3aa08e8fc01d1abd59fd7a6ef99088774f784b311f3ded0d998fe8 |
|
MD5 | 9295cf71a3f16ba34c810c617616013f |
|
BLAKE2b-256 | cc0e61e3a592a793bd7132769962228f3f45d2f87883d48314b290c9b3532e7e |