HEY i DID IT USING
M = mmreader('cell.avi');
N = M.NumberOfFrames;
for ii = 1:N
A=imsubtract(M.read(1),M.read(ii));
imshow(A);
pause(0.1);
end
.....IS THERE ANY WAY I CAN SHOW THE COORDINATE AXIS SO THAT I CAN MEASURE HOW MUCH IT HAS MOVED?
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!