フィルターのクリア

How to calculate height from a Matlab pcolor plot?

3 ビュー (過去 30 日間)
Sachin Nag
Sachin Nag 2017 年 5 月 1 日
コメント済み: Image Analyst 2017 年 5 月 2 日
I have a pcolor plot in Matlab in which two objects are present. I need to calculate height (basically the distance) between these two objects. (Between the yellow line and the top) I extracted the data from the pcolor plot into a matrix and summed up the values to form one single column. How can I determine the height using this column? Thanks for any pointers or hints.

採用された回答

Image Analyst
Image Analyst 2017 年 5 月 1 日
Look for the highest peak.
% Get average vertical profile.
verticalProfile = mean(theImage, 2);
% Find highest value and it's row number:
[meanValue, row] = max(verticalProfile);
If that doesn't work then attach your original data (not a screenshot) as a PNG file.
  5 件のコメント
Sachin Nag
Sachin Nag 2017 年 5 月 2 日
I still have a doubt. How does one obtain height from this? It was a bit unclear to me
Image Analyst
Image Analyst 2017 年 5 月 2 日
I'm not sure what colormap you're using but if yellow is the highest value, then row is the row of the bright straight yellow line at 0.5. Using that plus the scale you used to put the axis in pcolor, you can find the height.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by