资源简介
nlmeans算法 matlab code
代码片段和文件信息
clear
clc
clf
colormap(gray)
% create example image
ima=100*ones(100);
ima(50:100:)=50;
ima(:50:100)=2*ima(:50:100);
fs=fspecial(‘average‘);
ima=imfilter(imafs‘symmetric‘);
% add some noise
sigma=10;
rima=ima+sigma*randn(size(ima));
% show it
imagesc(rima)
drawnow
% denoise it
fima=NLmeansfilter(ima52sigma);
% show results
clf
subplot(221)imagesc(ima)title(‘original‘);
subplot(222)imagesc(rima)title(‘noisy‘);
subplot(223)imagesc(fima)title(‘filtered‘);
subplot(224)imagesc(rima-fima)title(‘residuals‘);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2507 2008-08-01 02:28 NLmeansfilter.m
文件 567 2008-08-01 02:51 demo.m
文件 1348 2009-05-25 11:58 license.txt
- 上一篇:QPSk完成数字信号的调制解调
- 下一篇:ant-contrib.jar
相关资源
- 20170121135652618.rar
- DiskGenius4.7.0专业版.rar
- AlphaControlsv11.16StableFullSource(D5和D10
- 雅奇880官方开源赠品30多个雅奇4.rar
- 2009_LabVIEW编程样式_清晰版.pdf
- tiger_newhu5.99.24.zip
- 大数据架构详解:从数据获取到深度
- 程序是怎样跑起来的_PDF电子书带书签
- MongodbSample.rar
- EtherCATSlaveStackCodeTool5.12.rar
- 重构_改善既有代码的设计.rar
- 矩阵分析与应用第二版高清带书签.
- 通达网络智能办公系统OfficeAnywhere20
- 入门到实践.rar
- vRealizeAutomation7.0快速部署手册v1.3.pd
- 迅捷pdf转换器.7z
- FLACFLAC3D基础与应用-陈育民.pptx
- Location12.2.rar
- proteus仿真stm32测距.zip
- 《探索式软件测试》高清影印带书签
- Microsoft-70-483.pdf
- 微积分之屠龙宝刀美C.亚当斯等上.p
- F3arRa1n_Windows3.4.3.zip
-
zw_baidu_38396237-10813429-weibodataba
se.zi - zw_xqy987967363-10661999-信号与系统.zip
- 微信头像2000.rar
- zw_oExam_Setup.zip
- 淘客_5.99.31.zip
- zw_ElectronicDevicesandCircuitTheory1-Nashelsk
- zw_C面向对象程序设计(谭浩强主编
评论
共有 条评论