Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fastddm

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastddm

A Python/C++ library for the analysis of Differential Dynamic Microscopy experiments

  • 0.3.12
  • Source
  • PyPI
  • Socket score

Maintainers
1

FastDDM

Python GitHub Actions PyPI Version Read the Docs License: GPL v3

FastDDM is a Python package for the analysis of microscopy image sequences using Differential Dynamic Microscopy on CPU and GPU. The features implemented are targeted at the experimental soft matter research community dealing with inert and active/biological samples.

Resources

  • Documentation: Python API description, installation, examples, and usage information.
  • Example notebooks: Jupyter notebooks with practical examples.

Example scripts

These examples demonstrate some of the Python API.

Calculation of the image structure function and its azimuthal average:

import fastddm as fddm

file_names = [...]  # define here your list of image file names 
images = fddm.read_images(file_names)

pixel_size = 0.3    # um
frame_rate = 50     # frames per second
    
# compute image structure function and set experimental parameters
dqt = fddm.ddm(img_seq, range(1, len(img_seq)))
dqt.pixel_size = pixel_size
dqt.set_frame_rate(frame_rate)

# compute the azimuthal average
aa = fddm.azimuthal_average(dqt, bins=dqt.shape[-1] - 1, range=(0.0, dqt.ky[-1]))

Contributing to FastDDM

Contributions are welcome via pull requests after agreeing to the Contributors' Agreement. Please, refer to the Developers' section in the documentation.

Please, report bugs and suggest features via the issue tracker.

Citing FastDDM

Please, cite this publication in every work that uses FastDDM:

E. Lattuada, F. Krautgasser, F. Giavazzi, and R. Cerbino.
The Hitchhiker’s Guide to Differential Dynamic Microscopy.
(In preparation.)

License

FastDDM is available under the GNU GPL-3.0 license.

Acknowledgements

  • The fftw-3.3.10 and pybind11 2.12.0 libraries are included in the source tree.
  • This project was funded by the Austrian Science Fund (FWF), Grant Number M 3250-N.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc