Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Scale an image to the axes edges regardless of whether it is being plotted with a nonaffine transform or an affine transform#30175

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

Draft
ayshih wants to merge2 commits intomatplotlib:main
base:main
Choose a base branch
Loading
fromayshih:nonaffine_scaling

Conversation

ayshih
Copy link
Contributor

@ayshihayshih commentedJun 14, 2025
edited
Loading

PR summary

This PR fixes a difference between plotting an image with a nonaffine transform versus with an affine transform. When plotting with an affine transform, the transform for rendering gets an additional transform step to scale the image to the axes edges in the situation where the axes bbox is not a whole number of pixels. However, when plotting with a nonaffine transform, this additional scaling step is skipped, and instead the fractional pixel at the end is clipped off. I can't think of any reason why this difference is desirable, so this PR removes the different handling of a nonaffine transform versus an affine transform.

Before this PR

Here's an example image before this PR and generating script. Note that the image plotted using the nonaffine transform has a obvious gap to the axis on the right edge due to the fractional pixel. The discrepancy on the top edge is not quite as obvious.
Figure_1

importnumpyasnpimportmatplotlib.pyplotaspltfrommatplotlib.transformsimportTransform# Create a nonaffine identity transformclassNonAffineIdentityTransform(Transform):input_dims=2output_dims=2definverted(self):returnselfnonaffine_transform=NonAffineIdentityTransform()data=np.arange(16).reshape((4,4))%3fig,axs=plt.subplots(2,figsize=(6,3),dpi=100)# Choose axes bboxs with with fractional pixelsaxs[0].set_position([0.1,0.15,200.75/fig.bbox.width,200.75/fig.bbox.height])axs[1].set_position([0.6,0.15,200.75/fig.bbox.width,200.75/fig.bbox.height])im0=axs[0].imshow(data)im1=axs[1].imshow(data,transform=nonaffine_transform+axs[1].transData)axs[0].spines[:].set_ls((0, (5,5)))axs[1].spines[:].set_ls((0, (5,5)))axs[0].set_title("Affine")axs[1].set_title("Nonaffine")plt.show()

After this PR

after

PR checklist

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

1 participant
@ayshih

[8]ページ先頭

©2009-2025 Movatter.jp