资源简介
改进后的非线性各向异性扩散用于图像中的保边去噪,增加了二阶导数,是滤波效果更好
代码片段和文件信息
function y = anidifstep(x a b c)
% ANIDIFSTEP Anisotropic diffusion step
%
% y = ANIDIFSTEP(x a b c) calculates de anisotropic (tensor)
% diffusion step “y“ based on the image “x“ and on the diffusion tensor “D“.
% D = / a b \
% \ b c /
%
% The diffused image is calculated as:
% xd = x + T*anidifstep(xd) T = step size
%
% Translations of a
a_apo = a + roll(a[1 0]);
a_amo = roll(a_apo[-1 0]);
%a_apo = a + roll(a[1 0]);
%a_amo = roll(a_apo[-1 0]);
% Translations of b
bop = roll(b[0 1]);
bom = roll(b[0 -1]);
bpo = roll(b[1 0]);
bmo = roll(b[-1 0]);
% Translations of c
%cop = roll(c[0 1]);
%com = roll(c[0 -1]);
c_cop = c + roll(c[0 1]);
c_com = roll(c_cop[0 -1]);
% Translations of x
xop = roll(x[ 0
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
I.A.... 1407 2001-11-27 22:33 新建文件夹 (2)\anidifstep.m
I.A.... 11313 2010-09-26 09:40 新建文件夹 (2)\cedif.m
文件 1502 2001-12-25 22:36 新建文件夹 (2)\conv2br.m
I.A.... 2437 2002-01-22 23:44 新建文件夹 (2)\grow.m
I.A.... 3549 2010-09-27 20:20 新建文件夹 (2)\gsderiv.m
I.A.... 8593 2010-09-27 21:14 新建文件夹 (2)\imprcedif.m
I.A.... 1157 2002-04-08 08:54 新建文件夹 (2)\isodifstep.m
I.A.... 1770 2010-09-27 21:19 新建文件夹 (2)\newtest.m
I.A.... 58904 2009-09-29 14:08 新建文件夹 (2)\noise.png
I.A.... 1227 2001-12-25 23:50 新建文件夹 (2)\orideriv.m
I.A.... 2119 2002-01-23 19:58 新建文件夹 (2)\roll.m
I.A.... 43117 2009-09-29 14:08 新建文件夹 (2)\sync.png
I..D... 0 2010-09-28 16:13 新建文件夹 (2)
----------- --------- ---------- ----- ----
137095 13
相关资源
- imageCorrectForm 建立几何畸变模型
- MATLAB_image_process_with_PDE 运用偏微分方
- Graph_cut 几篇关于graph cut的论文
- zhifangtujunhanghua 直方图均衡
- imagefusion2836201
- multiimagepocs 对多帧图像进行超分辨率
- image_matching
- ImageSegmentation 多尺度分水岭变换分割
-
Theimagetextureanalyssba
sedonthefractaldime - imagesegmentation 压缩文件里有四种图像
- matlabimagetothefuzzy 本例中主要使用四个
- PDE_in_image_processing (1)MATLAB程序:其
- ImageMatlab Matlab数字图像处理
- CVPR10-LLC \“Locality-constrained Linear Cod
- image-fusion-and-detection-on-curvelet-wavelet
- MRI_image_segmentation
- image_processing 本程序是基于Matlab的米粒
- imagereconstruction 基于小波和插值的超分
- ImageSegament 基于遗传算法的图像分割
- sparse
- LCV “An efficientlocalChan–Vesemodelforima
- NSCT-SF-PCNN-ImageFusion-Toolbox
- image_enhangce_value
- Image-Restoration-with-BPNN 基于BP神经网络
- FCM-vs-ESSC 模糊聚类图像分割
- image-stitching 实验两张图片的拼接
- corner 角点检测的程序
- image-registration
- Image-SNR 可以计算图像的信噪比
- Khan2 数字图像copy-move篡改检测。特征
评论
共有 条评论