How can I convert binary frames into movie?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ali Noori
il 25 Mag 2015
Risposto: Image Analyst
il 25 Mag 2015
How can I convert sequences of binary images into movie.avi?
0 Commenti
Risposta accettata
Walter Roberson
il 25 Mag 2015
bw = colormap(gray(2));
Then for each frame
frame = im2frame(uint8(YourBinaryImage), bw);
then use VideoWriter to write the frame; see http://www.mathworks.com/help/matlab/ref/videowriter-class.html
0 Commenti
Più risposte (1)
Image Analyst
il 25 Mag 2015
I've attached a couple of demos that make movies. Try them out and adapt them to your purposes.
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!