Restore special casing of grayscale images in PostScript backend.#12871
Closed
anntzer wants to merge 1 commit intomatplotlib:masterfrom
Closed
Restore special casing of grayscale images in PostScript backend.#12871anntzer wants to merge 1 commit intomatplotlib:masterfrom
anntzer wants to merge 1 commit intomatplotlib:masterfrom
Conversation
This divides the filesize by ~3 by not storing three identical channels
(e.g. compare the size of
```
imshow(np.random.rand(255, 255), cmap="gray")
gca().set_axis_off()
savefig("test.ps")
```
before and after the patch).
Member
|
Does this get tested somehow? Otherwise makes sense to me, unless the performance hit is significant, which I doubt as well... |
Member
|
Those factors are luminance conversions. |
Contributor
Author
|
Gah, the obvious tests or fail (visibly); I guess there's something about gamma correction being applied in one case and not the other by the renderer... |
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This divides the filesize by ~3 by not storing three identical channels
(e.g. compare the size of
before and after the patch).
Looks like some kind of similar functionality was present before mpl2.0, though with some weird magic factors (https://github.com/matplotlib/matplotlib/pull/5718/files#diff-b465967f537465fec4960b152fa49cffL415), and I stumbled on some vestigial leftovers of it (https://github.com/matplotlib/matplotlib/pull/5718/files#diff-b465967f537465fec4960b152fa49cffL457 where the "image" command comes from)...
No hard numbers but I don't think the performance cost (on non-grayscale images) really matters as we're going to iterate through the array just after to serialize it anyways.
Probably the same thing can be done for the pdf backend -- see
grayscaleparameter of_writeImg.PR Summary
PR Checklist