superimpose extremas of region on image

조회 수: 1 (최근 30일)
tala
tala 2017년 4월 28일
편집: Image Analyst 2017년 4월 28일
hello everyone im a beginner in matlab. could anybody help me please: i have found the extremas of a region wich comes frome extrema property of 'regionprops'command. this 'extrema' matrix is a 8-by-2 matrix. now, i want to show this 8 points on my original image. could anybody help me how can i do this?
s=regionprops(im6,'all'); Extremas=cat(1,s.Extrema);

채택된 답변

Image Analyst
Image Analyst 2017년 4월 28일
Why not try plot()?
  댓글 수: 2
tala
tala 2017년 4월 28일
편집: Image Analyst 2017년 4월 28일
thanks for your attention
areas=cat(1,s.Area);
[~,ind]=max(areas);
Extremas=cat(1,s.Extrema);
% figure;imshow(img)
% hold on
% plot(Extremas(ind),Extremas(ind), 'b*')
% hold off
I have written this but it doesn't show anything.
Image Analyst
Image Analyst 2017년 4월 28일
편집: Image Analyst 2017년 4월 28일
Try removing the % at the beginning of the line to uncomment them. And then getting x and y coordinates from s.Extrema.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by