Description: 用VC编写的彩色图像处理程序,实现了:提取图像中平均、最大、最小灰度,在此基础上可以对图像二值化;可以进行图像边缘提取(有laplace1、laplace2、Robot的提取方法)
;对图像进行卷积滤波(高能滤波,水平、垂直、双向增强,低通滤波);实现的图像的:锐化、浮雕、反相、平滑化、霓虹、马赛克、柔化、曝光过度,扩散处理。是学习VC彩图处理不可多得的代码。-VC prepared using color image processing procedures, to achieve: the extraction of images the average, maximum and minimum gray-scale, on this basis can the image binarization image edge extraction can be carried out (have laplace1, laplace2, Robot extraction method) image convolution filtering (high-energy filter, horizontal, vertical, two-way enhanced, low-pass filter) realize image: Sharpen, Emboss, RP, smooth, and neon, mosaic, blur, over-exposure, the proliferation of treatment. VC deal is to learn from rare color code. Platform: |
Size: 124928 |
Author:杜红艳 |
Hits:
Description: convolution filter which can be used to perform convolution to two functions. useful when you are trying to compress videos and images using convolution/multiplication method Platform: |
Size: 4096 |
Author:hao |
Hits:
Description: 滤波器的设计
线性滤波
卷积与相关
imfilter 滤波函数
预定义滤波
FIR 滤波器的设计
FIR 滤波器基础
计算二维频率响应
计算期望频率响应矩阵
频率变换法 频率采样法
窗函数法 -The design of linear filtering, convolution filter and associated filtering function imfilter predefined filter FIR filter design based two-dimensional FIR filter frequency response of the frequency response matrix calculation of expected frequency of sampling frequency transform window function method Platform: |
Size: 3072 |
Author:齐子新 |
Hits:
Description: 代码给出了数字图像处理图像复原运算方法中的自适应滤波、正则化滤波、盲去卷积滤波等滤波方法的实现过程,经matlab调试运行成功,效果明显-Code gives a computing method of digital image processing image restoration, adaptive filtering, regularization filter, blind go convolution filtering and other filtering methods to achieve process matlab debugging run successfully, the effect is obvious Platform: |
Size: 1024 |
Author:刘德华 |
Hits:
Description: 压缩文件中给出了已知系统传递函数及输入信号的情况下,求解系统输出响应的四种方法,即差分方程法,卷积法,DFT法以及滤波器设计方法;此外还包含创建窗及其频率响应的matlab设计。-Known compressed file system transfer function is given and the case of the input signal, the output response of the system to solve the four methods, namely the differential equation method, convolution, DFT method and the filter design methods Also included creating windows and its frequency response matlab design. Platform: |
Size: 4096 |
Author:chengzhe |
Hits:
Description: 产生64QAM基带通信系统发射机:基带成型滤波采用3种方式(1)采用每个符号调制一个成型滤波函数,然后将各个函数进行时域叠加的方法;
(2)采用信号与低通滤波器响应函数卷积的方法;(3) matlab自带的升余弦函数-Produce 64QAM baseband communication system transmitter: baseband shaping filter uses three ways (1) the use of a molding each symbol modulation filter function, and then each time domain overlay function
(2) the use of signals and low-pass filter response function convolution method (3) matlab comes with a raised cosine function Platform: |
Size: 2048 |
Author:辛永超 |
Hits:
Description: 变采样和多相滤波器的实现。本程序实现了一个变采样程序,中间设计滤波器设计和插值抽取。其中滤波器设计用的是窗函数法,根据要求设计窗函数,得到窗函数的长度。接着是插值,滤波,抽取,得到最后变采样之后的波形文件、另外对比了用直接卷积和多相分解卷积两种方法最后的结果。
-Implementation of variable sampling and polyphase filter. This procedure implements a variable sampling procedures, intermediate design and interpolation and decimation filter design. The filter design is using the window function method, according to the requirements of the design of window function, get the length of the window function. Then the interpolation, filtering, extraction, and finally obtain the variable wave file, sampling after the addition of contrast and polyphase decomposition results of two methods for convolution last direct convolution. Platform: |
Size: 261120 |
Author:袁斌 |
Hits:
Description: Overlap–save is the traditional name for an efficient way to uate the discrete convolution between a very long signal x[n] and a finite impulse response (FIR) filter h[n].-Overlap–save is the traditional name for an efficient way to uate the discrete convolution between a very long signal x[n] and a finite impulse response (FIR) filter h[n]. Platform: |
Size: 1024 |
Author:Miadi |
Hits:
Description: 零延时卷积算法实现,基于fft变换。Efficient Convolution Without Latency by
William G. Gardner-It is well known that a block FFT implementation of convolution is vastly more efficient than the direct
form FIR filter. Unfortunately, block processing incurs significant input/output latency which is undesirable
for real-time applications. A hybrid method is proposed for doing convolution by combining direct form
and block FFT processing. The result is a zero latency convolver that performs significantly better than
direct form methods. Platform: |
Size: 195584 |
Author:程衎 |
Hits:
Description: 有源码,适合学习C++的人
一、 读入一幅灰度图象,编写程序显示图象中任一象素点的灰度值。
二、 编程实现RGB彩色空间到HSV彩色空间的转换,并通过调整H、S、V的值实现图像亮度、色度和色饱和度的调节。
三、 1.灰度线性变换、分段线性变换
2.灰度直方图均衡、规格化
3.图象卷积:各种模板实现低通、高通滤波
4.图象中值滤波、最大值滤波、最小值滤波、模板选择滤波
5.伪彩色图象增强
四、 1.图象的加、减、乘、除和逻辑运算。
2.图象的镜像变换、图象的缩放(灰度插值)变换
五、 编程实现图象的FFT变换和反变换
六、 用逆滤波方法和维纳滤波方法恢复运动模糊图象(加噪声和不加噪声)
七、 编写程序实现灰度图象的分割:
1、阈值化算法:手动阈值、自动阈值(大津阈值)
2、区域生长
3、区域分裂合并-There is source code for learning C++ people one reads a grayscale image, write a program to display the image in any one pixel gray value. Second, the programming RGB color space to the HSV color space conversion, and by adjusting the H, S, V values achieve adjust image brightness, color and color saturation. Third, 1 gray linear transformation, piecewise linear transformation 2. histogram equalization 3. image normalized convolution: a variety of templates for low pass, high pass filter 4. image median filtering, the maximum filter minimum filtering, template selection pseudo-color image enhancement filter 5. four, plus 1 image, subtract, multiply, divide, and logic operations. 2. The image of image transformation, zoom images (grayscale interpolation) into five, programming image of FFT and inverse transform six, inverse filtering method and Wiener filtering method to restore motion blur image (plus noise and without noise) Seven, programming Grayscale image segmentation: 1, thresho Platform: |
Size: 1072128 |
Author:zl |
Hits:
Description: 仿真IIR 数字滤波器的直接I 型、II 型、级联型、并联型结构的特点和表示方法;FIR数字滤波器的直接型、级联型、频率抽样型以及快速卷积的结构特点和表示方法-Features and representation I direct simulation type IIR digital filter, type II, cascade, parallel type structure a direct, cascade, the frequency of sampling and structural characteristics of fast convolution type FIR digital filter and representation method Platform: |
Size: 4096 |
Author: |
Hits:
Description: 比较了软阈值,硬阈值及当今各种阈值计算方法,意信号卷积的运算,并且绘制图象,各种kalman滤波器的设计。- Comparison of soft threshold and hard threshold and today various threshold calculation method, Convolution operation is intended to signal and image rendering, Various kalman filter design. Platform: |
Size: 6144 |
Author:梁左玲 |
Hits:
Description: 中值平均滤波法,中值滤波是一种非线性滤波,一般用来处理图像的椒盐噪声。当用来保持边缘同时滤波的要求下,中值滤波要比卷积滤波更加有效。-Median filter is a nonlinear filtering, usually used for salt and pepper noise image processing. When the filter is used to keep the edge of the filter, the median filter is more effective than the convolution filter. Platform: |
Size: 8192 |
Author:gary |
Hits:
Description: 二维图像的投影和图像重建,直接傅里叶反变换法,先反投影后滤波,先滤波后反投影,卷积反投影(Two dimensional image projection and image reconstruction, direct Fourier inverse method, first backprojection, after filtering, first filter, back projection, convolution back projection) Platform: |
Size: 1616896 |
Author:忘记小邪
|
Hits: