Frame of Animated Gif
Ältere Kommentare anzeigen
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.
Akzeptierte Antwort
Weitere Antworten (1)
Ju
am 23 Jan. 2012
0 Stimmen
2 Kommentare
Walter Roberson
am 23 Jan. 2012
allframedata = imread('YourFile.GIF', 'frames', 'all');
alldimensions = size(allframedata);
number_of_frames = alldimensions(end);
Ju
am 23 Jan. 2012
Kategorien
Mehr zu Animation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!