how to find centre of mass in each grid
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuestas (1)
Image Analyst
el 11 de Mzo. de 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 comentarios
Ver también
Categorías
Más información sobre Image Preview and Device Configuration en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!