-
Notifications
You must be signed in to change notification settings - Fork 494
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 support for Reading GIF files #46
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #46 +/- ##
==========================================
+ Coverage 85.06% 85.18% +0.11%
==========================================
Files 19 19
Lines 991 1026 +35
Branches 5 5
==========================================
+ Hits 843 874 +31
- Misses 148 152 +4
Continue to review full report at Codecov.
|
Hello @seanpquig thank you very much for this contribution, we will be happy to add support for GIFs to Deep Learning Pipelines. I have some design questions about the new schema added for GIF which we should be able to resolve without too much change on your side. To give some context, we are in the process of consolidating different image processing solutions around the image schema described in |
Hey @thunterdb. I tried to take a minimal and flexible approach and have the gif schema be per frame and identical to the image schema with an additional I think combining in a common schema could be great as long as it doesn't sacrifice any information and the ability to access individual frames. Perhaps images could be loosely modeled as special case of a GIF that has a single frame. Your thoughts? |
We have been using this library over at GIPHY and love it. We had to adapt it to work with GIFs, and we thought we'd share some of the changes with the community. It includes:
readGifs
function that reads a directory of GIFs and splits them out into individual frames/images that can be fed intoInceptionV3
and other models.TestReadImages
.gitignore