标签:region http 要求 code 图片 元素 com image rectangle
在图像滤波和形态学运算中,我们用得最多的是圆形结构元素(Circle)或者方形结构元素,例如:
① 圆形结构元素
opening_circle (Region, RegionOpening, 3.5)
erosion_circle (Region, RegionErosion, 3.5)
② 方形结构元素
mean_image (Image, ImageMean, 9, 9)
其实方形结构元素也属于矩形结构元素。但是由于通常圆形结构元素和方形结构元素的处理效果类似,所以我暂时把它们归为同一类。
至于矩形结构元素,我这里特指结构元素的长、宽比较悬殊的。例如:
mean_image (Image, ImageMean, 200, 1)
opening_rectangle1 (Region, RegionOpening, 1, 50)
举个例子说明一下矩形结构元素使用时的妙用。
要求:提取出下图中的黑色横线。
算法如下:
标签:region http 要求 code 图片 元素 com image rectangle
原文地址:https://www.cnblogs.com/xh6300/p/11917295.html