Creating movies from surface maps
이전 댓글 표시
How can I create movies from figures produced with "surfacem" of the Maping Toolbox?
Thank you.
답변 (2개)
Image Analyst
2011년 12월 13일
0 개 추천
댓글 수: 6
Jorge Ramirez
2011년 12월 13일
Oliver Woodford
2011년 12월 13일
Since the suggested approaches both save the figure as an image at each frame, the problem must therefore be that your figure to image conversion is introducing the errors you describe. Perhaps you can improve your question to be more specific about this.
Jorge Ramirez
2011년 12월 13일
Sean de Wolski
2011년 12월 13일
Have you tried using frame2im?
Sean de Wolski
2011년 12월 13일
What are sample lat/lon/Vul_P values we could use to replicate what you have?
Jorge Ramirez
2011년 12월 13일
Sean de Wolski
2011년 12월 13일
- Force the figure to be a certain size with units pixels, put a set of axes onto it in a certain position. Then use the rectangle second input to getframe to extract just the part you want. (You could also just guess and check a few times to figure out the part you want.
- To play the movie, set the various axes ticks to off so they don't show up, i.e:
figure;
axes;
set(gca,'xtick',[]);
set(gca,'ytick',[]);
movie(Md,5);
카테고리
도움말 센터 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!