how to find centre of mass in each grid
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
help me to find centre of mass in each grid in a image
0 commentaires
Réponses (1)
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
Voir également
Catégories
En savoir plus sur Image Preview and Device Configuration dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!