关于高斯滤波器的使用方法,可以使用MATLAB中的fspecial函数生成一个旋转对称的高斯低通滤波器。函数调用格式为:h = fspecial('gaussian', hsize, sigma)。这里的hsize用于指定滤波器的大小,它可以是一个矢量,指出滤波器的行数和列数,也可以是一个标量值,此时将生成一个正方形滤波器。默认的hsize值...
I'm trying to generate a gaussian with fspecial but I keep on getting the same error: Error in fspecial (line 8) LG(i)=fspecial('gaussian',h,s); Does anybody know what is wrong? Code: ThemeCopy LG=zeros(20,20); hsize=[1:20]'; sigma=rand(20,1); for i=1:20 h=hsize(i); ...
在matlab的help文档里搜fspecial这个函数的加高斯噪声的说明,具体的原文说明如下: h = fspecial('gaussian', hsize, sigma) returns a rotationally symmetric Gaussian lowpass filter of size hsize with standard deviation sigma (positive). hsize can be a vector specifying the number of rows and columns in...