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 comentarios

Image Analyst
Image Analyst el 23 de Jun. de 2013
You forgot to ask a question.
Josh
Josh el 28 de Jun. de 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.

Iniciar sesión para comentar.

 Respuesta aceptada

Nitin
Nitin el 24 de Jun. de 2013
Editada: Nitin el 24 de Jun. de 2013

0 votos

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

Más respuestas (1)

Josh
Josh el 28 de Jun. de 2013

0 votos

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.

Categorías

Más información sobre Modify Image Colors en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 23 de Jun. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by