Animation of image
31 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
John
el 13 de Jun. de 2011
Comentada: Image Analyst
el 2 de Nov. de 2017
Hello, I need some help. I have a project to create animation of an image mooving by some points of two arrays X and Y. This two arrays define some curve. I can put the background image and another one on top of it. But I can't think of a way to animate it. I tried every think I could think of but nothing is satisfactory ednouth. Can some one help me. If you require some code I could provide you. Thank you in advance!
0 comentarios
Respuesta aceptada
David Young
el 14 de Jun. de 2011
Here's something simple that works - though it's not elegant or efficient:
% image data
bigIm = imread('street1.jpg');
smallysize = 50;
smallxsize = 70;
smallIm = bigIm(188:188+smallysize-1, 177:177+smallxsize-1, :);
% trajectory data
trajy = 400:-5:100;
trajx = trajy;
% animated display
for step = 1:length(trajx)
displayIm = bigIm;
displayIm(trajy(step):trajy(step)+smallysize-1, ...
trajx(step):trajx(step)+smallxsize-1, :) = smallIm;
imshow(displayIm);
pause(0.2);
end
2 comentarios
subjoy sahu
el 2 de Nov. de 2017
How to save this file. I am trying but it came as a figure..plzz help
Image Analyst
el 2 de Nov. de 2017
Call getimage() to extract the image out of the axes on the figure.
Más respuestas (3)
Image Analyst
el 13 de Jun. de 2011
This FAQ entry may be useful for you: http://matlab.wikia.com/wiki/FAQ#How_can_I_create_a_movie_from_my_MATLAB_figures.3F
0 comentarios
Ver también
Categorías
Más información sobre Animation en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!