How to make a round bounday on the object

2 views (last 30 days)
Ghulam
Ghulam on 2 Nov 2019
Answered: darova on 4 Nov 2019
Hi,
Using the example i have successfully drawn the outline on the object.
OUTLINE.png
But it is showing glitches of up and downs on the surface.
I want to get rid of it and make a circular outline around my object.
Cany anyone pls help me in doing it.
Thanks
  2 Comments
Matt J
Matt J on 2 Nov 2019
Edited: Matt J on 2 Nov 2019
What determines the radius and center of the circle?
Ghulam
Ghulam on 4 Nov 2019
Thanks Matt J
There is no exact thing which determines the radius of this circle.

Sign in to comment.

Answers (1)

darova
darova on 4 Nov 2019
  • Use edge to detect edge
  • Use find to get coordinates (rows and columns of edge)
  • Calculate some center (approximately)
  • 123.png
  • Use cart2pol to calculate angle of each pixel
  • sort pixels by angle
  • Calculate new edge with smooth
Or another way:
  • Use edge to detect edge
  • imdilate object
  • Try bwmorph(I,'thin',inf) tu return to original image

Community Treasure Hunt

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

Start Hunting!