离散余弦压缩代码matlab 傅里叶变换 为了压缩图像,我们需要使用Matlab进行2D离散余弦变换,压缩和2D逆离散余弦变换(IDCT) 如果您有类似的作业,请不要复制该代码,请尝试理解它。
2023-02-25 13:24:33 189KB 系统开源
1
这是英国公开大学的数学课件,是讲述傅立叶系数的.
2023-02-22 13:21:56 774KB 课件;傅立叶序列(Fourier series)
1
DFT的matlab源代码傅立叶和希尔伯特变换 分析信号的工具 目前有3个文件。 FFT.cpp是快速傅立叶变换的一个实现(仍然缺少逆变换实现),在main函数中有一个示例,该示例使用转换后的数据向量写出一个文件。 hilbert c ++。cpp是Hilbert变换的实现(使用DFT而不是FFT,仍然尝试在此处实现FFT而不是DFT)。 modulation.cpp是AM调制的一种实现方式,用于信号分析,包括SSB调制及其各自的解调。 请注意,在最后一个文件中,我使用了hilbert c ++。cpp中定义的函数,因此,如果要使用在那里定义的函数,则必须将其作为头文件.h包括在内。
2023-02-14 14:05:15 6KB 系统开源
1
Computational Fourier Optics:a MATLAB tutorial 傅里叶光学,带MATLAB代码,非常实用
2023-02-06 15:54:37 4.95MB Fourier Optics
1
这是关于小波变换的电子书,高清,最新版本,经典著作,英文版
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