How to identify the disk edge?

1 visualización (últimos 30 días)
Steven
Steven el 17 de Mzo. de 2014
Editada: Steven el 26 de Abr. de 2016
How can MATLAB determine the radius of the disk? (imagine the center is known)
I know that if the whole circle is visible, I can use imfindcircle or other methods to determine the center and radius, but I wonder whether MATLAB can determine the edge of the radius for such an image?
Thanks
Steven

Respuesta aceptada

Image Analyst
Image Analyst el 17 de Mzo. de 2014
Try it and see. Otherwise, just segment it and get the edge coordinates with bwboundaries() and use the FAQ to fit them to a circle or ellipse.
  2 comentarios
Steven
Steven el 17 de Mzo. de 2014
Editada: Steven el 17 de Mzo. de 2014
Thanks.
How to get the edge using bwboundaries?
Thanks
Steven
Image Analyst
Image Analyst el 17 de Mzo. de 2014
First segment based on threshold
binaryImage = grayImage < 128; % or whatever value works.
Then get rid of small noise particles
binaryImage = bwareaopen(binaryImage, 10000);
Then call bwboundaries
boundaries = bwboundaries(binaryimage);
Then do the fit as per the FAQ.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Call Python from MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by