[学习笔记]形态学图像处理-膨胀与腐蚀
摘要:
膨胀是在二值图像中“加长“或”变粗“的操作。A = imread('Fig0907(a)(text_gaps_1_and_2_pixels).tif');B = [1 1 1;1 1 1;1 1 1];imshow(A)A2 = imdilate(A, B);figureimshow(A2);处理前的图像:膨胀后二值化图片:strel函数用于构造各种结构元素:se = strel(shape, parameters)例如:SE = strel('ball', R, H, N)SE = strel('diamond', R)SE = strel(& 阅读全文
posted @ 2013-09-16 22:25 寻梅踏雪 阅读(1093) 评论(0) 推荐(0) 编辑