필터 지우기
필터 지우기

how can i get the pixel color from a plot

조회 수: 6 (최근 30일)
Benutzer Name
Benutzer Name 2018년 9월 5일
답변: Walter Roberson 2018년 9월 5일
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