How to append the frames into a object that contains video?
2 views (last 30 days)
Show older comments
avi=mmreader('r2.avi');
% Display the probability image.
I = rgb2hsv(R);
S = [];
S(:,:,1) = I(:,:,1);
S(:,:,2) = I(:,:,1);
S(:,:,3) = I(:,:,1);
% Extract the hue information
avi = addframe(avi, S);
Im getting error in the last line of my code because of the mmreader function. Kindly solve this error problem for me
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!