フィルターのクリア

Plotting of Graph using the Color Value

1 回表示 (過去 30 日間)
Slarn
Slarn 2013 年 12 月 26 日
回答済み: Image Analyst 2013 年 12 月 26 日
From the MATLab, I'm able to obtained values based on the color field, e.g. red, yellow,green..etc
However, I need to convert the color code value to graph based on the image shown from A to B.
How do I plot the graph based on the color code (delta vs distance from A to B in pixel or mm)?
Thanks a lot!

回答 (1 件)

Image Analyst
Image Analyst 2013 年 12 月 26 日
It's best if you can just export your image not as a pseudocolor image but as the original grayscale image. That should be possible. If it's not, like you lifted this image off the web or somewhere, then you'll need to convert the colorbar into a colormap. You need to get the center column of the colorbar
theColorBar = rgbImage(100:300, 700, :); % Or whatever numbers locate the colorbar.
and for each color, interpolate its gray value, which will be between 0 and 0.4. Then call rgb2ind() to recover the missing grayscale information.

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by