搜索资源列表
yundongmohu
- 程序先用fspecial函数产生运动模糊图像,再用维纳滤波进行恢复
fspecial
- 另一种边缘检测的MATLAB程序 使用了SOBEL LOG等算子
psf
- 运动模糊图像的复原中经常要用到点扩散函数psf,该程序实现求取点扩散函数psf,即实现Matlab中的fspecial函数(求psf),你只要设定好参数length和angle就可以了,调用get_psf()
image resampling
- %This is a simple function that resamples the image %at a different pixel size function nimg = imresample(oldpixsize,img,newpixsize,intmethod) % This function resamples the images at the new grid points % defined by the new pixel sizes. It
2
- 对图像中干扰信号的滤除 H=fspecial( average ,n) 均值滤波器 -Image signal interference filter H=fspecial( average ,n) Mean Filter
dip3
- 用Matlab中的下列函数对输入图像按实验内容进行运算;感受各种不同的图像处理方法对最终图像效果的影响。 imfilter;fspecial;imadjust;imadd;immultiply -With the following Matlab function of the input image by computing the experimental content experience a variety of image processing methods on the
Hw432_MIAP
- Matlab code for image processing. using a guassian filter on the image nad using fspecial function
fspecial
- 建立滤波器 如均值 高斯 中值 维纳 可以设置模板-fspecial
Untitled1
- 通过函数fspecial和函数imfilter的用法使用一个拉普拉斯滤波器来增强一副图像-use function"fdspecial"and "imfilter"
filter
- 滤波:高低通滤波器,空间滤波器,浮雕滤波器,2-D卷积滤波,fspecial函数,加噪处理,-Filter: low pass filter, spatial filter, filter relief ,2-D convolution filter, fspecial function, noise handling,
example03_09
- 使用imfilter和fspecial实现空间滤波-To use imfilter and fspecial spatial filtering
test5
- 图像线性运动退化程序,其中10表示10个像素,45表示偏转45度。 以及函数的一些用法-Linear motion degradation image applications, including 10 said 10 pixels, 45, said rotated 45 degrees. Some fspecial usages and functions
noise
- Various noise formation and fspecial creation for images-Various noise formation and fspecial creation for images...
bradley
- The main function for local thresholding. averagefilter.m A subroutine - a faster version of MATLAB s build-in fspecial( average , [3 3]). bradley.png-The main function for local thresholding. averagefilter.m A subroutine- a faster version o
fspecial
- 对加入椒盐噪声的图像进行均值滤波,里面附带图像,峰值信噪比,信噪比-Add salt and pepper noise on the image mean filter, which is attached to the image, the peak signal to noise ratio, SNR
2
- Untitled1.m和Untitled2.m文件是利用imfilt和fspecial函数对图像作锐化处理。 Untitled3.m是利用edge函数对图像进行锐化处理。- hua.m file is the picture "Untitled1.m and Untitled2.m file using imfilt and fspecial functions for image sharpening. Untitled3.m is the use of edge function
lagra--image-restoration
- 通过拉格朗日算子进行图像复原,通过函数fspecial()创建点扩散函数-Image restoration by Lagrangian, create a point spread function by function fspecial ()
t_12
- 1、图像中值滤波实验 ①用imnoise函数在图像’lena.bmp’中值添加椒盐噪声,观测结果 ②用medfilt2函数对含噪声图像中值滤波。 2、使用fspecial函数生成均值、Prewitt、Sobel、Laplacian滤波模板,再用filter2函数对‘cameraman.tif’图像进行空域滤波,显示滤波结果。 3、设计高斯低通和高通频域滤波器,对‘phantom.bmp’图像进行频域滤波,显示滤波结果。然后改变滤波器截止频率,观察对结果的影响。 4、用i
fspecial
- matlab中fspecial函数的C++实现-Matlab implementation of fspecial function in C++
常用图像去模糊算法分析与对比
- 【编程实现】 I = checkerboard(8); subplot(221); imshow(I); title('Original Image (courtesy of MIT)'); % 模拟运动模糊. LEN = 21; THETA = 11; PSF = fspecial('motion', LEN, THETA); blurred = imfilter(I, PSF, '