Note
Go to the end to download the full example code.
Text Markers#
Create a signal
import hyperspy.api as hs
import numpy as np
# Create a Signal2D with 1 navigation dimension
rng = np.random.default_rng(0)
data = np.ones((10, 100, 100))
s = hs.signals.Signal2D(data)
This first example shows how to draw static Text markers
Dynamic Text Markers#
sphinx_gallery_thumbnail_number = 2
Total running time of the script: (0 minutes 1.300 seconds)