SkillAgentSearch skills...

Cdtools

One more python library for ptychography and related coherent lensless imaging methods

Install / Use

/learn @cdtools-developers/Cdtools
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

CDTools

CDTools is a python library for ptychography and CDI reconstructions, using an Automatic Differentiation based approach.

from matplotlib import pyplot as plt
from cdtools.datasets import Ptycho2DDataset
from cdtools.models import FancyPtycho

# Load a data file
dataset = Ptycho2DDataset.from_cxi('ptycho_data.cxi')

# Initialize a model from the data
model = FancyPtycho.from_dataset(dataset)

# Run a reconstruction
for loss in model.Adam_optimize(10, dataset):
    print(model.report())

# Save the results
model.save_to_h5('ptycho_results.h5', dataset)

# And look at them!
model.inspect(dataset) # See the reconstructed object, probe, etc.
model.compare(dataset) # See how the simulated and measured patterns compare
plt.show()

Further documentation is found here.

Instructions for building custom documentation based on a specific version or commit can be found here.

Installation

CDTools can be installed in several ways depending on your needs. For most users, installation from pypi is recommended. For developers or those who want the latest features, installation from source is available.

Installation from pypi

CDTools can be installed via pip as the cdtools-py package on PyPI:

$ pip install cdtools-py

or using uv:

$ uv pip install cdtools-py

Installation from Source

For development or to access the latest features, CDTools can be installed directly from source:

$ git clone https://github.com/cdtools-developers/cdtools.git
$ cd cdtools
$ pip install -e .

or using uv:

$ git clone https://github.com/cdtools-developers/cdtools.git
$ cd cdtools
$ uv pip install -e .

Installing for Contributors (with tests and docs dependencies)

If you want to run the test suite or build the documentation, install with the extra dependencies:

$ pip install -e ."[tests,docs]"

or with uv:

$ uv pip install -e ."[tests,docs]"

CDTools was developed in the photon scattering lab at MIT, and further development took place within the computational x-ray imaging group at PSI. The code is distributed under an MIT (a.k.a. Expat) license. If you would like to publish any work that uses CDTools, please contact Abe Levitan.

Have a wonderful day!

View on GitHub
GitHub Stars14
CategoryDevelopment
Updated3d ago
Forks6

Languages

Python

Security Score

75/100

Audited on Apr 3, 2026

No findings