Ask Your Question

Shravya's profile - activity

2013-07-08 02:09:34 -0600 answered a question Source code to Closing Holes Leaf Image

there's a really simple way to do this. as long as the back ground is always white, u can do this, u don't even need to use morphology for this

take a point near the edge of the image, a white pixel

do a floodfill giving new color with new color as black and low and high thresholds as cvScalarAll(0) in case, u can do it on all possible corners if u think the leaf might be till the edge

so now u are left with only the leaf with white holes still present now, use threshold with a very low threshold, say, low threshold=1 and high threshold=255 and set mode as binary making all non zero points white so u'll get ur required image

2013-07-08 01:57:35 -0600 answered a question Fill holes of a binary image

use cvSegmentFGMask should help you