摘要: MATLAB中提供了卷积运算的函数命令conv2,其语法格式为: C = conv2(A,B) C = conv2(A,B)返回矩阵A和B的二维卷积C。若A为ma×na的矩阵,B为mb×nb的矩阵,则C的大小为(ma+mb+1)×(na+nb+1)。 例: A=magic(5) A = 17 24 1 8 15 23 5 7 14   16 4   6 13... 阅读全文
posted @ 2009-06-07 23:38 fleetwgx 阅读(3671) 评论(0) 推荐(0) 编辑
摘要:   关键词: 实验情况:做成了H(u,v);   但在频域相乘和傅里叶变换反变换中出了问题,效果完全除服想象的差劲 实验代码1: linesum.m function [V,U]=linesum(M,N,a,b) u=1:M; v=1:N; [V,U]=meshgrid(a*v,b*u); 实验代码2: sports_degradation.m fun... 阅读全文
posted @ 2009-06-04 21:05 fleetwgx 阅读(2521) 评论(0) 推荐(0) 编辑
摘要: >> help nextpowe2 nextpowe2.m not found. Use the Help browser Search tab to search the documentation, or type "help help" for help command options, such as help for methods. >>&#... 阅读全文
posted @ 2009-05-30 00:38 fleetwgx 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 1 m文件调用问题: Attempt to execute SCRIPT  as a function. 只有三个可能: 1 没有这个函数文件,所以自己创建 2 创建文件不在 current  directory 3 语法出错 :第一:  function 写错为fuction,这个错误,非常容易,就好像main那样的    &... 阅读全文
posted @ 2009-05-29 20:05 fleetwgx 阅读(1684) 评论(1) 推荐(0) 编辑
摘要: %-------------------------------------------------------- %函数说明: %输入: % image: 读入图片的路径 % D0: 参数D0 % n: 巴特沃思与指数滤波器的阶数 %输出: %... 阅读全文
posted @ 2009-05-29 01:05 fleetwgx 阅读(3160) 评论(0) 推荐(0) 编辑
摘要: 1 关键词 2 代码  http://blog.csdn.net/future_fighter/archive/2008/04/27/2334181.aspx 3 代码  http://hi.baidu.com/haixinguan/blog/item/202636d1fea20ed6562c8430.html 4 代码 http://bbs.matwav.com/vie... 阅读全文
posted @ 2009-05-27 13:09 fleetwgx 阅读(1296) 评论(0) 推荐(0) 编辑
摘要: 参考:http://zhidao.baidu.com/question/26576387.html 关键词: 语音信号采集和分析 当初,最最怕的,还是矩阵向量的维数等等细节问题,没有搞好,理解了也难,加上线性代数有忘记了很多,幸亏考研复习重温一些,算是考研中的收获 1基本读取    >> [k,fs]=wavread('bdr.wav'); >>... 阅读全文
posted @ 2009-05-26 20:01 fleetwgx 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: 等有空搞搞 阅读全文
posted @ 2009-05-26 01:51 fleetwgx 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 关键字 代码 I=imread('6.bmp'); noise=0.18*randn(size(I)); psf=fspecial('motion',21,11); blurred=imfilter(I,psf,'circular'); >> blurrednoisy=im2uint8(blurred+noise); ??? Error u... 阅读全文
posted @ 2009-05-25 21:40 fleetwgx 阅读(4844) 评论(0) 推荐(0) 编辑
摘要: 源于网络 :http://hi.baidu.com/yangchengbo82/blog/item/e4057a4c7e6e60ffd62afc01.html 图像增强 1. 直方图均衡化的 Matlab 实现 1.1 imhist 函数 功能:计算和显示图像的色彩直方图 格式:imhist(I,n)         imhi... 阅读全文
posted @ 2009-05-25 14:31 fleetwgx 阅读(2386) 评论(0) 推荐(0) 编辑