hyperspy.misc.holography.reconstruct module
- hyperspy.misc.holography.reconstruct.aperture_function(r, apradius, rsmooth)
A smooth aperture function that decays from apradius-rsmooth to apradius+rsmooth.
- hyperspy.misc.holography.reconstruct.estimate_sideband_position(holo_data, holo_sampling, central_band_mask_radius=None, sb='lower', high_cf=True)
Finds the position of the sideband and returns its position.
- Parameters
holo_data (ndarray) – The data of the hologram.
holo_sampling (tuple) – The sampling rate in both image directions.
central_band_mask_radius (float, optional) – The aperture radius used to mask out the centerband.
sb (str, optional) – Chooses which sideband is taken. ‘lower’, ‘upper’, ‘left’, or ‘right’.
high_cf (bool, optional) – If False, the highest carrier frequency allowed for the sideband location is equal to half of the Nyquist frequency (Default: True).
- Returns
- Return type
Tuple of the sideband position (y, x), referred to the unshifted FFT.
- hyperspy.misc.holography.reconstruct.estimate_sideband_size(sb_position, holo_shape, sb_size_ratio=0.5)
Estimates the size of sideband filter
- Parameters
- Returns
sb_size – Size of sideband filter
- Return type
- hyperspy.misc.holography.reconstruct.freq_array(shape, sampling)
Makes up a frequency array.
- hyperspy.misc.holography.reconstruct.reconstruct(holo_data, holo_sampling, sb_size, sb_position, sb_smoothness, output_shape=None, plotting=False)
Core function for holographic reconstruction.
- Parameters
holo_data (array_like) – Holographic data array
holo_sampling (tuple) – Sampling rate of the hologram in y and x direction.
sb_size (float) – Size of the sideband filter in pixel.
sb_position (tuple) – Sideband position in pixel.
sb_smoothness (float) – Smoothness of the aperture in pixel.
output_shape (tuple, optional) – New output shape.
plotting (bool) – Plots the masked sideband used for reconstruction.
- Returns
wav – Reconstructed electron wave
- Return type
nparray