Clear Filters
Clear Filters

how to find different features of objects

2 views (last 30 days)
in this binary image there are some objects in x-y coordinate, I want to find the biggest object and its centroid (x,y). how can I do that?

Accepted Answer

Image Analyst
Image Analyst on 14 May 2015
See my Image Segmentation Tutorial: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 It finds the centroids of a bunch of circles.
Then, see my attached demo that will find the largest or smallest N blobs in a binary image.
  2 Comments
Abo
Abo on 14 May 2015
thank you very much for your answer, I've used this method before, for selecting the biggest object but I cannot to find centre of that one. you know the biggest object is ellipse not circle.
Image Analyst
Image Analyst on 14 May 2015
There are several ways. For example, you can first call my function that returns only the largest blob. Then you can call bwlabel() and regionprops().
%----------------------------------------------------------
% Extract the largest area using our custom function ExtractNLargestBlobs().
biggestBlob = ExtractNLargestBlobs(binaryImage, numberToExtract);
%---------------------------------------------------------
labeledImage = bwlabel(biggestBlob);
measurements = regionprops(labeledImage, 'Centroid');
centroid = measurements(1).Centroid;
I think maybe you looked only at the ExtractNLargestBlobs demo and did not look at the demo in my File Exchange - they are different. I attach both here.

Sign in to comment.

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!