How to calculate the center of white part?

2 views (last 30 days)
How can I find the center of white part in the image?e Any help is much appreciated!!

Accepted Answer

Rik
Rik on 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);
  1 Comment
kanika bhalla
kanika bhalla on 21 Apr 2021
Thank you very much for your great answer to my question. It successfully solved my problem. I had spent so much time on this problem but unable to solve it. But your answer really helped me. I am really grateful to you for your help!!

Sign in to comment.

More Answers (1)

Stephan
Stephan on 21 Apr 2021
Look at the regionprops examples.
  1 Comment
kanika bhalla
kanika bhalla on 21 Apr 2021
Thank you for your response and help!!
But solution provided by @Rik has successfully solved my problem.

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!