Filter löschen
Filter löschen

how can I fit basic shapes (circles, squares) into a binary image?

10 Ansichten (letzte 30 Tage)
Naim
Naim am 12 Jul. 2017
Kommentiert: Naim am 12 Jul. 2017
See attached image. I want to fit the largest possible square or circle into the binary image. kind of like convexhull except on the inside. Is there a way to achieve this? thanks for the help!

Akzeptierte Antwort

Image Analyst
Image Analyst am 12 Jul. 2017
Yes. Use bwdist() to get the Euclidean Distance Transform, which is the number of pixels away from the edge. Then take the max of that. That will be the longest stretch you can go from the center of a shape to an edge and will be the distance of a shape from the center to the vertex. So locate the location of the max of the EDT with find(). Then draw a shape with its center at that location, making sure that your vertex touches the edge. Sorry, I don't already have code to do that algorithm.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by