-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GaussianBlur does not work with I;16 #6667
Comments
Just an explanation from the code. Pillow/src/libImaging/Filter.c Lines 326 to 332 in 1f5be89
means that it doesn't support I , I;* , F or BGR;* .
|
PR #7108 has been merged, fixing this for I mode. |
Hi!
still occurred. I found that I mode has been supported for Would mode |
Thanks for your reply. I'm sorry, I misunderstood. I am trying to perform a look-up table (LUT) transform on heif images which are in 10-bit & 3-channel. |
Yes, see #1888
If your goal is to use the final image with Pillow, then yes. |
Oh! Thanks for your suggestion! |
Again, this wouldn't 3D LUT, this will be three 1D LUTs. |
Still does not work on I;16 |
#8438 has been merged to support I;16 modes with |
What did you do?
Attempted to use Image.filter(ImageFilter.BLUR) on an image of mode I or I;16
What did you expect to happen?
Image is blurred
What actually happened?
Code throws ValueError
What are your OS, Python and Pillow versions?
The text was updated successfully, but these errors were encountered: