Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
DOC: Clarify/simplify example of multiple images with one colorbar#28546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -1,9 +1,19 @@ | ||||||||
""" | ||||||||
================================= | ||||||||
Multiple images with one colorbar | ||||||||
story645 marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||||||||
================================= | ||||||||
Use a single colorbar for multiple images. | ||||||||
Currently, a colorbar can only be connected to one image. The connection | ||||||||
guarantees that the data coloring is consistent with the colormap scale | ||||||||
(i.e. the color of value *x* in the colormap is used for coloring a data | ||||||||
value *x* in the image). | ||||||||
If we want one colorbar to be representative for multiple images, we have | ||||||||
to explicitly ensure consistent data coloring by using the same data | ||||||||
normalization for all the images. We ensure this by explicitly creating a | ||||||||
``norm`` object that we pass to all the image plotting methods. | ||||||||
""" | ||||||||
importmatplotlib.pyplotasplt | ||||||||
@@ -12,47 +22,53 @@ | ||||||||
frommatplotlibimportcolors | ||||||||
np.random.seed(19680801) | ||||||||
datasets= [ | ||||||||
(i+1)/10*np.random.rand(10,20) | ||||||||
foriinrange(4) | ||||||||
] | ||||||||
fig,axs=plt.subplots(2,2) | ||||||||
fig.suptitle('Multiple images') | ||||||||
# create a single norm to be shared across all images | ||||||||
norm=colors.Normalize(vmin=np.min(datasets),vmax=np.max(datasets)) | ||||||||
images= [] | ||||||||
forax,datainzip(axs.flat,datasets): | ||||||||
images.append(ax.imshow(data,norm=norm)) | ||||||||
fig.colorbar(images[0],ax=axs,orientation='horizontal',fraction=.1) | ||||||||
plt.show() | ||||||||
# %% | ||||||||
# The colors are now kept consistent across all images when changing the | ||||||||
# scaling, e.g. through zooming in the colorbar or via the "edit axis, | ||||||||
# curves and images parameters" GUI of the Qt backend. This is sufficient | ||||||||
# for most practical use cases. | ||||||||
Comment on lines +48 to +49 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Suggested change
Folks will tell us if it's sufficient? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I see this as guidance and affirmation that most users can stop here. They don't have to inverst the following extra effort for cmap handling. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Hmm, maybe "this is" is just ambiguous pronoun reference then. | ||||||||
# | ||||||||
# Advanced: Additionally sync the colormap | ||||||||
# ---------------------------------------- | ||||||||
# | ||||||||
# Sharing a common norm object guarantees synchronized scaling because scale | ||||||||
# changes modify the norm object in-place and thus propagate to all images | ||||||||
# that use this norm. This approach does not help with synchronizing colormaps | ||||||||
# because changing the colormap of an image (e.g. through the "edit axis, | ||||||||
# curves and images parameters" GUI of the Qt backend) results in the image | ||||||||
# referencing the new colormap object. Thus, the other images are not updated. | ||||||||
# | ||||||||
# To update the other images, sync the | ||||||||
# colormaps using the following code:: | ||||||||
# | ||||||||
# def sync_cmaps(changed_image): | ||||||||
# for im in images: | ||||||||
# if changed_image.get_cmap() != im.get_cmap(): | ||||||||
# im.set_cmap(changed_image.get_cmap()) | ||||||||
# | ||||||||
# for im in images: | ||||||||
# im.callbacks.connect('changed', sync_cmaps) | ||||||||
# | ||||||||
# | ||||||||
# .. admonition:: References | ||||||||
# | ||||||||
@@ -63,6 +79,4 @@ def update(changed_image): | ||||||||
# - `matplotlib.figure.Figure.colorbar` / `matplotlib.pyplot.colorbar` | ||||||||
# - `matplotlib.colors.Normalize` | ||||||||
# - `matplotlib.cm.ScalarMappable.set_cmap` | ||||||||
# - `matplotlib.cbook.CallbackRegistry.connect` |