搜索资源列表
TestFftAndIfft
- 本人写的基于冈萨雷斯的图像处理中的快速傅里叶变换和逆变换,数据已经和matlab对比过,完全正确。时间仓促,望大家指正。
image-processing---fft
- 2D图像处理的快速傅里叶变换,输入输出接口便捷-2D image processing, fast Fourier transform, and convenient input and output interfaces
2D-FFT-C
- 二维快速傅里叶变换及其逆变换,用于图像处理等领域-two dimensional fast fourier transform and its inverse fast fourier transform
FFT-C
- 一维傅里叶变换及其逆变换,快速算法,用于图像处理等领域-one dimensional fast fourier transform and inverse fast fourier transform
fu_rfft
- 图像处理中复数的快速傅里叶变换函数,作用于复数-Image processing complex Fast Fourier Transform function, acting on the complex
DIPDemo
- 实现了图像处理常用的基本方法,包括直方图均衡,几何变换,空域滤波,2维快速傅里叶变换,图像复原,图像压缩,边缘检测等方法。-The image processing used to achieve the basic methods, including histogram equalization, geometric transformation, spatial filtering, two-dimensional fast Fourier transform, image restora
fft
- 针对图像进行快速傅里叶变换,方便进行频频分析与处理。-Fast Fourier transform for the image, to facilitate frequent analysis and processing.
tfft2
- 图像处理matlab源代码,主要使用快速傅里叶变换。-Image processing matlab source code, primarily using the fast Fourier transform.
VCPP-ImageProcess
- 代码实现对bmp图像的各种处理,包括:3种平滑处理、3种锐化处理、边缘增强(垂直、水平,东、南、西、北,东北,西北,东南,西南,和3种拉普拉斯方法),5种边缘检测的方法,中值滤波去噪,艺术效果(油画、浮雕),快速傅里叶变换,余弦变换,沃尔什—哈大吗变换,腐蚀膨胀,开闭操作,边缘提取,细化等功能。不错的VC++数字图像处理的代码,值得一看!-Bmp image code on a variety of processing, including: three kinds of smoothing,
C_FFT_IFFT
- 这是快速傅里叶变换及逆变换的实现c代码,傅里叶变换是小波变换的基础更是图像及信号处理的基础-This is the fast Fourier transform and inverse transform of the realization of c code, Fourier transform is based on wavelet transform is the basis of image and signal processing
demo_fft_lowfilter
- 基于小波变换和快速傅里叶变换进行图像处理,尤其进行图像的去噪处理。-digital image processing based on wavelet transform and fast fourier transform,especially,It is used to image denoising.
image
- 在VC环境下实现图像的打点显示,反色,及快速傅里叶变换,还可以通过去两个点之间的矩形进行截图显示,与截图处理变换后的显示-The VC environment image RBI anti-color, and fast Fourier transform, can also go a rectangle between two points screenshots show screenshots processing transformed display
jyy
- 对图像的打开,保存,关闭。平滑处理,加噪去噪处理,灰度处理,几何处理,边缘提取,快速傅里叶变换,截图等等。-To open the image, save, close. Smoothing, noise denoising, gray scale processing, geometry processing, edge detection, fast Fourier transform, screenshots and more.
FFT
- 快速傅里叶变换在图像处理中经常遇到,本程序运行结果和matlab一致,是使用C++类编写的。-Fast Fourier transform in image processing are often encountered, the program consistent with the results and matlab is prepared using C++ class.
denoising-FFT-gabor-transform
- 实现了小波降噪,快速傅里叶变换,生成gabor小波,并利用gabor小波处理图形图像。-Wavelet noise reduction, fast Fourier transform to generate gabor wavelet and gabor wavelet processing graphics.
fast-fft
- 快速傅里叶变换,多用于图像处理等方面。。完全是自己亲手敲的程序-Fast Fourier Transform, used for image processing. . Is entirely their own hands to knock the program
图像处理代码
- 基于c#的图像处理,基本处理方法和一些算法函数,例如快速傅里叶变换,灰度图和直方图等等(Image processing based on c #, the basic function processing method and some algorithms, such as fast Fourier transform, grayscale, histogram and so on)
picture
- 基本图像处理,包括傅里叶变换,快速傅里叶变换等(Basic image processing, including Fourier transform, fast Fourier transform, etc.)
数字图像傅立叶变换
- 数字图像快速傅里叶变换(FFT)。将图像转化成二维灰度图像后再做FFT变换,并输出变换后的幅值图。(Digital image fast Fourier transform (FFT).The image is transformed into a two-dimensional gray level image and then the FFT transformation is made, and the amplitude diagram is output after the trans
C语言现实的图像处理(包含快速傅里叶变换)
- 这代码功能有:读入和保存文件头、读入和保存信息头、读入和保存像素数据、读入和保存位图、24位的位图转化为8位位图、8位位图转换为24位位图、图像的二值化、8位位图的Sobel边缘检测、8位位图的Laplace锐化、8位位图的中值滤波、分离与合并RGB矩阵、直方图均衡化 main.c是main函数的所在;BMP.h是对位图文件头和信息头,以及调色板等的类型的声明;function.h主要完成对位图的读写操作;algorithm.h主要完成对位图进行相关的算法的处理。