中值和均值滤波---matlab实现(Median and mean filter ---matlab implementation).doc

中值和均值滤波---matlab实现(Median and mean filter ---matlab implementation).doc

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
中值和均值滤波---matlab实现(Median and mean filter ---matlab implementation)

中值和均值滤波---matlab实现(Median and mean filter ---matlab implementation) %x is the image that needs filtering, and N is the template size (that is, n * n) Function d=avg_filter (x, n) A (1:n, 1:n) =1;%a, that is, n * n template, the element is 1 [height, width]=size (x);% input image is hightxwidth, and hightn, widthn X1=double (x); X2=x1; For i=1:hight-n+1 For j=1:width-n+1 C=x1 (i:i+ (n-1), j:j+ (n-1)),.*a;%, take out X1 from J (I), start n row, n column element, and template multiply S=sum (sum (c));% the sum of the elements in the C matrix X2 (i+ (n-1), /2, j+ (n-1), /2) =s/ (n*n);% will assign the mean of the elements after the template operation to the central location of the template End End Not assigned elements from% of original value D=uint8 (x2); Self compiled median filter function. X is the image that needs filtering, and N is the template size (that is, n * n) Function d=mid_filter (x, n) [height, width]=size (x);% input images are p * q, and pn, qn X1=double (x); X2=x1; For i=1:height-n+1 For j=1:height-n+1 C=x1 (i:i+ (n-1), j:j+ (n-1));% out X1 from J (I); n row n column element, that is template (n * n) E=c (1::);% is the first row of the C matrix For u=2:n E=[e, C (U::));% turns the C matrix into a row matrix End Mm=median (E);%mm is the median X2 (i+ (n-1), /2, j+ (n-1) /2) =mm;%, the median of the template elements assigned to the center of the template End End Not assigned elements from% of original value D=uint8 (x2); % of the Gauss filter function, S is the need to filter the image, n is the mean, and K is the variance Function, d=gaussfilt (k, N, s) Img = double (s); N1=floor ((n+1) /2)% computed image center For i=1:n For j=1:n B (I, J) =exp (- (i-n1) ^2+ (j-n1) ^2) / (4*k)) / (4*pi*k); End End % generates Gauss sequence B. Img1=conv2 (Img, B,same);% Gauss convolution is performed with the generated Gauss sequence convolution D=uint8 (Img1); (5) MATLAB code of median filtering Global ImagenUmbral% defines a global variable, ImagenUmbral Global J%

您可能关注的文档

文档评论(0)

jgx3536 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:6111134150000003

1亿VIP精品文档

相关文档