I am using skimage to fill holes a binary input image (left side). This is my code
from skimage import ndimage
img_fill_holes=ndimage.binary_fill_holes(binary).astype(int)
However, the result of the above code cannot completely fill holes to the binary image. It means the output still remains the holes inside the circle. How can I completely fill all holes inside the circle?