资源简介
包含matlab图像处理小波变换所需的m文件和个人的部分注释。
代码片段和文件信息
function w = wave2gray(c s scale border)
%WAVE2GRAY Display wavelet decomposition coefficients.
% W = WAVE2GRAY(C S SCALE BORDER) displays and returns a
% wavelet coefficient image.
%
% EXAMPLES:
% wave2gray(c s); Display w/defaults.
% foo = wave2gray(c s); Display and return.
% foo = wave2gray(c s 4); Magnify the details.
% foo = wave2gray(c s -4); Magnify absolute values.
% foo = wave2gray(c s 1 ‘append‘); Keep border values.
%
% INPUTS/OUTPUTS:
% [C S] is a wavelet decomposition vector and bookkeeping
% matrix.
%
% SCALE Detail coefficient scaling
% ----------------------------------------------------------
% 0 or 1 Maximum range (default)
% 23... Magnify default by the scale factor
% -1 -2... Magnify absolute values by abs(scale)
%
% BORDER Border between wavelet decompositions
% ----------------------------------------------------------
% ‘absorb‘ Border replaces image (default)
% ‘append‘ Border increases width of image
%
% Image W: ------- ------ ------------ -------------------
% | | | |
% | a(n) | h(n) | |
% | | | |
% ------- ------ h(n-1) |
% | | | |
% | v(n) | d(n) | | h(n-2)
% | | | |
% ------- ------ ------------
% | | |
% | v(n-1) | d(n-1) |
% | | |
% -------------- ------------ -------------------
% | |
% | v(n-2) | d(n-2)
% | |
%
% Here n denotes the decomposition step scale and a h v d are
% approximation horizontal vertical and diagonal detail
% coefficients respectively.
% Copyright 2002-2004 R. C. Gonzalez R. E. Woods & S. L. Eddins
% Digital Image Processing Using MATLAB Prentice-Hall 2004
% $Revision: 1.6 $ $Date: 2003/11/21 15:01:44 $
% Check input arguments for reasonableness.
error(nargchk(2 4 nargin));
if (ndims(c) ~= 2) | (size(c 1) ~= 1)
error(‘C must be a row vector.‘); end
if (ndims(s) ~= 2) | ~isreal(s) | ~isnumeric(s) | (size(s2) ~= 2)
error(‘S must be a real numeric two-column array.‘); end
elements = prod(s 2);
if (length(c) < elements(end)) | ...
~(elements(1) + 3 * sum(elements(2:end - 1)) >= elements(end))
error([‘[C S] must be a standard wavelet ‘ ...
‘decomposition structure.‘]);
end
if (nargin > 2) & (~isreal(scale) | ~isnumeric(scale))
error(‘SCALE must be a real numeric scalar.‘);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-02-02 21:07 小波变换m文件注释\
文件 5335 2014-02-19 17:08 小波变换m文件注释\wave2gray.m
文件 5102 2014-02-19 23:36 小波变换m文件注释\waveback.m
文件 940 2014-01-13 10:43 小波变换m文件注释\wavecopy.m
文件 1089 2014-01-13 10:43 小波变换m文件注释\wavecut.m
文件 4934 2014-08-10 14:47 小波变换m文件注释\wavefast.asv
文件 4934 2014-08-10 14:48 小波变换m文件注释\wavefast.m
文件 4889 2014-01-13 10:43 小波变换m文件注释\wavefilter.m
文件 1061 2014-01-13 10:43 小波变换m文件注释\wavepaste.m
文件 3842 2014-02-20 21:25 小波变换m文件注释\wavework.m
文件 696 2014-01-13 10:43 小波变换m文件注释\wavezero.m
- 上一篇:基于微博关注的明星社团划分模型
- 下一篇:捷联惯导仿真程序-MATLAB源代码
相关资源
- 捷联惯导仿真程序-MATLAB源代码
- Rake接收机 Matlab程序仿真
- 802.11DCF matlab仿真程序
- CT图像重建、投影matlab代码
- 基于MATLAB的滤波器 毕业设计
- 基于RLS和LMS的自适应滤波器的MATLAB代
- 混沌系统驱动响应同步代码
- DMC动态矩阵控制MATLAB程序(简易
- 简单matlab车牌字符分割
- 交通仿真Matlab程序
- SOFC Matlab 仿真
- 信号调制识别matlab程序
- 用MATLAB编写的混沌序列图像加密程序
- T-S模糊系统结论参数的MATLAB仿真研究
- Matlab2012a破解i包全部资源
- matlab实现sift提取特征点
- 啁啾光纤光栅
- Tight Binding处理Graphene能带的Matlab程序
-
MATLAB SIMUli
nk通信系统建模仿真讲解 - 分支定界法Matlab程序实现与验证.pdf
- pro+sail的计算matlab版本
- matlab版本频率估计
- 打靶法MATLAB程序
- hopfield神经网络matlab实现
- 基于matlab矩形阵波束形成
- 数字水印 攻击 JPEG压缩 matlab代码
- 快衰落matlab代码
- 一个笑脸的matlab程序
- 卫星图像读取
- MatLab Web Server在交互式网络课件开发中
评论
共有 条评论