资源简介
本人正在学小波变换,压缩包里面含有小波变换的程序,
代码片段和文件信息
% ================================================================
% Copyright 2016 Vrije Universiteit Brussel. All rights reserved.
%
% Author: David Blinder
% Description: entry point for the unwrapping accelerator applied on multiple algorithms
% ================================================================
function Y = accel_unwrapping(X algo lev m constn K KL)
% INPUTS:
% ‘X‘ is the wrapped phase map to be unwrapped
% ‘lev‘ is the number of (2D) decompositions levels
% ‘m‘ is the maximum value of ‘X‘ (0 corresponds to -pi m to +pi)
% Optional constants:
% ‘constn‘ is a factor to modify the threshold detecting aliasing applied on the highpass channel. (default: 1)
% ‘K‘: size of dilation operator. (default: 0)
% ‘KL‘: from what level the dilation must be applied onwards (k=0 at kl first levels) (default: 0)
% OUTPUT:
% Returns the unwrapped map in ‘Y‘.
addpath(‘sourcecode‘);
if ~exist(‘constn‘‘var‘); constn = 1; end;
if ~exist(‘K‘‘var‘); K = 0; end;
if ~exist(‘KL‘‘var‘); KL = 0; end;
% select algorithm
switch algo
case ‘f2dpu‘
unwrapper = @accel_unwrapping_fast2d;
case ‘puma‘
unwrapper = @accel_unwrapping_puma;
otherwise
error([‘unknown algorithm identifier “‘ algo ‘“‘])
end
Y = unwrapper(X lev m constn K KL);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1482 2016-06-14 21:20 accel_unwrapping.m
文件 1203 2016-06-14 21:24 main.m
文件 1203 2016-06-15 16:50 README.txt
目录 0 2016-06-14 21:41 sourcecode\
文件 3152 2016-06-14 21:25 sourcecode\accel_unwrapping_fast2d.m
文件 3046 2016-06-14 21:41 sourcecode\accel_unwrapping_puma.m
文件 2241 2016-06-14 21:24 sourcecode\aliasing_collections.m
文件 4335 2016-01-29 17:37 sourcecode\fast2d_unwrap.m
目录 0 2016-08-09 23:15 sourcecode\for_MAC\
文件 39044 2016-08-09 21:25 sourcecode\for_MAC\mf4.mexmaci64
文件 841 2016-01-29 16:46 sourcecode\grouptranspose.m
文件 37376 2016-02-29 20:57 sourcecode\mf4.mexw64
文件 1998 2015-09-08 20:13 sourcecode\modulo_haar_pyr.m
文件 194 2016-02-29 17:24 sourcecode\packGI.m
文件 1165 2016-06-14 21:39 sourcecode\regular_haar.m
文件 1514 2015-09-08 20:15 sourcecode\reliability_calc_full.m
文件 231 2016-02-24 22:07 sourcecode\unpackGI.m
文件 12230854 2016-02-10 21:57 testimages.mat
相关资源
- log Gabor小波图像纹理特征分析我小改
- 小波分析 labvIEW源程序
- A Primer On Wavelets and Their Scientific Appl
- 《小波十讲》 中文版和英文版
- 信号处理的小波导引英文第三版
- 小波十讲修订版高清扫描
- 华章数学译丛19 时间序列分析的小波
- 第二代小波变换的信号处理
- 杨福生《小波变换的工程分析与应用
- 小波十讲_修订版Ingrid Daubechies著 李建
- 小波变换的工程分析与应用 杨福生
- 华章数学译丛19 时间序列分析的小波
- 小波神经网络在电力系统短期电价预
- MIT小波滤波器组及其应用课件
- 2018.11版PPT-全小波变换与图像、图形处
- 基于小波分解的图像融合算法的改进
- 小波变换聚类
- 脑电-小波分解
- 智东西-自动驾驶系列课第5课课件-激
- 小波分析代码
- R语言小波分析wavelet
- 图像融合,像素级遥感图像融合算法
- 小波变换分析故障振动信号
- 轴承故障诊断小波分析.7z
- 小波变换C代码(wavelet transform code)
- 2020五一建模比赛B题论文与代码
- 小波变换dwt源代码
- 采用[FFT傅立叶变换,DCT离散余弦变化
- 基于小波变换的高分辨率信号频谱分
- 小波分析在心电信号去噪中的应用
评论
共有 条评论