-
Notifications
You must be signed in to change notification settings - Fork 0
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
bugfix/missing-comma-was-creating-a-new-file-format #11
base: main
Are you sure you want to change the base?
Changes from all commits
413b0ee
26dbc98
b7bfecb
15d9930
2dd4029
6331880
0266ca0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,10 @@ | |
@pytest.mark.parametrize( | ||
"filename, set_scene, expected_shape, expected_dims_order", | ||
[ | ||
("example.bmp", "Image:0", (480, 640, 4), "YXS"), | ||
("example.bmp", "Image:0", (480, 640, 3), "YXS"), | ||
("example.png", "Image:0", (800, 537, 4), "YXS"), | ||
("example.jpg", "Image:0", (452, 400, 3), "YXS"), | ||
("example.gif", "Image:0", (72, 268, 268, 4), "TYXS"), | ||
("example.gif", "Image:0", (72, 268, 268, 3), "TYXS"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @evamaxfield @toloudis any thoughts here? np.stack expects same-size arrays, not sure why the first one is missing a dim. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I found this as a result of me upgrading the various base imageio libs. I don't think we changed anything, I think the underlying imageio library changed. I changed the test as a part of just fiddling around with stuff to figure out what was happening. I think we may just want to rollback the imageio upgrade. |
||
( | ||
"example_invalid_frame_count.mp4", | ||
"Image:0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why'd we lose a scene here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
S is not scene, it's "Samples", as in 3 means RGB and 4 means RGBA
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh gotcha my mistake. I think my question persists though. What happened to our 4th sample?