摘要: 关键字 代码 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) 编辑
摘要: 源于 :http://zhidao.baidu.com/question/89228643.html 百度中的 >> M=imread('fly.bmp') %读取MATLAB中的名为cameraman的图像 subplot(3,3,1) imshow(M) %显示原始图像 title('original') P1=imnoise(M,'gaussian',0.... 阅读全文
posted @ 2009-05-25 13:21 fleetwgx 阅读(5341) 评论(2) 推荐(0) 编辑