how can i get the pixel color from a plot

6 次查看(过去 30 天)
Hi,
I plot a few lines in a figure. Now I want to detect the position and color form every pixel in this figure. Is there any chance to get these. I now it works for images with
imread
Is there any function in Matlab to get these information if I have a plot?
(the following picture is just an example)

采纳的回答

Walter Roberson
Walter Roberson 2018-9-5
If what you have is something currently plotted on the screen, then you have a few choices. Probably the most convenient one is to getframe() to record the screen into a buffer and then process the resulting array.
Other possibilities including using saveas() or print() to save the screen to an image file, and then read in the image file and process the resulting array.
Another possibility includes using print() with -dmeta to record to the clipboard as a windows metadata file -- which could potentially be a vector format rather than a raster format. Processing this could potentially be a nuisance though.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Printing and Saving 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by