How do i convert an image plot to a matrix.

42 次查看(过去 30 天)
I was wondering if it was possible to create a matrix out of a figure plot.
I would be grateful for any help. Thanks.

回答(3 个)

Image Analyst
Image Analyst 2014-11-21
You can use export_fig

Leslie Solorzano
Leslie Solorzano 2016-12-16
https://se.mathworks.com/help/matlab/ref/frame2im.html

Ben11
Ben11 2014-11-21
Maybe I misunderstood but you might want to use getframe and get the cdata property:
Example:
x = -10:10;
y = x.^2;
plot(x,y)
Frame = getframe(gcf)
FrameData = Frame.cdata; %// This is a matrix that you can plot/show with imshow.

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by