How to calculate the center of white part?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How can I find the center of white part in the image?
e Any help is much appreciated!!
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/591330/image.jpeg)
0 Commenti
Risposta accettata
Rik
il 21 Apr 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);
Più risposte (1)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!