I'm trying to figure out how to use cdata under Movie function in MATLAB. Can any expert please give me a short explanation? Thank you!
|
feedback
|
|
As you can find in the MOVIE function documentation, it plays a movie, which is actually an array of frames. Frame in its turn is a single "shot", or still image, represented in MATLAB by a structure with fields cdata (matrix of pixels data) and colormap (if used). You can create a frame from current figure with GETFRAME function: If I would recommend you to play with examples on the MOVIE and GETFRAME help pages to have a better inderstanding. | |||||||||||||
feedback
|