How can I find maxima and minima points of intensity plot of one row of an image?

2 ビュー (過去 30 日間)
Samidha
Samidha 2013 年 12 月 6 日
コメント済み: Samidha 2013 年 12 月 10 日
I want to plot intensity of single row of an MRI image, for that firstly I wrote -
i=dicomread('mri_7.dcm');
imshow(i)
improfile
from this I got intensity plot of any row or column. Now I want to find maximum and minimum values of that plot.So,please help me to get solution of this obstacle.
Thank you

採用された回答

Image Analyst
Image Analyst 2013 年 12 月 6 日
Don't use i (the imaginary variable) as an image name or loop counter.
Try this:
oneRow = grayImage(myRow, :);
% Find the min and max
[minGL, indexOfMin] = min(oneRow)
[maxGL, indexOfMax] = max(oneRow)
See my demo, test.m, attached below in blue, which will generate the following figure.
  2 件のコメント
Samidha
Samidha 2013 年 12 月 8 日
thank you very much for your reply.. I get max nd min value in numerical form, I don't find profile plot which i want. I write- grayImage=dicomread('mri_7.dcm'); oneRow = grayImage(111, :); % Find the min and max [minGL, indexOfMin] = min(oneRow) [maxGL, indexOfMax] = max(oneRow)
minGL =
0
indexOfMin =
1
maxGL =
105
indexOfMax =
97
Samidha
Samidha 2013 年 12 月 10 日
Hey I got output..I am sorry for last last comment. thank you v much

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

その他の回答 (1 件)

sixwwwwww
sixwwwwww 2013 年 12 月 6 日
編集済み: sixwwwwww 2013 年 12 月 6 日
you can use
max(i) % to find maximum value in a row/column vector
and
min(i) % to find minimum value in a row/column vector
sharing image to give specific solution will be further helpful

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by