Azzera filtri
Azzera filtri

how to find centre of mass in each grid

1 visualizzazione (ultimi 30 giorni)
Raghu Rao
Raghu Rao il 11 Mar 2017
Modificato: Raghu Rao il 12 Mar 2017
help me to find centre of mass in each grid in a image

Risposte (1)

Image Analyst
Image Analyst il 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 Commenti
Raghu Rao
Raghu Rao il 12 Mar 2017
thank you image Analyst,
Raghu Rao
Raghu Rao il 12 Mar 2017
Modificato: Raghu Rao il 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.

Accedi per commentare.

Categorie

Scopri di più su Modify Image Colors in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by