Gaussian fitting for grazing incidence diffraction data
Project description
pygidFIT: Gaussian fitting for grazing incidence diffraction (GID) data
A Python package for fitting Gaussian functions to GID (Grazing-Incidence Wide-Angle X-ray and Neutron Scattering) data. pygidFIT is part of the comprehensive machine learning pipeline for automated analysis of GID data. The focus is on multiparallel execution for real-time sequential processing at the synchrotron and neutron facilities.
Installation
Install using pip
pip install pygidfit
Install from source
First, clone the repository:
git clone git@github.com:mlgid-project/pygidFIT.git
Then, to install all required modules, navigate to the cloned directory and execute:
git clone git@github.com:mlgid-project/pygidFIT.git
cd pygidFIT
pip install -e .
Usage
Images from pygid NeXus file
from pygidfit import ProcessDataFromFile
filename = './example/BA2PbI4.h5'
analysis = ProcessDataFromFile(
filename, # NeXus file with converted images and detected boxes (after pygid and mlgidDETECT)
entry='entry_0000', # Entry to process (if None, processes all entries)
frame_num=0, # Image frame to process (if None, processes all frames)
crit_angle=2, # Critical angle to shift the sample horizon (in degrees)
clustering_distance_rings=10, # Distance for ring clustering (in pixels)
clustering_distance_peaks=10, # Distance for segments clustering (in pixels)
clustering_extend=2, # Number of pixels to extend the cluster size
use_pool=False, # Whether to use peak pool from the previous image
debug=False, # Whether to plot fitting result and parameters)
theta_fixed=True, # Whether to fix Gaussian tilt angle to 0° (azimuthal direction) during fitting. Default is True
)
Fit single image
from pygidfit import fit_data
img_container_fit = fit_data(
polar_img=polar_img, # 2D polar-transformed scattering image. Axis 0: polar angle (0–90°). Axis 1: radial coordinate |q| (Å⁻¹)
radius=radius, # 1D array of radial centers of peak boxes (Å⁻¹)
radius_width=radius_width, # 1D array of radial widths of peak boxes (Å⁻¹)
angle=angle, # 1D array of angular centers of peak boxes (degrees)
angle_width=angle_width, # 1D array of angular widths of peak boxes (degrees)
wavelength=1e-10, # X-ray wavelength in meters. Used for missing-wedge calculation
q_xy_max=3.5, # Upper cutoff for q_xy (Å⁻¹) used in peak classification
q_z_max=3.5, # Upper cutoff for q_z (Å⁻¹) used in peak classification
clustering_distance_peaks=10, # Distance for ring clustering (in pixels)
clustering_distance_rings=10, # Distance for segments clustering (in pixels)
clustering_extend=2, # Number of pixels to extend the cluster size
debug=False, # Whether to plot fitting result and parameters)
peaks_pool=None, # List of pygidfit.Boxes or None (if don't use pool)
theta_fixed=True, # Whether to fix Gaussian tilt angle to 0° (azimuthal direction) during fitting. Default is True
)
This package is included in the mlgidBASE package and can be used as part of the mlgid pipeline.
Overview
pygidFIT is part of the machine learning pipeline for automated analysis of GID data. It is designed to analyze scattering data by fitting Gaussian profiles to peaks in both 1D and 2D data. It refines the peak positions revealed by the deep learning-based peak detection by automated conventional fitting during the postprocessing stage.
Key Features
-
Peak clustering: Groups spatially close peaks to improve fitting stability
-
Parameter reuse: Caches fit parameters from previous frames to accelerate time-series analysis
-
Parallel execution: Supports multiprocessing for efficient processing of large datasets
-
HDF5 compatibility: Operates directly on HDF5 files generated by pygid.DataSaver
Authors
- Developed by Ekaterina Kneschaurek (Schreiber Lab)
- Contributions by Vladimir Starostin (mlcolab) and Constantin Völter (cvoelt)
- Maintained by Ainur Abukaev (ainurabukaev99)
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pygidfit-0.1.3.tar.gz.
File metadata
- Download URL: pygidfit-0.1.3.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
128b537f3cd0743112d067b36a05475094e2e741655972be29fbb5f62c069f92
|
|
| MD5 |
6fae42f457a6848d9056e83c92c4e038
|
|
| BLAKE2b-256 |
4c706f7995fdf221747a84ab773934d44d31332cec970fe4b6fde1ab6841ba59
|
File details
Details for the file pygidfit-0.1.3-py3-none-any.whl.
File metadata
- Download URL: pygidfit-0.1.3-py3-none-any.whl
- Upload date:
- Size: 28.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6381e2efdd4adb98dbdb8f63fa09c2bda9ae14d72e13c2c6495da583875901b
|
|
| MD5 |
5d16e89771a31907e0aa5a59d797ac88
|
|
| BLAKE2b-256 |
48c61e27d35a11d614efef2ef223f863facbfde2fbca77d4784e12f89c7526da
|