how to play movie backwards
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I know step function can play movie forward. Does anyone know how to play movie backwards?
0 comentarios
Respuestas (2)
Image Analyst
el 2 de Mzo. de 2015
Use read() and just pass it the frame numbers in reverse order. Then display them with imshow().
0 comentarios
Hayat Ullah Kakakhel
el 24 de Abr. de 2019
v = VideoReader('xylophone.mp4');
nf = floor(v.Duration*v.FrameRate);
for i =nf:-1:1
imshow(read(v, i))
pause(1/v.FrameRate)
end
Plz run this code will help you to play video in reverse direction
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!