How can I fill regions?
1 次查看(过去 30 天)
显示 更早的评论
Hi, I used imfill to fill régions. In some cases imfill fill all the regions as a single region. How can I correct this?
I=imread('image.jpg');
edg = edge(I,'log',0);
I2=imfill(edg,'holes');
thanks
0 个评论
回答(1 个)
Image Analyst
2012-11-3
Your edge filter probably had some kind of edge artifact that made a line all the way around the edge of your image. You have to find out why that is and either prevent it or break that line.
4 个评论
Image Analyst
2012-11-5
It's not clear what a region is, but I can tell that using an edge detector will not get them. You may have to do it manually with imfreehand().
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!