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 Kommentare

You forgot to ask a question.
Josh
Josh am 28 Jun. 2013
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.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Nitin
Nitin am 24 Jun. 2013
Bearbeitet: Nitin am 24 Jun. 2013

0 Stimmen

Assuming you are looking for pixels with intensity, 128;
I = imread(img);
ind = find(I==128);
I(ind)=255;

Weitere Antworten (1)

Josh
Josh am 28 Jun. 2013

0 Stimmen

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.

Kategorien

Mehr zu Modify Image Colors finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 23 Jun. 2013

Community Treasure Hunt

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

Start Hunting!

Translated by