centroid of an image
125 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nagarajan sivathanu
am 14 Feb. 2012
Kommentiert: Dipti S
am 1 Mär. 2019
I want to find the centroid of an image.How to proceed?
1 Kommentar
Dipti S
am 1 Mär. 2019
Something like
stats1=regionprops(BW,'MajorAxisLength','MinorAxisLength','Centroid','Orientation','Area','EquivDiameter')
centers = stats1.Centroid;
Akzeptierte Antwort
Chandra Kurniawan
am 14 Feb. 2012
Hi,
did you mean 'find centroid of objects in an image'??
use regionprops with property : centroid
Eg : stat = regionprops(Ilabel,'centroid');
I = imread('coins.png');
Ibw = im2bw(I);
Ibw = imfill(Ibw,'holes');
Ilabel = bwlabel(Ibw);
stat = regionprops(Ilabel,'centroid');
imshow(I); hold on;
for x = 1: numel(stat)
plot(stat(x).Centroid(1),stat(x).Centroid(2),'ro');
end
1 Kommentar
J Shaw
am 20 Feb. 2018
Hi,
If I use this code, I get a centroid array that has 255 elements. What is the meaning for each element? Thanks!
Weitere Antworten (1)
Sean Lawson
am 14 Feb. 2012
Broad question, if the image is your input, simply find the center of the image. But I assume you are asking a more complicated question: like find the centroid of a specific object in an image? if so, need to segment the object out of the image, then find the center point.
4 Kommentare
Dhrubajyoti Das
am 28 Okt. 2013
http://www.mathworks.com/matlabcentral/answers/104175-find-centroid-of-an-image this is the link. can you please help
Biswas Lohani V K
am 25 Jan. 2016
HEllo everyone, What is the syntax for this bb = stats(object).BoundingBox; bc = stats(object).Centroid;
could you please define how this code works
Thank you
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!