Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
den1_9.m
Package: wavelet_denoise.zip [view]
Upload User: lcj80317
Upload Date: 2007-01-26
Package Size: 625k
Code Size: 1k
Category:
Wavelet
Development Platform:
Matlab
- function X = den1_9(x, wname, n, thr, thr1)
- % 基于综合阈值的图像去噪方法
- % 将thr1和thr之间的线性处理方式改成指数的
- % x' = a^(x-b) - 1
- % a = (λ + 1)^(1 / (λ-λ1))
- % b = λ1
- % thr1 = 0.6 * thr;
- a = (thr + 1) ^ (1/(thr-thr1));
- b = thr1;
- [C, S] = wavedec2(x, n, wname); % 对图像进行小波分解
- dcoef = C( prod(S(1, :)) + 1 : end); % 高频部分系数
- ind = find( abs(dcoef) < thr1) + prod(S(1, :)); % 小于thr1的系数
- C(ind) = 0; % 直接置零
- ind = find( abs(dcoef) >= thr1 & abs(dcoef) < thr )...
- + prod(S(1, :)); % 大于thr1小于thr的系数
- C(ind) = sign(C(ind)) .* ...
- (a .^( abs(C(ind)) - b) - 1); % 进行缩减
- % 重构图像
- X = waverec2(C, S, wname);