Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lcav/lenslesspicam
Lensless imaging toolkit. Complete tutorial: https://go.epfl.ch/lenslesspicam
https://github.com/lcav/lenslesspicam
admm bayer fista inverse-problems lensless python raspberry-pi signal-processing unrolled-algorithms
Last synced: about 2 months ago
JSON representation
Lensless imaging toolkit. Complete tutorial: https://go.epfl.ch/lenslesspicam
- Host: GitHub
- URL: https://github.com/lcav/lenslesspicam
- Owner: LCAV
- License: gpl-3.0
- Created: 2021-10-22T08:50:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T16:16:43.000Z (8 months ago)
- Last Synced: 2024-05-14T00:13:01.048Z (8 months ago)
- Topics: admm, bayer, fista, inverse-problems, lensless, python, raspberry-pi, signal-processing, unrolled-algorithms
- Language: Python
- Homepage: https://lensless.readthedocs.io
- Size: 102 MB
- Stars: 39
- Watchers: 4
- Forks: 20
- Open Issues: 11
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
=============
LenslessPiCam
=============.. image:: https://readthedocs.org/projects/lensless/badge/?version=latest
:target: http://lensless.readthedocs.io/en/latest/
:alt: Documentation Status.. image:: https://joss.theoj.org/papers/10.21105/joss.04747/status.svg
:target: https://doi.org/10.21105/joss.04747
:alt: DOI.. image:: https://static.pepy.tech/badge/lensless
:target: https://www.pepy.tech/projects/lensless
:alt: Downloads.. image:: https://colab.research.google.com/assets/colab-badge.svg
:target: https://lensless.readthedocs.io/en/latest/examples.html
:alt: notebooks.. image:: https://img.shields.io/badge/Google_Slides-yellow
:target: https://docs.google.com/presentation/d/1PcNhMfjATSwcpbHUMrmc88ciQmheBJ7alz8hel8xnGU/edit?usp=sharing
:alt: slides.. image:: https://huggingface.co/datasets/huggingface/badges/resolve/main/powered-by-huggingface-dark.svg
:target: https://huggingface.co/bezzam
:alt: huggingface*A Hardware and Software Toolkit for Lensless Computational Imaging*
--------------------------------------------------------------------.. image:: https://github.com/LCAV/LenslessPiCam/raw/main/scripts/recon/example.png
:alt: Lensless imaging example
:align: centerThis toolkit has everything you need to perform imaging with a lensless camera.
The sensor in most examples is the `Raspberry Pi HQ `__,
camera sensor as it is low cost (around 50 USD) and has a high resolution (12 MP).
The lensless encoder/mask used in most examples is either a piece of tape or a `low-cost LCD `__.
As **modularity** is a key feature of this toolkit, we try to support different sensors and/or lensless encoders.The toolkit includes:
* Camera assembly tutorials (`link `__).
* Measurement scripts (`link `__).
* Dataset preparation and loading tools, with `Hugging Face `__ integration (`slides `__ on uploading a dataset to Hugging Face with `this script `__).
* `Reconstruction algorithms `__ (e.g. FISTA, ADMM, unrolled algorithms, trainable inversion, , multi-Wiener deconvolution network, pre- and post-processors).
* `Training script `__ for learning-based reconstruction.
* `Pre-trained models `__ that can be loaded from `Hugging Face `__, for example in `this script `__.
* Mask `design `__ and `fabrication `__ tools.
* `Simulation tools `__.
* `Evalutions tools `__ (e.g. PSNR, LPIPS, SSIM, visualizations).
* `Demo `__ that can be run on Telegram!Please refer to the `documentation `__ for more details,
while an overview of example notebooks can be found `here `__.We've also written a few Medium articles to guide users through the process
of building the camera, measuring data with it, and reconstruction.
They are all laid out in `this post `__.Setup
-----If you are just interested in using the reconstruction algorithms and
plotting / evaluation tools you can install the package via ``pip``:.. code:: bash
pip install lensless
For plotting, you may also need to install
`Tk `__.For performing measurements, the expected workflow is to have a local
computer which interfaces remotely with a Raspberry Pi equipped with
the HQ camera sensor (or V2 sensor). Instructions on building the camera
can be found `here `__.The software from this repository has to be installed on **both** your
local machine and the Raspberry Pi. Note that we highly recommend using
Python 3.9, as some Python library versions may not be available with
earlier versions of Python. Moreover, its `end-of-life `__
is Oct 2025.*Local machine setup*
=====================Below are commands that worked for our configuration (Ubuntu
21.04), but there are certainly other ways to download a repository and
install the library locally... code:: bash
# download from GitHub
git clone [email protected]:LCAV/LenslessPiCam.git
cd LenslessPiCam# create virtual environment (as of Oct 4 2023, rawpy is not compatible with Python 3.12)
# -- using conda
conda create -n lensless python=3.11
conda activate lensless# -- OR venv
python3.11 -m venv lensless_env
source lensless_env/bin/activate# install package
pip install -e .# extra dependencies for local machine for plotting/reconstruction
pip install -r recon_requirements.txt# (optional) try reconstruction on local machine
python scripts/recon/admm.py# (optional) try reconstruction on local machine with GPU
python scripts/recon/admm.py -cn pytorchNote (25-04-2023): for using the :py:class:`~lensless.recon.apgd.APGD` reconstruction method based on Pycsou
(now `Pyxu `__), a specific commit has
to be installed (as there was no release at the time of implementation):.. code:: bash
pip install git+https://github.com/matthieumeo/pycsou.git@38e9929c29509d350a7ff12c514e2880fdc99d6e
If PyTorch is installed, you will need to be sure to have PyTorch 2.0 or higher,
as Pycsou is not compatible with earlier versions of PyTorch. Moreover,
Pycsou requires Python within
`[3.9, 3.11) `__.Moreover, ``numba`` (requirement for Pycsou V2) may require an older version of NumPy:
.. code:: bash
pip install numpy==1.23.5
*Raspberry Pi setup*
====================After `flashing your Raspberry Pi with SSH enabled `__,
you need to set it up for `passwordless access `__.
Do not set a password for your SSH key pair, as this will not work with the
provided scripts.On the Raspberry Pi, you can then run the following commands (from the ``home``
directory):.. code:: bash
# dependencies
sudo apt-get install -y libimage-exiftool-perl libatlas-base-dev \
python3-numpy python3-scipy python3-opencv
sudo pip3 install -U virtualenv# download from GitHub
git clone [email protected]:LCAV/LenslessPiCam.git# install in virtual environment
cd LenslessPiCam
virtualenv --system-site-packages -p python3 lensless_env
source lensless_env/bin/activate
pip install --no-deps -e .
pip install -r rpi_requirements.txt# test on-device camera capture (after setting up the camera)
(lensless_env) python scripts/measure/on_device_capture.pyYou may still need to manually install ``numpy`` and/or ``scipy`` with ``pip`` in case libraries (e.g. ``libopenblas.so.0``) cannot be detected.
Acknowledgements
----------------The idea of building a lensless camera from a Raspberry Pi and a piece of
tape comes from Prof. Laura Waller's group at UC Berkeley. So a huge kudos
to them for the idea and making tools/code/data available! Below is some of
the work that has inspired this toolkit:* `Build your own DiffuserCam tutorial `__.
* `DiffuserCam Lensless MIR Flickr dataset `__ [1]_.A few students at EPFL have also contributed to this project:
* Julien Sahli: support and extension of algorithms for 3D.
* Yohann Perron: unrolled algorithms for reconstruction.
* Aaron Fargeon: mask designs.
* Rein Bentdal: mask fabrication with 3D printing.Citing this work
----------------If you use these tools in your own research, please cite the following:
::
@article{Bezzam2023,
doi = {10.21105/joss.04747},
url = {https://doi.org/10.21105/joss.04747},
year = {2023},
publisher = {The Open Journal},
volume = {8},
number = {86},
pages = {4747},
author = {Eric Bezzam and Sepand Kashani and Martin Vetterli and Matthieu Simeoni},
title = {LenslessPiCam: A Hardware and Software Platform for Lensless Computational Imaging with a Raspberry Pi},
journal = {Journal of Open Source Software}
}References
----------.. [1] Monakhova, K., Yurtsever, J., Kuo, G., Antipa, N., Yanny, K., & Waller, L. (2019). Learned reconstructions for practical mask-based lensless imaging. Optics express, 27(20), 28075-28090.