how to find indices on a boundary?
이전 댓글 표시
Hi, I have a polygon defined by its vertices in 2D (i.e a nX2 matrix). I have a pixel image of size MxM. i wish to label all the pixels that are on the boundary f the polygon. is there a function that does this? i know inpolygon, but it labels all vertices that are inside the polygon, all i need is the boundary. any thoughts? thanks
답변 (4개)
regionprops might help
doc regionprops
look at the section 'perimeter'
This might help as well
Sean de Wolski
2013년 5월 16일
0 개 추천
You could use poly2mask() to create a mask of your polygon and then use bwboundaries or bwtraceboundaries() to draw the edges.
This will then give you a logical mask of the edges of your polygon. You can use this to do whatever you want to do, e.g. change the color in the original image etc.
댓글 수: 2
Itzik Ben Shabat
2013년 5월 16일
Image Analyst
2013년 5월 16일
Yes, you can create a mask image. See my answer.
Matt Kindig
2013년 5월 16일
0 개 추천
You can use the inpoly() function on the file exchange ( http://www.mathworks.com/matlabcentral/fileexchange/10391-fast-points-in-polygon-test). It can return points on the boundary separately from those inside. It's also a lot faster than the built-in inpolygon().
Image Analyst
2013년 5월 16일
편집: Image Analyst
2013년 5월 16일
0 개 추천
Like Sean said, first use poly2mask() to create a binary image of a solid polygon from your list of perimeter coordinates. This solid polygon can be used as a mask.
Then, from the binary image and want the (x,y) coordinates of all of the pixels in the boundary, use bwboundaries() in the Image Processing Toolbox. See my Image Segmentation Tutorial for an example: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
If you want just the convex hull points (like where the rubber band would contact your object if you wrapped a rubber band around it) use convhull().
If you want an image of the perimeter pixels, use bwperim() in the Image Processing Toolbox. You can use this as a mask also, if you want.
댓글 수: 4
Sean de Wolski
2013년 5월 16일
Ahh, bwperim! Forgot about that gem :)
Itzik Ben Shabat
2013년 5월 17일
Image Analyst
2013년 5월 17일
Where would you like the boundary to be in that case? It can't guess at what it might be outside the image.
Sean de Wolski
2013년 5월 17일
Here's how I would approach this Itzik:
Find the minimum x and y values of your coordinates. Add the absolute values of these points + 1 to your x and y coordinates. Essentially this is shifting your points to be strictly greater than or equal to 1.
Then use poly2mask and IA/my steps from above. Then subtract off the values you added.
카테고리
도움말 센터 및 File Exchange에서 Region and Image Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!