how to prepare a video from a given images
조회 수: 1 (최근 30일)
이전 댓글 표시
I have 6 images.. how to prepare video from it. I tried with im2frame command...but could not able to get it..
댓글 수: 0
채택된 답변
추가 답변 (1개)
Walter Roberson
2013년 12월 21일
Have a look at the examples for VideoWriter()
댓글 수: 3
Image Analyst
2013년 12월 22일
structures is not a command. structure is, but not structures . structure() creates/initializes a structure variable. If you're referring to the structure() function/command, then what do you mean that it is not compatible with many commands? Give an example. It is not used with other commands. It's used by itself to create a variable. Of course you could then use that variable in other functions, but those functions would have to be expecting a structure variable. So basically I have no idea what you're asking.
Walter Roberson
2013년 12월 22일
편집: Walter Roberson
2013년 12월 22일
struct() is the command, not structure()
If you are asking why not many commands accept structures as input, then the logic is that adding structure inputs to most commands would result in notably increased testing costs.
The VideoWriter method writeVideo does accept a structure input: the allowed approach
writeVideo(obj, mov)
takes a movie structure for its second argument.
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!