fold_slice PrScO3

(Top)

Part of a series on Phase retrieval

Setup

  1. Install MATLAB
    Required Add-ons for fold_slice:

    • Signal Processing
    • Parallel Computing
    • Curve Fitting
    • Image Processing
    • Machine Learning and Statistics
    • Optimization
  2. get fold_slice code

    git clone https://github.com/yijiang1/fold_slice.git

Data

PrScO3 sample data link

Save sample_data_PrScO3.mat file (and experimental_conditions.txt for more info/post-processing)
(Recommended: save to separate project_folder/data/ directory)

Running example script

  1. go to fold_slice/ptycho/ directory

  2. copy all examples/PSO_science/xxxx.m files to ptycho/ directory

  3. First open prepare_data_PSO_science.m

    1. change data_dir to your data directory (line 9)
    2. run all blocks
  4. Open ptycho_electron_PSO_science.m

    1. change base_path to your project directory (line 6)
    2. run all blocks
      • Most errors (shown as #### PONG! ####) will probably occur here. See troubleshooting.

    An explanation of the code structure can be found here or the fold_slice github

  5. Check results

    • results are in base_path/1/ folder
    • The xxxx.hdf5 file is for PtychoShelves data management
    • roi0_Ndp128/ folder (region of interest 0, 128x128 detector array) has reconstructions
      • Folder names have information on recon method
      • MLs_L1_p8_g64_pc50_noModel_vp1_Ns21_dz10_reg1/
        • MLs: Maximum Likelihood
        • L1: error metric = L1 (왜 L2 안쓰는지는 모르겠음)
        • p8: probe modes = 8
        • g64: batch size = 64
        • pc50: probe position correction starts at iteration 50
        • noModel: no initial object guess
        • vp1: variable probe = True
        • Ns21: num slices = 21
        • dz10: slice separation = 10 Angstroms
      • MLs_L1_p8_g32_Ndp256_pc50_noModel_vp1_Ns21_dz10_reg1/
        • Ndp256: oversample 128x128 detector array to 256x256 (artificially “increases” resolution, but with more artefacting)

Troubleshooting

Notes

PtychoShelves

PtychoShelves is a Matlab framework for ptychography - it is a pipeline that allows the use of various reconstruction algorithms.

PtychoShelves uses a modular approach, you can choose any process for file i/o, data preprocessing, reconstruction algorithm, etc. Popular algorithms for ptychography including Maximum Likelihood and Difference Map are already implemented. You can also make your own processes as well.

This pipeline is realized through the p struct, where you can assign each module and their (hyper)parameters for the pipeline. The individual subroutines can be implemented/accessed via their own structs, for example the det struct for detector settings and the eng struct for the reconstruction engine settings.

I’m not familiar with this yet; need to get used to changing p attributes and implementing custom engines.

fold_slice

Chen, Z. et al. (2021) uses a version of fold_slice, a package built on top of PtychoShelves made for multislice ptychography.

The major differences being - Data and reconstruction I/O conventions changed for electron ptychography (original Ptychoshelves is mainly based on X-ray ptychography) - A modified least-squares maximum likelihood multislice reconstruction engine implemented in GPU_MS

A rough structure of the code can be found here, and an explanation of the reconstruction here.

See also

Published papers
Other helpful sources

kiwi wiki

A wiki / archive / library / blog of my interests.
Not technically a wiki, but the name fit well with kiwi.

index homepage github