centroid of an image

조회 수: 80 (최근 30일)
Nagarajan sivathanu
Nagarajan sivathanu 2012년 2월 14일
댓글: Dipti S 2019년 3월 1일
I want to find the centroid of an image.How to proceed?
  댓글 수: 1
Dipti S
Dipti S 2019년 3월 1일
Something like
stats1=regionprops(BW,'MajorAxisLength','MinorAxisLength','Centroid','Orientation','Area','EquivDiameter')
centers = stats1.Centroid;

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

채택된 답변

Chandra Kurniawan
Chandra Kurniawan 2012년 2월 14일
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
J Shaw
J Shaw 2018년 2월 20일
Hi,
If I use this code, I get a centroid array that has 255 elements. What is the meaning for each element? Thanks!

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

추가 답변 (1개)

Sean Lawson
Sean Lawson 2012년 2월 14일
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
Dhrubajyoti Das
Dhrubajyoti Das 2013년 10월 28일
Biswas Lohani V K
Biswas Lohani V K 2016년 1월 25일
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

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

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by