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

조회 수: 7 (최근 30일)
Naim
Naim 2017년 7월 12일
댓글: Naim 2017년 7월 12일
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!

채택된 답변

Image Analyst
Image Analyst 2017년 7월 12일
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.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by