plot_virtual_bse_intensity#
- EBSD.plot_virtual_bse_intensity(roi: BaseInteractiveROI, out_signal_axes: Optional[Union[Iterable[int], Iterable[str]]] = None, **kwargs) None[source]#
Plot an interactive virtual backscatter electron (VBSE) image formed from intensities within a specified and adjustable region of interest (ROI) on the detector.
Adapted from
pyxem.signals.common_diffraction.CommonDiffraction.plot_integrated_intensity().- Parameters:
- roi
Any interactive ROI detailed in HyperSpy.
- out_signal_axes
Which navigation axes to use as signal axes in the virtual image. If not given, the first two navigation axes are used.
- **kwargs:
Keyword arguments passed to the
plot()method of the virtual image.
See also
Examples
>>> import hyperspy.api as hs >>> import kikuchipy as kp >>> s = kp.data.nickel_ebsd_small() >>> rect_roi = hs.roi.RectangularROI( ... left=0, right=5, top=0, bottom=5 ... ) >>> s.plot_virtual_bse_intensity(rect_roi)