Unable to save file for Quiver

조회 수: 3 (최근 30일)
SC
SC 2019년 4월 19일
답변: Walter Roberson 2019년 4월 19일
Hi,
I have a quiver but I'm unable to save it by using imwrite? What should I do? (the function imwrite would be more preferable than the other function for saving).
Many thanks!
[x,y] = meshgrid(0:0.2:2,0:0.2:2);
u = cos(x).*y;
v = sin(x).*y;
figure
result=quiver(x,y,u,v);
imwrite(result, 'simpleresult.png');

답변 (1개)

Walter Roberson
Walter Roberson 2019년 4월 19일
You can never imwrite() a graphics object, including not even if it is an image.
Some kinds of graphics objects (such as images) you can pull out matrices of data that you can then (possibly process) and then imwrite(). You could pull out the XData and YData and UData and VData matrices from the quiver object and use tools from the Computer Vision Toolbox to recreate the quiver plot into an array. But that is a bunch of work.
What you probably want to do is use is getframe() the axes, and use frame2im() and then imwrite() the image that results.

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

제품


릴리스

R2016a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by