imread not working for gif problem

3 visualizzazioni (ultimi 30 giorni)
Yu Li
Yu Li il 15 Set 2019
Commentato: Yu Li il 16 Set 2019
Hi:
I have a gif and I want to read into Matlab, but it does not work, is there any mistake with my operation?
the code is:
imread('giphy.gif', 'frames',100);
imread('giphy.gif', 'frames','all')
the reported error is: Unable to perform assignment because the left and right sides have a different number of elements.
Thanks!
Yu

Risposta accettata

Rik
Rik il 15 Set 2019
It took some digging with the debugger, but with enough breakpoints I was able to track down the cause. Your calls are failing because the imgifinfo function fails (it is called by readgif>read_multiframe_gif which is called by imread>call_format_specific_reader). It doesn't return an error, but it doesn't determine a backgroundcolor for the image.
The image has transparent pixels and no background. This is normally not an issue, but the disposalMethod is set to RestoreBG. This is the root cause of your issue. A less strict reader might inject a default background (MSpaint picks black), but the reading function in Matlab doesn't test for this case. I don't know enough of the format specification to know if Matlab is too strict, or that your gif file is simply incorrect.
%these lines fail
%transparent_pixels=background pixels surrounding the arrow
%background_color=[];
%current_frame=the image with the transparent pixels set to 0
% Replace the transparent pixels with the background color
if ~isempty(transparent_pixels)
current_frame(transparent_pixels) = background_color;
end
  1 Commento
Yu Li
Yu Li il 16 Set 2019
Hi:
thanks for your effort. I have contacted Mathworks support to take a deep look.
thank you very much again!
Bests,
Yu

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by