(高斯)滤波后归一化图像

Normalizing an image after (gaussian) filtering

我按照 Nixon Aguado 的算法实现了一个高斯滤波器。 算法(在找到此处描述的模板后 )如下。

我相信伪代码是 MATLAB 风格的。

function convolved=convolve(image,template)
%New image point brightness convolution of template with image
%Usage:[new image]=convolve(image,template of point values)
%Parameters:image-array of points
% template-array of weighting coefficients
%Author: Mark S. Nixon
%get image dimensions
[irows,icols]=size(image);
%get template dimensions
[trows,tcols]=size(template);
%set a temporary image to black
temp(1:irows,1:icols)=0;

%half of template rows is
trhalf=floor(trows/2);
%half of template cols is
tchalf=floor(tcols/2);
%then convolve the template
for x=trhalf+1:icols-trhalf %address all columns except border
    for y=tchalf+1:irows-tchalf %address all rows except border
        sum=0;
        for iwin=1:trows %address template columns
            for jwin=1:tcols %address template rows
                sum=sum+image(y+jwin-tchalf-1,x+iwin-trhalf-1)* template(jwin,iwin);
            end
        end
        temp(y,x)=sum;
    end
end

%finally, normalise the image
convolved=normalise(temp); 

总之,让我担心的是最后一部分"normalise"。 我尝试了我的算法(用 C# 编写),一些像素的值为 255.00000003(明显大于 255)。我应该 "normalise" 将结果扩大到 0-255 范围吗? 那不是在修改图像吗(高斯除外) 我只是不想让这个操作只涉及高斯滤波器。


编辑:我已经删除了 "normalization" 并且看起来效果很好,所以我不知道为什么本书的作者会推荐它。尽管如此,如果由于某种原因某些值 > 255 出现并且无法绘制,我的程序会崩溃,这仍然让我担心。

正如其他人在评论中指出的那样,规范化 确保每个通道的范围为 0 到 255 的图像是不好的。

正常化 图像在每个值都被限制在 0 到 255 之间的意义上应该没有必要使用适当的过滤器内核。然而在实践中,由于 way floating point numbers work,它可能是必要的或有用的。浮点数不能表示所有可能的实数,而且每次计算都会带来一些误差。这可能是 255.00000003 作为值之一的原因。

与许多信号处理算法一样,此算法假设离散 time/space,但值是连续的。推理这些算法并用数学方法描述它们要容易得多。

在计算机上,您没有连续值。图像使用离散值,每个通道通常是 0 到 255 之间的整数(每个通道 8 位)。声音通常以每声道 16 位编码。

在绝大多数情况下,这是完全可以接受的,但它实际上是高斯滤波器输出之后的另一个滤波器(尽管是非线性滤波器)。所以是的,从严格意义上讲,您确实修改了高斯滤波器的输出,无论是在保存图像时还是在屏幕上显示图像时。