필터 지우기
필터 지우기

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