- 1219
- 0
- 约4.07千字
- 约 7页
- 2017-07-25 发布于河南
- 举报
中值和均值滤波---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
您可能关注的文档
- --华安盛道管理网 如何在单件装配企业推行精益生产(How to Huaan shendall management network, the implementation of lean production in assembly enterprises).doc
- --华安盛道管理网 定置管理(Huaan Shengdao management network management).doc
- 03判断推理---演绎推理(03 judgment reasoning deductive reasoning).doc
- 12秋《经济法概论》作业3(12 autumn, introduction to economic law, assignment 3).doc
- 2007年感动中国十大人物(2007 moved China's ten great men).doc
- 1959年资料5 中医对泄泻的认识和治疗(Understanding and treatment of traditional Chinese medicine on diarrhea in 1959 5).doc
- 2010年咨询师项目决策分析与评价精选练习及解析(Selection, practice and analysis of consultants' project decision analysis and evaluation in 2010).doc
- 2011初级士基础知识(2011 basic knowledge of Junior School).doc
- 2011年西医综合考研傲视宝典(2011 Western comprehensive examination disdain for the book).doc
- 2011年高考语文试题分类汇编—名篇名句默写(2011 college entrance exam of Chinese famous famous dictation assembly - Classification).doc
- 中值排序基数法(Median sorting Radix method).doc
- 中值滤波,均值滤波,边缘检测,角点检测,基于opencv(Median filter, mean filter, edge detection, corner detection, based on OpenCV).doc
- 中储股份西安分公司(The shares of Xi'an branch).doc
- 中医养肝护肝的方法(The method of traditional Chinese medicine of nourishing liver protection).doc
- 中医减肥新方耳穴减肥法(Chinese medicine slimming new way ear point diet).doc
- 中医在古代文化继承中的地位(The status of traditional Chinese medicine in the succession of ancient culture).doc
- 中医经典必读《药性赋》(Essential Chinese medicine must read Fu Fu).doc
- 中午要脑休一小时(Take an hour off at noon).doc
- 中华人民共和国户籍制度(People's Republic of China household registration system).doc
- 中华人民共和国海关进出口货物优惠原产地管理规定(Regulations for the administration of preferential origin of import and export goods by the customs of the People's Republic of China).doc
原创力文档

文档评论(0)