フィルターのクリア

marking line point on image and intensity profile

1 回表示 (過去 30 日間)
Josh
Josh 2013 年 6 月 23 日
Hi I have an intensity profile, I wish to mark the point on it and translate the mark point to my original image.
  2 件のコメント
Image Analyst
Image Analyst 2013 年 6 月 23 日
You forgot to ask a question.
Josh
Josh 2013 年 6 月 28 日
Hi Ashvin, thanks for your reply. But I am trying to trace the intensity profile of an image to locate the region of my interest(which is the vertebrae). How do I write a function to locate the zero clusters of the profile to mark the point.

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

採用された回答

Nitin
Nitin 2013 年 6 月 24 日
編集済み: Nitin 2013 年 6 月 24 日
Assuming you are looking for pixels with intensity, 128;
I = imread(img);
ind = find(I==128);
I(ind)=255;

その他の回答 (1 件)

Josh
Josh 2013 年 6 月 28 日
Hi Ashvin, thanks for your reply. But I am trying to trace the intensity profile of an image to locate the region of my interest(which is the vertebrae). How do I write a function to locate the zero clusters of the profile to mark the point.

Community Treasure Hunt

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

Start Hunting!

Translated by