How to calculate the center of white part?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
kanika bhalla
el 21 de Abr. de 2021
Comentada: kanika bhalla
el 21 de Abr. de 2021
How can I find the center of white part in the image?e Any help is much appreciated!!
0 comentarios
Respuesta aceptada
Rik
el 21 de Abr. de 2021
The best way is to use something like regionprops, but since you only have a single patch, you can use find to get a list of coordinates and calculate the mean.
[c,r]=find(IM);
c=mean(c);
r=mean(r);
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!