-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Add webp decoder #8527
Add webp decoder #8527
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/vision/8527
Note: Links to docs will display an error until the docs builds have been completed. ❌ 10 New Failures, 13 Pending, 14 Unrelated FailuresAs of commit b7bf5a7 with merge base edb1c33 (): NEW FAILURES - The following jobs have failed:
FLAKY - The following jobs failed but were likely due to flakiness present on trunk:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
OK, M1 jobs seem to all be passing now. |
All Windows tests, wheels and conda builds passing |
Hey @NicolasHug! You merged this PR, but no labels were added. |
Reviewed By: ahmadsharif1 Differential Revision: D61331604 fbshipit-source-id: 23956b0c1cbb0c5274db145612e1e78642853cc5
This PR adds the
decode_webp()
function. We dynamically link against libwebp which is BSD3. We only support RGB images. RGBA webp images can be decoded, the transparency channel is ignored.