Skip to main content

No project description provided

Project description

Table of Contents

  1. General Information
  2. Installation
  3. HoloWizard Core
  4. HoloWizard Pipe
  5. HoloWizard Forge
  6. HoloWizard Livereco
  7. Please Cite

General Information

Further links

https://helmholtz.software/software/holowizard
https://connect.helmholtz-imaging.de/solution/71
https://connect.helmholtz-imaging.de/blog_gallery/blogpost/10

Installation

Python Environment

Create a new environment with python 3.11., i.e. with mamba

$ mamba create -p <path_to_env> python=3.11 

Activate enviroment

$ mamba activate <path_to_env>

Install package

$ pip install holowizard

HoloWizard Core

To create examples, open a terminal and run

$ holowizard_core_create_examples <directory>

HoloWizard Pipe

Setting Up an Instance

We provide a CLI command to initialize everything:

$ holowizard_pipe_start beamtime.name=YOUR_BEAMTIME_NAME beamtime.year=YEAR_OF_BEAMTIME

This command sets up the pipeline. You can override any other configuration value using Hydra’s override syntax:
👉 Hydra Override Syntax Documentation

If the startup is successful, you’ll see output like:

INFO:     Uvicorn running on http://MY_IP_ADDRESS:MY_PORT (Press CTRL+C to quit)

Click the address to open a browser window showing that holopipe is running.
Visit: http://MY_IP_ADDRESS:MY_PORT/dashboard for useful runtime information.

Usage

Add a scan with default parameters.

You can submit scans using a simple curl POST request:

curl -X POST \
     -H "Content-Type: application/json" \
     -d '{ "a0": 1.0,
           "scan-name": "nano145014_s7_1_tum",
           "holder": 220,
           "base_dir": "holopipe",
           "reconstruction": "wire",
           "find_focus": "wire",
           "energy": 17.0
         }' \
     http://MY_IP_ADDRESS:MY_PORT/api/submit_scan

If you are on the same machine as the server is running you can use the python script:

holowizard_pipe_reconstruct_scan --help # will tell you all important parameters

Required Parameters

  • name: Folder name of the current scan
  • holder: Height of the holder
  • energy: Scan energy in keV

Optional Parameters

  • a0: Optional numeric parameter; if not provided, it will be computed automatically
  • reconstruction: Instruction set for reconstruction — wire (default) or spider
  • find_focus: Instruction set to find focus — wire (default) or spider
  • base_dir: Root directory for output files (default: holopipe)

Parameter Optimization

To performe parameter optimization go to http://MY_IP_ADDRESS:MY_PORT/parameter. Here you can set all parameter for all stages. To test them click Reconstruct. If the parameters work well, you can save them to the current beamtime folder using the Save as at the lower left. If you want to reconstruct the whole scan you can click Submit All after chosing the Options. If you select Custom it will take the parameters from the left.

Other changes during beamtime

If you change the detector or anything else like removing tasks adapt parameters the full config files are located in the beamtime/processed/holowizard_config/folder. Changes here will reflect onto future curl requests!

HoloWizard Forge

This framework can be used to generate large datasets of simulated holograms of randomly sampled objects.

Create New Dataset

Open a terminal and create a new config file with

$ holowziard_forge_create_testconfig <args>
Argument Description Position
name Name of the new config file (without file name extension) 1
--output_dir Output directory optional
--override Overrides existing configuration file optional

The config file can then be customized and used to create a new dataset with

$ holowizard_forge_generate_data <args>
Argument Description Position
config Path to the custom configuration file. 1
output_dir Output directory where the generated data is stored. 2
num_samples Number of data samples that should be generated. 3
--override Override the output folder if it already exists. optional

Output Structure

output/
└── train.hdf5
└── train.json

The file train.hdf5 contains the training data The file train.json contains the config parameters which have been used for the training data creation.

Developer Info

Add new Parameters

To add a new parameter, add it to the default configuration holowizard/forge/configs/default.json.

HoloWizard Livereco

Start the online reconstruction server with

$ holowizard_livereco_server_start

Citations

Artifact-suppressing reconstruction method:

@article{Dora:24,
author = {Johannes Dora and Martin M\"{o}ddel and Silja Flenner and Christian G. Schroer and Tobias Knopp and Johannes Hagemann},
journal = {Opt. Express},
keywords = {Free electron lasers; Holographic microscopy; Imaging techniques; Phase shift; X-ray imaging; Zone plates},
number = {7},
pages = {10801--10828},
publisher = {Optica Publishing Group},
title = {{Artifact-suppressing reconstruction of strongly interacting objects in X-ray near-field holography without a spatial support constraint}},
volume = {32},
month = {Mar},
year = {2024},
url = {https://opg.optica.org/oe/abstract.cfm?URI=oe-32-7-10801},
doi = {10.1364/OE.514641},
abstract = {The phase problem is a well known ill-posed reconstruction problem of coherent lens-less microscopic imaging, where only the squared magnitude of a complex wavefront is measured by a detector while the phase information of the wave field is lost. To retrieve the lost information, common algorithms rely either on multiple data acquisitions under varying measurement conditions or on the application of strong constraints such as a spatial support. In X-ray near-field holography, however, these methods are rendered impractical in the setting of time sensitive in situ and operando measurements. In this paper, we will forego the spatial support constraint and propose a projected gradient descent (PGD) based reconstruction scheme in combination with proper preprocessing and regularization that significantly reduces artifacts for refractive reconstructions from only a single acquired hologram without a spatial support constraint. We demonstrate the feasibility and robustness of our approach on different data sets obtained at the nano imaging endstation of P05 at PETRA III (DESY, Hamburg) operated by Helmholtz-Zentrum Hereon.},
}

Model-based autofocus:

@article{Dora:25,
author = {Johannes Dora and Martin M\"{o}ddel and Silja Flenner and Jan Reimers and Berit Zeller-Plumhoff and Christian G. Schroer and Tobias Knopp and Johannes Hagemann},
journal = {Opt. Express},
keywords = {Image analysis; Image metrics; Imaging systems; Phase retrieval; X-ray imaging; Zone plates},
number = {4},
pages = {6641--6657},
publisher = {Optica Publishing Group},
title = {Model-based autofocus for near-field phase retrieval},
volume = {33},
month = {Feb},
year = {2025},
url = {https://opg.optica.org/oe/abstract.cfm?URI=oe-33-4-6641},
doi = {10.1364/OE.544573},
}

Python Repository on Zenodo

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

holowizard_livereco_client-2.0.0.tar.gz (274.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

holowizard_livereco_client-2.0.0-py3-none-any.whl (283.2 kB view details)

Uploaded Python 3

File details

Details for the file holowizard_livereco_client-2.0.0.tar.gz.

File metadata

File hashes

Hashes for holowizard_livereco_client-2.0.0.tar.gz
Algorithm Hash digest
SHA256 993c2de43c0b7e6c26c78ed9421bde87acd73a135885290592eae4e7ade9d4ff
MD5 93a45a5e64455b2c14d7bb7fe7cd5ca1
BLAKE2b-256 8a89930389ad5ff9122f86c1200b3630bfa81c47f75d1b649c0d832c4d84f840

See more details on using hashes here.

Provenance

The following attestation bundles were made for holowizard_livereco_client-2.0.0.tar.gz:

Publisher: publish-livereco-client-to-production.yml on DESY-FS-PETRA/holowizard

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file holowizard_livereco_client-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for holowizard_livereco_client-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ef0979d3e63f49dc69d1b00aff6b9438bd4ff4aa6478d03aac91048e65f56f25
MD5 0c6900676fa8863b4d5c8efa26f32cbc
BLAKE2b-256 6dcc419462b1cecaf5c01da852599caeca468d60ba5e68d3da09eda46345988f

See more details on using hashes here.

Provenance

The following attestation bundles were made for holowizard_livereco_client-2.0.0-py3-none-any.whl:

Publisher: publish-livereco-client-to-production.yml on DESY-FS-PETRA/holowizard

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page