Effacer les filtres
Effacer les filtres

Find centroid of binary image

65 vues (au cours des 30 derniers jours)
Adisorn Phanukthong
Adisorn Phanukthong le 29 Jan 2017
Commenté : DGM le 20 Mai 2024
I want to know find centroid area in picture output show X,Y axis
Sample
centroid x 60 centroid y 40

Réponses (2)

Guillaume
Guillaume le 29 Jan 2017
Either use regionprops:
stats = regionprops(yourimage);
centroid = stats.centroid;
Or calculate it yourself according to its definition, the mean of the pixel coordinates:
[y, x] = ndgrid(1:size(yourimage, 1), 1:size(yourimage, 2));
centroid = mean([x(logical(yourimage)), y(logical(yourimage))]);
  12 commentaires
Bradley Rogers
Bradley Rogers le 19 Mai 2024
Got codegeneration and tried to make a C++ file, Centroid cant be converted over?
DGM
DGM le 20 Mai 2024
I'm going to have to tap out once it comes to code generation stuff. I'm not familiar with what will build. I haven't really touched it, and I'm running old enough stuff that it would be moot even if I had.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 29 Jan 2017
regionprops() and ask for Centroid

Community Treasure Hunt

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

Start Hunting!

Translated by