How can I convert binary frames into movie?
조회 수: 5 (최근 30일)
이전 댓글 표시
How can I convert sequences of binary images into movie.avi?
댓글 수: 0
채택된 답변
Walter Roberson
2015년 5월 25일
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
추가 답변 (1개)
Image Analyst
2015년 5월 25일
I've attached a couple of demos that make movies. Try them out and adapt them to your purposes.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!