eFFT:一种基于事件的方法,用于有效计算精确的富里埃变换
概括
我们开发了eFFT,这是一种有效的方法,用于异步事件流的精确里埃变换. 这种方法重复使用计算,减少实时应用程序的处理时间.
科学领域:
- 信号处理 信号处理
- 计算数学 计算数学 计算数学
背景情况:
- 计算异步事件流的精确里埃变换是计算密集的.
- 现有的方法经常在实时处理和资源限制方面扎.
研究的目的:
- 介绍一种有效的方法来计算异步事件流的精确里叶变换.
- 为了减少计算开销,并在有限的硬件上实现实时分析.
主要方法:
- 开发了eFFT,使用Radix-2 FFT矩阵的树数据结构.
- 实现事件逐事件和事件包处理,并进行计算重用.
- 通过避免不必要的计算和重复使用存储的数据来确保准确性.
主要成果:
- eFFT证明了准确性和显著减少的处理时间.
- 通过对公共数据集和实验进行广泛的测试来验证.
- 已被证明可以在资源有限的硬件上在线执行.
结论:
- eFFT为异步事件流的里埃变换提供了高效和精确的解决方案.
- 该方法适用于实时应用程序和资源有限的硬件.
- 一个C++实现是公开发布给科学界的.
相关概念视频
Fast Fourier Transform
301
The Fast Fourier Transform (FFT) is a computational algorithm designed to compute the Discrete Fourier Transform (DFT) efficiently. By breaking down the calculations into smaller, manageable sections, the FFT significantly reduces the computational complexity involved. Direct computation of an N-point DFT requires N2 complex multiplications, whereas the FFT algorithm needs only (N/2)log2N multiplications, offering a much faster performance.
The computational efficiency of the FFT becomes...
The computational efficiency of the FFT becomes...
301
Basic signals of Fourier Transform
485
The Fourier Transform is a pivotal mathematical tool in signal processing, enabling the transformation of time-domain signals into their frequency-domain representations. Among the numerous elements within this domain, certain functions like the sinc function, delta function, and exponential signals hold significant importance due to their unique properties and implications.
The sinc function, defined as sinc(x) = sin(πx)/(πx), is particularly notable for its symmetry and behavior at...
The sinc function, defined as sinc(x) = sin(πx)/(πx), is particularly notable for its symmetry and behavior at...
485
Discrete Fourier Transform
255
The Discrete Fourier Transform (DFT) is a fundamental tool in signal processing, extending the discrete-time Fourier transform by evaluating discrete signals at uniformly spaced frequency intervals. This transformation converts a finite sequence of time-domain samples into frequency components, each representing complex sinusoids ordered by frequency. The DFT translates these sequences into the frequency domain, effectively indicating the magnitude and phase of each frequency component present...
255
Continuous -time Fourier Transform
310
The Fourier series is instrumental in representing periodic functions, offering a powerful method to decompose such functions into a sum of sinusoids. This technique, however, necessitates modification when applied to nonperiodic functions. Consider a pulse-train waveform consisting of a series of rectangular pulses. When these pulses have a finite period, they can be accurately represented by a Fourier series. Yet, as the period approaches infinity, resulting in a single, isolated pulse, the...
310
Trigonometric Fourier series
253
Fourier series is a foundational mathematical technique that decomposes periodic functions into an infinite series of sinusoidal harmonics. This method enables the representation of complex periodic signals as sums of simple sine and cosine functions, facilitating their analysis and interpretation in various fields, including signal processing, acoustics, and electrical engineering.
The trigonometric Fourier series specifically expresses a periodic function with a defined period T using sine...
The trigonometric Fourier series specifically expresses a periodic function with a defined period T using sine...
253
Discrete-time Fourier transform
300
The Discrete-Time Fourier Transform (DTFT) is an essential mathematical tool for analyzing discrete-time signals, converting them from the time domain to the frequency domain. This transformation allows for examining the frequency components of discrete signals, providing insights into their spectral characteristics. In the DTFT, the continuous integral used in the continuous-time Fourier transform is replaced by a summation to accommodate the discrete nature of the signal.
One of the notable...
One of the notable...
300


