marking line point on image and intensity profile

Hi I have an intensity profile, I wish to mark the point on it and translate the mark point to my original image.

2 个评论

You forgot to ask a question.
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 个)

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.

类别

在 帮助中心 和 File Exchange 中查找有关 Lidar Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by