我想填补这个图像中的中心地点,所以在那个是白色的,其余的是黑色的结束。 我想用它做ndimage.binary_fill_holes
(下面的代码)。 当我运行我的脚本,我得到的错误'NoneType' object has no attribute 'astype'
。 我应该怎么做才能解决这个问题?
mask_filled = np.array(mask,numpy.uint16)
ndimage.binary_fill_holes(mask_2, structure=np.ones((dim_x,dim_y)), origin=(75,75), output=mask_2_filled).astype(int)
np.savetxt(filename_filled, mask_filled, fmt='%i')