常见医学图像处理算法

1,binary dilation,用来去除一些灰度值小的噪声。在具体应用中如何选取核需要尝试
scipy 中有现成的包可以调用 链接

2,Otsu’s method,用来对图像进行二值化,可以用来区分前景和背景。利用opencv 代码如下:

cv2.threshold(gray_image, 0, 255, cv2.THRESH_OTSU)

3,flood fill algorithm:文档,l实例程序

猜你喜欢

转载自blog.csdn.net/baidu_33939056/article/details/79154373