Borrar filtros
Borrar filtros

how can i get the pixel color from a plot

6 visualizaciones (últimos 30 días)
Benutzer Name
Benutzer Name el 5 de Sept. de 2018
Respondida: Walter Roberson el 5 de Sept. de 2018
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)

Respuesta aceptada

Walter Roberson
Walter Roberson el 5 de Sept. de 2018
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.

Más respuestas (0)

Categorías

Más información sobre Printing and Saving en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by