Measure the lengths of a polygon

13 次查看(过去 30 天)
How to measure the length of the sides in polygon at BW image? Obviously that the polygon is not ideal (it’s a picture) Note that the polygon is filled (background is "0" and polygon and its inside is "1")

采纳的回答

Matt J
Matt J 2013-7-28
You can use bwboundaries() to find the bounary pixels and then maybe this FEX file to fit it to a polygon
I wonder, though, what created the binary image and whether geometric info about the polygon was used for that. If so, it would make sense to use that geometric info instead.
  1 个评论
Image Analyst
Image Analyst 2013-7-30
I didn't try it yet, but from the author's description, it sounds like what's usually called the "restricted convex hull" ( http://www.liacs.nl/~fverbeek/courses/iammv/scil_ref.pdf) or the "concave hull" ( http://ubicomp.algoritmi.uminho.pt/local/concavehull.html). I'm not sure this would answer the original poster's question though. Actually any irregular blob could be considered a polygon, even a circle since it's composed of discrete points, though a lot of them. So one way would be to simply call bwperim() and sum the image.
polygonOutline = bwperim(binaryImage);
polygonLength = sum(int32(polygonOutline(:)));
Of course the usual way is to call regionprops() and ask for the perimeter, or else you could calculate it yourself by walking along the coordinates returned from bwboundaries() summing up all the lengths (1 or sqrt(2)) going from one pixel to the next. (My answer below was assuming you wanted to decompose the blob into a few straight sides, like 4 or 6 sides or whatever.)

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2013-7-28
Use bwboundaries() to get the (x,y) coordinates of the outer perimeter. Then use the FAQ: http://matlab.wikia.com/wiki/FAQ#How_do_I_find_.22kinks.22_in_a_curve.3F, which points to an Answers posting where I gave demo code.

Community Treasure Hunt

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

Start Hunting!

Translated by