搜索资源列表
ImageDIP2
- “区域分割”是采用并行区域分割算法中的阈值化分割算法,阈值的选取方法是迭代阈值选取方法。 “边缘检测”是采用Prewitt边缘检测算子对图像进行边缘检测运算,Prewitt边缘算子的核心是两个3×3的卷积核(corrvolution kernel。
Filter2D
- Visual C++图像处理程序,采用opencv库,对图像进行核卷积,当核运算部分超出输入图像时,便捷外面的像素值等于离它最近的像素值。
IP
- 1)8位和24位bmp文件的打开,保存,自动判别文件类型并进行相应的设置。 2)对同一副bmp图像的多视图显示,包括:一般图像视图,直方图视图(支持彩色), 图像属性视图,24位bmp的RGB各分量视图。 3)各种卷积核的滤波操作。包括:拉普拉斯二阶微分算子,LoG算子, 高斯平滑算子,sobel垂直/水平边缘增强算子,sobel边缘强度算子,两种 不同半径的圆形滤波器,另外canny边缘检测算子也可以在程序中使用。 4)8位24位bmp图像之间的相互转化。 5
Convolution
- 图像处理中的统一卷积核 能够实现卷积的计算 包含工作站 源码。- image processing convolution. calculation of the convolution. can be achieved include workstations source.
smoothing-using-convolution-kernels-
- 最主要的是采用卷积核来进行图像的低通滤波,进行平滑处理。-Most important is the use of convolution kernels to the image of the low-pass filtering, smoothing.
2-d-convolution
- 二维卷积,结合数字图像处理中的卷积核思想理解-2 d convolution.With digital image processing of convolution nuclear thought understanding
Linear_and_Nonlinear_Diffusions
- Jd=diffusion(J,method,N,K) J :待扩散的原图像 method : lin : 线性扩散 (常数 c=1). pm1 : perona-malik, c=exp{-(|grad(J)|/K)^2} pm2 : perona-malik, c=1/{1+(|grad(J)|/K)^2} rmp : 复数 K :边缘门限参数 N :迭代次数 dt:时间步长 (0 < dt <= 0.25, 缺省值为0.2)
blur_mtrx1
- 输入卷积核h和信号长度N,生成卷积矩阵H conv(h,x, full ) == blur_mtrx1(h,length(x), full )*x 支持‘full’‘valid’和‘circular -generate the blur matrix
sam
- 在通常情况下,形态学图像处理以在图像中移动一个结构元素并进行一种类似于卷积操作的方式进行。像卷积核一样,结构元素可以具有任意的大小,也可以包含任意的0与1的组合。在每个象素位置,结构元素与在它下面的二值图像之间进行一种特定的逻辑运算。 -Under normal circumstances, the morphological image processing to a structure element is moved in the image, and a similar convo
Gabor
- 本算法可以在不同方向和不同尺度上对图像进行分析,利用高斯核函数对图像进行卷积,然后综合各个方向和尺度的数据的最大值,就可以得到理想的结果。该方法对冠脉造影图像中血管的分割效果比较好,无论主血管或是细小血管都比较好。-This algorithm can be analyzed in different directions and on different scales the image using the Gaussian kernel function of the image convo
blinddeconv
- 一个盲去模糊算法,速度很快!用到了l1/l2范数和对卷积核的l1范数,对噪声有抑制作用!-A blind go fuzzy algorithm, the sppeed is very fast! l1/l2 norm and l1 norm are used for compution, the noise was inhibited!
conv2MVMf
- 图像处理 卷积转相乘 模糊核不变 图像数据化大矩阵-Image processing convolution turn multiplied by the blur kernel unchanged image data of large matrix
ch2_ex2_4
- 载入一副图像并进行平滑处理与高斯或其他核函数进行卷积有效的减少图像信息内容-Loading an image and smoothed with a Gaussian or other nuclear convolution function effectively reduce the information content of the image
CODE
- 图像的盲去模糊。在模糊图中框出一块矩形框,作为图像的先验知识,估计模糊核函数后与模糊图像进行反卷积,得到清晰的还原图像。可以直接看到清晰还原效果。-Blind image deblurring. Out of the box in the fuzzy figure a rectangular frame, as an image of a priori knowledge, after estimated blur kernel and blurred image deconvolution t
sobel
- Sobel算子是一阶导数的边缘检测算子,在算法实现过程中,通过3×3模板作为核与图像中的每个像素点做卷积和运算,然后选取合适的阈值以提取边缘。-The Sobel operator is the edge detection operator of the first derivative. During the algorithm realization, the 3 × 3 template is used as the convolution sum of each pixel in t
canny
- canny边缘检测的步骤: 1,生成高斯核,与图像做卷积 2,计算梯度图像 3,非极大值抑制 4,双阈值法和连接边缘(Canny edge detection steps: 1, Generate Gaussian kernel, convolution with the image 2, calculate the gradient image 3, non-maximal inhibition 4, double threshold method and connect th
cvGabor
- 傅里叶变换是一种信号处理中的有力工具,可以帮助我们将图像从空域转换到频域,并提取到空域上不易提取的特征。但是经过傅里叶变换后,图像在不同位置的频度特征往往混合在一起,但是Gabor滤波器却可以抽取空间局部频度特征,是一种有效的纹理检测工具(Fu Liye transform is a powerful tool in signal processing, which helps us transform images from airspace to frequency domain and e
LOG
- 实现在LOG算法下,探讨不同σ对LOG的影响,卷积核(Under the LOG algorithm, we discuss the influence of different Sigma on LOG and convolution kernel.)
Naive CNN 18 multiplication per clock cycle_V3
- 此文件是卷积神经网络中的卷积核的硬件实现代码(CNN:filter/filter3*3 filter4*4 filter5*5 filter6*6)
matlab-blinddeconv
- 盲去卷积,实现图像的高分辨 准确估计模糊核(a novel scale-invariant regularizer that compensates for the attenuation of high frequencies and therefore greatly stabilizes the kernel estimation process.)