Skip to content

Commit

Permalink
select correct sideband
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 31, 2018
1 parent 4b818db commit 970fce9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Binary file modified examples/hyperspy_hologram.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions examples/hyperspy_hologram.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@
urllib.request.urlretrieve(dl_loc + dl_name, dl_name)

ds = qpformat.load_data(dl_name,
# reduces ringing artifacts in the amplitude image
holo_kw={"filter_name": "smooth disk"})

holo_kw={
# reduces ringing artifacts in the amplitude image
"filter_name": "smooth disk",
# select correct sideband
"sideband": -1,
})

# retrieve the qpimage.QPImage instance
qpi = ds.get_qpimage(0)
Expand Down

0 comments on commit 970fce9

Please sign in to comment.