当前位置:网站首页>小波变换--dwt2 与wavedec2
小波变换--dwt2 与wavedec2
2022-07-25 15:21:00 【町棠棠】
https://www.cnblogs.com/xfzhang/p/7295041.html
https://www.ilovematlab.cn/thread-45020-1-1.html
dwt2是二维单尺度小波变换,其可以通过指定小波或者分解滤波器进行二维单尺度小波分解。而wavedec2是二维多尺度小波分解.
尺度可理解为级,即wavedec2可用于多级小波分解
dwt2: [cA,cH,cV,cD]=dwt2(X,'wname');
wavedec2: [C,S]=wavedec2(X,N,'wname'),其中N为大于1的正整数。
也就是说dwt2只能对某个输入矩阵X进行一次分解,而wavedec2可以对输入矩阵X进行N次分解。
appcoef2:二维离散小波变换低频部分系数提取
A = appcoef2(C,S,'wname',N)
A = appcoef2(C,S,'wname')
A = appcoef2(C,S,Lo_R,Hi_R)
A = appcoef2(C,S,Lo_R,Hi_R,N)
detcoef2:二维离散小波变换高频部分系数提取
cH1 表示水平 cV1表示垂直 cD1表示对角 N表示级数
[cH1,cV1,cD1] = detcoef2('all',C,S,N)
appcodef2 与 detcoef2 区别:
app是近似,也就是信号的低频部分,dec是细节,也就是信号的高频部分,
appcoef(s)就是信号s的低频系数
deccoef(s)就是信号的高频系数

边栏推荐
- Instance tunnel use
- ios 面试题
- Idea护眼色设置
- oracle_ 12505 error resolution
- Delayed loading source code analysis:
- The implementation process of inheritance and the difference between Es5 and ES6 implementation
- node学习
- Redis elimination strategy list
- Tasks, micro tasks, queues and scheduling (animation shows each step of the call)
- How to finally generate a file from saveastextfile in spark
猜你喜欢

MySQL installation and configuration super detailed tutorial and simple database and table building method

Use the command to check the WiFi connection password under win10 system

Example of password strength verification

Application of object detection based on OpenCV and yolov3

Spark SQL null value, Nan judgment and processing

ML - natural language processing - Key Technologies

ML - 自然语言处理 - 自然语言处理简介

Spark AQE

Outline and box shadow to achieve the highlight effect of contour fillet

什么是物联网
随机推荐
从 join on 和 where 执行顺序认识T-sql查询执行顺序
Reflection - Notes
基于OpenCV和YOLOv3的目标检测实例应用
在网页上实现任意格式的音视频快速播放功能的开发总结。
Solve the timeout of dbeaver SQL client connection Phoenix query
Recommend 10 learning websites that can be called artifact
Spark DF adds a column
MySQL transactions and mvcc
异步fifo的实现
记一次redis超时
Spark memory management mechanism new version
MySQL installation and configuration super detailed tutorial and simple database and table building method
MySql的安装配置超详细教程与简单的建库建表方法
如何解决Visual Studio中scanf编译报错的问题
用OpenPose进行单个或多个人体姿态估计
C语言函数复习(传值传址【二分查找】,递归【阶乘,汉诺塔等】)
Sublimetext-win10 cursor following problem
Maxcompute SQL 的查询结果条数受限1W
ML - 语音 - 语音处理介绍
spark中saveAsTextFile如何最终生成一个文件