How to find x y coordinates of detected blobs

5 views (last 30 days)
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.

Accepted Answer

Image Analyst
Image Analyst on 16 Sep 2013
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.

More Answers (1)

Nuwan Dassanayake
Nuwan Dassanayake on 16 Sep 2013
Dear Image Analyst Thank You very much for help!
  5 Comments
Image Analyst
Image Analyst on 20 Sep 2013
You can't do things like a<x<b you need to do (a<x) && (x<b) .

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!