how to find centre of mass in each grid

1 vue (au cours des 30 derniers jours)
Raghu Rao
Raghu Rao le 11 Mar 2017
Modifié(e) : Raghu Rao le 12 Mar 2017
help me to find centre of mass in each grid in a image

Réponses (1)

Image Analyst
Image Analyst le 11 Mar 2017
Extract each grid into a small subimage, then sum up the x and y
[rows, columns] = find(~subImage);
meanRow = mean(rows);
meanColumn = mean(columns);
  4 commentaires
Raghu Rao
Raghu Rao le 12 Mar 2017
thank you image Analyst,
Raghu Rao
Raghu Rao le 12 Mar 2017
Modifié(e) : Raghu Rao le 12 Mar 2017
  • after editing my code am not getting proper results i want to point center of mass in each grid on image.but am not getting the results. please help me.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by