imread not working for gif problem

4 visualizaciones (últimos 30 días)
Yu Li
Yu Li el 15 de Sept. de 2019
Comentada: Yu Li el 16 de Sept. de 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

Respuesta aceptada

Rik
Rik el 15 de Sept. de 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 comentario
Yu Li
Yu Li el 16 de Sept. de 2019
Hi:
thanks for your effort. I have contacted Mathworks support to take a deep look.
thank you very much again!
Bests,
Yu

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by