How to append the frames into a object that contains video?
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
Answers (0)
Categories
Find more on vSLAM in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!