How can I simplify the polygon?

2 次查看(过去 30 天)
Tony Carl
Tony Carl 2018-4-27
编辑: Tony Carl 2018-4-27
The polygon above is got after I shrank a rectangle. However, The meaningless branches are not desired. How can I remove them and split it into polygons that are independent to each other?
  2 个评论
Tony Carl
Tony Carl 2018-4-27
编辑:Tony Carl 2018-4-27
For illustration, the data of the polygon and an example figure is shown below, plotted by code:
plot(data(:,1),data(:,2),'bo-');
Tony Carl
Tony Carl 2018-4-27
编辑:Tony Carl 2018-4-27
The data pack of the polygon.

请先登录,再进行评论。

回答(1 个)

Ahmet Cecen
Ahmet Cecen 2018-4-27
Well purely speculating, assuming you have a binary image with those lines:
FilledPolygons = imfill(PolygonImage,'holes');
OnlyPolygonsFilled = FilledPolygons - PolygonImage;
OnlyPolygonEdges = edge(OnlyPolygonsFilled);
  3 个评论
Ahmet Cecen
Ahmet Cecen 2018-4-27
You will need to clarify a bit more. Maybe show your actual data etc.
Tony Carl
Tony Carl 2018-4-27
An example figure and its relevant data are appended below the question.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Elementary Polygons 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by