how to find centre of mass in each grid
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
help me to find centre of mass in each grid in a image
0 Commenti
Risposte (1)
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
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!