标签: python python-2.7 image-processing scipy highpass-filter
我想在我的图像上使用高通滤镜(参见附录)。高通滤波器应删除图像中线条的渐变。我的目标是在没有渐变的情况下获得一条线。
我尝试了不同的方法: 1.我在图像上使用高斯滤波器,并从原始图像中减去结果,如:
lowpass = ndimage.gaussian_filter(Image, 3) gauss_highpass = Image - lowpass
图像: