Frame of Animated Gif
Mostrar comentarios más antiguos
Hi, all. I want to make a steganography program using LSB in matlab. I use animated GIF for the cover object. As we know that Animated GIF is a file that consists of many images. So, can anyone tell me: How to get the frame number of this file in matlab? Thanks before.
Respuesta aceptada
Más respuestas (1)
Ju
el 23 de En. de 2012
0 votos
2 comentarios
Walter Roberson
el 23 de En. de 2012
allframedata = imread('YourFile.GIF', 'frames', 'all');
alldimensions = size(allframedata);
number_of_frames = alldimensions(end);
Ju
el 23 de En. de 2012
Categorías
Más información sobre Animation en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!