How to find x y coordinates of detected blobs

Dear All,
Do you know how to find the center coordinate of a blob. That means after detected blobs i need to assign variables to that blob locations.

 채택된 답변

Image Analyst
Image Analyst 2013년 9월 16일

0 개 추천

You need to ask regionprops for the Centroid or Weighted Centroid. See my Image Segmentation Tutorial for an example: Image Analyst's File Exchange It does exactly that.

추가 답변 (1개)

Nuwan Dassanayake
Nuwan Dassanayake 2013년 9월 16일

0 개 추천

Dear Image Analyst Thank You very much for help!

댓글 수: 5

I need another help! To assign centroid values to two variables! Like this (stats(n).Centroid) is equal to (x,y) i need to assign x and y value seperately
xy = [stats.Centroid];
x = xy(:,1);
y = xy(:,2);
Image analyst, I have tried to do something like this but it is not working! What is wrong with my program?
Thank you very much for your help!
xy = stats(16).Centroid;
x = xy(:,1);
y = xy(:,2);
if(45<xy(:,1)<40) && (50<xy(:,2)<55)
disp(x)
end
I cant get expected value ,it displays values outside the range also!
You can't do things like a<x<b you need to do (a<x) && (x<b) .
Thank You Sir It has worked !

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

카테고리

도움말 센터File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by