How to smooth edges of polygons?
7 views (last 30 days)
Show older comments
I created a image (uint8) with multiple filled polygons. First, I used the vision.ShapeInserter with 'Antialiasing' but this was not enough. Also insertShape + 'SmoothEdges' produced insufficient smooth edges. Are there any other ways how I can fix that?
Looking forward to your suggestions. Thanks!
0 Comments
Answers (2)
Andrew Chen
on 12 Oct 2017
Ex:
se = strel('disk',5);
new_img = imopen(original_image,se);
Hope this helps!
3 Comments
Andrew Chen
on 13 Oct 2017
Did Image Analyst's answer get you what you wanted? Otherwise, maybe you could clarify what you mean by "smooth edges". What in your mind constitutes a sufficiently smooth edge?
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!