filter_gaussian.m
上传用户:trade789
上传日期:2018-05-10
资源大小:603k
文件大小:2k
源码类别:

2D图形编程

开发平台:

Matlab

  1. %/////////////////////////////////////////////////////////////////////////////////////////////
  2. % Author : Scott Ettinger
  3. %
  4. % filter_gaussian(img, order, sig)  
  5. %
  6. % The image is first padded with the outer image data enough times to allow for the size of the 
  7. % filter used. 
  8. function image_out = filter_gaussian(img,order,sig)
  9. img2 = img;
  10. for i=1:floor(order/2)  %pad image borders with enough for filter order
  11.     
  12.     [h,w] = size(img2);
  13.    
  14.     img2 = [img2(1,1)  img2(1,:)  img2(1,w);
  15.             img2(:,1)  img2       img2(:,w);
  16.             img2(h,1)  img2(h,:)  img2(h,w)];
  17. end 
  18.    
  19. f = gauss1d(order,sig); %create filter coefficient matrix
  20.     
  21. image_out = conv2(img2,f,'valid'); % do the filtering
  22. image_out = conv2(image_out,f','valid'); % do the filtering
  23. %/////////////////////////////////////////////////////////////////////////////////////////
  24. function f = gauss1d(order,sig)
  25. f=0;
  26. i=0;
  27. j=0;
  28. %generate gaussian coefficients 
  29. for x = -fix(order/2):1:fix(order/2)
  30.     i = i + 1;
  31.     f(i) = 1/2/pi*exp(-((x^2)/(2*sig^2)));
  32. end
  33. f = f / sum(sum(f)); %normalize filter
  34. %/////////////////////////////////////////////////////////////////////////////////////////
  35. function f = gauss2d(order,sig)
  36. f=0;
  37. i=0;
  38. j=0;
  39. %generate gaussian coefficients 
  40. for x = -fix(order/2):1:fix(order/2)
  41.     j=j+1;
  42.     i=0;
  43.     for y = -fix(order/2):1:fix(order/2)
  44.         i=i+1;
  45.         f(i,j) = 1/2/pi*exp(-((x^2+y^2)/(2*sig^2)));
  46.     end
  47. end
  48. f = f / sum(sum(f)); %normalize filter