这是关于小波变换的电子书,高清,最新版本,经典著作,英文版
2023-01-26 13:35:31 28.06MB Wavele
1
频率域低通滤波matlab代码 使用加窗傅立叶变换研究低通音频滤波器和信号处理 该项目使用多种类型的窗口傅立叶变换来研究时频域中的音乐样本。 我特别研究了这种变换的调谐,以及海森堡不确定性对时间和频率分辨率的限制。 我还执行泛音过滤并研究不同窗口类型对这项任务的功效。 是对项目的介绍,包括可视化、方法和背景。 动机 该项目最初是为了满足华盛顿大学应用数学项目数据科学和科学计算研究生课程的任务。 框架 -MATLAB 2019 图例 代码示例 %% Build the time and frequency domains L = length(v)/Fs; n = length(v); t2 = linspace(0, L, n+1); t = t2(1:n); k = (2*pi/L)*[0:n/2-1 -n/2:-1]; ks = fftshift(k); v = v(1:end - 1); v_t = fft(v); %% Plot in freq. domain of original file close all plot(ks,abs(fftshift(v_t))/max(a
2022-12-19 16:17:51 1.91MB 系统开源
1
傅立叶特征使网络可以在低维域中学习高频功能 | * 1 , * 1,2 , * 1 , 1 , 1 , 1 , 3 , 2 , 1 1加州大学伯克利分校, 2 Google研究中心, 3加州大学圣地亚哥分校*表示相等的贡献 抽象的 我们表明,通过简单的傅立叶特征映射传递输入点使多层感知器(MLP)能够学习低维问题域中的高频函数。这些结果揭示了计算机视觉和图形学的最新进展,这些进展通过使用MLP表示复杂的3D对象和场景来实现了最新的结果。使用来自神经正切核(NTK)文献的工具,我们表明标准MLP在理论和实践上均无法学习高频。为了克服这种频谱偏差,我们使用傅立叶特征映射将有效的NTK转换为具有可调带宽的固定核。我们建议一种选择特定于问题的傅立叶特征的方法,该方法可以大大提高MLP在与计算机视觉和图形社区相关的低维回归任务上的性能。 代码 我们提供了一个作为该核心思想的简单
2022-12-12 00:42:43 6.39MB JupyterNotebook
1
盲水印 这是用Python2.7编写的 用法 python encode.py --image < image> --watermark < watermark> --result < result> python decode.py --original < original> --image < image> --result < result> Use --alpha to change the alpha (default 5.0). 例子 编码: 原始图片 水印 python encode.py --image ori.png --watermark watermark.png --result res.png 结果 解码: python decode.py --original ori
2022-12-04 15:57:20 2.1MB image blind fourier watermark
1
Simple and Practical Algorithm for Sparse Fourier Transform SFT经典文章一篇
2022-12-03 10:34:36 407KB sft
1
Fourier transforms are used everyday for solving single functions and combinations of functions found in radar and signal processing. Still, many problems that could have been solved by using Fourier transforms have gone unsolved because they require integration that is too computationally difficult. This manual demonstrates how you can solve those integration-intensive problems with an approach to carrying out Fourier transforms. By building upon Woodward's well-known "Rules and Pairs" method and related concepts and procedures, the text establishes a unified system that makes implicit the integration required for performing Fourier transforms on a wide variety of functions. It details how complex functions can be broken down to their constituent parts for analysis. This approach to applying Fourier transforms is illustrated with many specific examples from digital signal processing as well as radar and antenna operation.
2022-11-29 08:52:42 2.91MB 雷达信号处理
1
将图像进行傅里叶变换与反傅里叶变换,可以模拟出4f系统的输出结果。
2022-11-08 23:40:11 82.54MB fouriermatlab fouriertransform 4F系统
1
DFT的matlab源代码快速傅立叶变换可视化 使用OpenCL用C ++编写的程序,以学习如何在不同信号上使用FFT 这是什么? 应用程序创建主要用于OpenCL学习目的。 适用于正向和反向或谐波或多谐波信号。 用数学符号表示: DFT和逆DFT X(j) = ∑ x(i) * e +2πij/N / N X(j) = ∑ X(i) * e -2πij/N 创建于: 和 v1.2 如何建造 要求: OpenGL> = 4.2,否则: 在)中更改kOpenGlVersion和kGlslVersion 更改API版本 支持C ++ 20标准的C ++编译器 CMake的> = 3.15 否则,请尝试更改VERSION 已安装的库 安装的OpenCL环境: 对于AMD — 对于Nvidia — 对于英特尔— 警告!:项目依赖项将近100 MB 使用子模块克隆项目(选择存储库之一): git clone https://github.com/ValeryKameko/fast-fourier-transform-visualization --recurse-submodules git c
2022-11-06 21:41:32 316KB 系统开源
1
自适应傅里叶分解算法,可以实现对信号进行自适应傅里叶分解及重构,可直接运行。-adaptive fourier decomposition (AFD)
1