hyperspy._signals.complex_signal module¶
-
class
hyperspy._signals.complex_signal.
ComplexSignal
(*args, **kwargs)¶ Bases:
hyperspy._signals.complex_signal.ComplexSignal_mixin
,hyperspy.signal.BaseSignal
-
angle
(deg=False)¶ Return the angle (also known as phase or argument). If the data is real, the angle is 0 for positive values and for negative values.
- Parameters
deg (bool, optional) – Return angle in degrees if True, radians if False (default).
- Returns
angle – The counterclockwise angle from the positive real axis on the complex plane, with dtype as numpy.float64.
- Return type
HyperSpy signal
-
-
class
hyperspy._signals.complex_signal.
ComplexSignal_mixin
(*args, **kwargs)¶ Bases:
object
BaseSignal subclass for complex data.
-
property
amplitude
¶ Get/set the amplitude of the data. Returns an appropriate HyperSpy signal.
-
angle
(angle, deg=False)¶ Return the angle (also known as phase or argument). If the data is real, the angle is 0 for positive values and for negative values.
- Parameters
deg (bool, optional) – Return angle in degrees if True, radians if False (default).
- Returns
angle – The counterclockwise angle from the positive real axis on the complex plane, with dtype as numpy.float64.
- Return type
HyperSpy signal
-
change_dtype
(dtype)¶ Change the data type.
- Parameters
dtype (str or dtype) – Typecode or data-type to which the array is cast. For complex signals only other complex dtypes are allowed. If real valued properties are required use real, imag, amplitude and phase instead.
-
property
imag
¶ Get/set imaginary part of the data. Returns an appropriate HyperSpy signal.
-
property
phase
¶ Get/set the phase of the data. Returns an appropriate HyperSpy signal.
-
plot
(power_spectrum=False, navigator='auto', axes_manager=None, representation='cartesian', norm='auto', fft_shift=False, same_axes=True, **kwargs)¶ Plot the signal at the current coordinates.
For multidimensional datasets an optional figure, the “navigator”, with a cursor to navigate that data is raised. In any case it is possible to navigate the data using the sliders. Currently only signals with signal_dimension equal to 0, 1 and 2 can be plotted.
- Parameters
navigator (str, None, or
BaseSignal
(or subclass)) –Allowed string values are
'auto'
,'slider'
, and'spectrum'
.If
'auto'
:If navigation_dimension > 0, a navigator is provided to explore the data.
If navigation_dimension is 1 and the signal is an image the navigator is a sum spectrum obtained by integrating over the signal axes (the image).
If navigation_dimension is 1 and the signal is a spectrum the navigator is an image obtained by stacking all the spectra in the dataset horizontally.
If navigation_dimension is > 1, the navigator is a sum image obtained by integrating the data over the signal axes.
Additionally, if navigation_dimension > 2, a window with one slider per axis is raised to navigate the data.
For example, if the dataset consists of 3 navigation axes X, Y, Z and one signal axis, E, the default navigator will be an image obtained by integrating the data over E at the current Z index and a window with sliders for the X, Y, and Z axes will be raised. Notice that changing the Z-axis index changes the navigator in this case.
If
'slider'
:If navigation dimension > 0 a window with one slider per axis is raised to navigate the data.
If
'spectrum'
:If navigation_dimension > 0 the navigator is always a spectrum obtained by integrating the data over all other axes.
If
None
, no navigator will be provided.Alternatively a
BaseSignal
(or subclass) instance can be provided. The signal_dimension must be 1 (for a spectrum navigator) or 2 (for a image navigator) and navigation_shape must be 0 (for a static navigator) or navigation_shape + signal_shape must be equal to the navigator_shape of the current object (for a dynamic navigator). If the signal dtype is RGB or RGBA this parameter has no effect and the value is always set to'slider'
.- axes_managerNone or
AxesManager
If None, the signal’s axes_manager attribute is used.
- plot_markersbool, default True
Plot markers added using s.add_marker(marker, permanent=True). Note, a large number of markers might lead to very slow plotting.
- normstr, optional
The function used to normalize the data prior to plotting. Allowable strings are:
'auto'
,'linear'
,'log'
. (default value is'auto'
). If'auto'
, intensity is plotted on a linear scale except whenpower_spectrum=True
(only for complex signals).- power_spectrumbool, default is False.
If True, plot the power spectrum instead of the actual signal, if False, plot the real and imaginary parts of the complex signal.
- representation{‘cartesian’ or ‘polar’}
Determines if the real and imaginary part of the complex data is plotted (‘cartesian’, default), or if the amplitude and phase should be used (‘polar’).
- same_axesbool, default True
If True (default) plot the real and imaginary parts (or amplitude and phase) in the same figure if the signal is one-dimensional.
- fft_shiftbool, default False
If True, shift the zero-frequency component. See numpy.fft.fftshift for more details.
- **kwargs
Only for
Signal2D
: additional (optional) keyword arguments formatplotlib.pyplot.imshow()
.
-
property
real
¶ Get/set the real part of the data. Returns an appropriate HyperSpy signal.
-
unwrapped_phase
(wrap_around=False, seed=None, show_progressbar=None, parallel=None)¶ Return the unwrapped phase as an appropriate HyperSpy signal.
- Parameters
wrap_around (bool or sequence of bool, optional) – When an element of the sequence is True, the unwrapping process will regard the edges along the corresponding axis of the image to be connected and use this connectivity to guide the phase unwrapping process. If only a single boolean is given, it will apply to all axes. Wrap around is not supported for 1D arrays.
seed (int, optional) – Unwrapping 2D or 3D images uses random initialization. This sets the seed of the PRNG to achieve deterministic behavior.
show_progressbar (None or bool) – If
True
, display a progress bar. IfNone
, the default from the preferences settings is used.parallel (None or bool) – If
True
, perform computation in parallel using multiple cores. IfNone
, the default from the preferences settings is used.
- Returns
phase_image – Unwrapped phase.
- Return type
BaseSignal
subclass
Notes
Uses the
unwrap_phase()
function from skimage. The algorithm is based on Miguel Arevallilo Herraez, David R. Burton, Michael J. Lalor, and Munther A. Gdeisat, “Fast two-dimensional phase-unwrapping algorithm based on sorting by reliability following a noncontinuous path”, Journal Applied Optics, Vol. 41, No. 35, pp. 7437, 2002
-
property
-
class
hyperspy._signals.complex_signal.
LazyComplexSignal
(*args, **kwargs)¶ Bases:
hyperspy._signals.complex_signal.ComplexSignal
,hyperspy._signals.lazy.LazySignal
-
angle
(deg=False)¶ Return the angle (also known as phase or argument). If the data is real, the angle is 0 for positive values and for negative values.
- Parameters
deg (bool, optional) – Return angle in degrees if True, radians if False (default).
- Returns
angle – The counterclockwise angle from the positive real axis on the complex plane, with dtype as numpy.float64.
- Return type
HyperSpy signal
-
-
hyperspy._signals.complex_signal.
format_title
(thing)¶