Baseline Removal#

This example shows how to remove a baseline from a 1D signal using the pybaselines library.

Create a signal

import hyperspy.api as hs
s = hs.data.two_gaussians()

Remove baseline using remove_baseline():

s2 = s.remove_baseline(method="aspls", lam=1E7, inplace=False)
  0%|          | 0/33 [00:00<?, ?it/s]
  3%|▎         | 1/33 [00:04<02:26,  4.57s/it]
 39%|███▉      | 13/33 [00:08<00:11,  1.67it/s]
 64%|██████▎   | 21/33 [00:09<00:03,  3.05it/s]
100%|██████████| 33/33 [00:09<00:00,  3.56it/s]

Plot the signal and its baseline:

(s + (s-s2) * 1j).plot()
# Choose the second figure as gallery thumbnail:
# sphinx_gallery_thumbnail_number = 2
  • Two Gaussians Navigator
  • Two Gaussians Signal

Total running time of the script: (0 minutes 10.586 seconds)

Gallery generated by Sphinx-Gallery