资源简介
图像分割 用于不同特征的图像 包括医学图像 如细胞图像

代码片段和文件信息
function fx=Dx_backward(f);
% Dx_backward(f) computes backward difference with respect to x (or j the
% idex of column) for coordinate system as below
%
%
% x(j)
% |---------->
% y(i)|
% |
% |
% V
%
% Copyright (c) 2001--2006 by Chunming Li
% Author: Chunming Li 11/02/2003
% Revision by Chunming Li 7/24/2005
[nrnc]=size(f);
fx=zeros(nrnc);
fx(:2:nc)=f(:2:nc)-f(:1:nc-1);
fx(:1)=f(:2)-f(:1); % for the first column use the forward difference as the backward difference
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 543 2006-01-15 14:02 GAC_Matlab\Dx_backward.m
文件 555 2006-01-15 14:01 GAC_Matlab\Dx_forward.m
文件 538 2006-01-15 14:03 GAC_Matlab\Dy_backward.m
文件 545 2006-01-15 13:58 GAC_Matlab\Dy_forward.m
文件 1260 2006-03-23 00:31 GAC_Matlab\EVOLUTION_GAC.m
文件 1589 2006-03-23 00:33 GAC_Matlab\GAC_demo.m
文件 456 2006-03-22 22:40 GAC_Matlab\gradientNorm_upwind.m
文件 8134 2004-07-05 18:59 GAC_Matlab\noisyImg.bmp
文件 3929 2006-03-23 00:29 GAC_Matlab\reinit_SD.m
文件 120 2006-03-22 23:05 GAC_Matlab\sdf2circle.m
..A.SH. 7680 2006-03-16 19:51 GAC_Matlab\Thumbs.db
目录 0 2006-03-23 00:27 GAC_Matlab
----------- --------- ---------- ----- ----
25567 13
相关资源
- 基于OpenCV的数字识别468815
- 带式输送机托辊红外图像分割与定位
- 基于libsvm的图像分割代码
- 基于朴素贝叶斯分类法的图像分割
- 复杂背景与天气条件下的棉花叶片图
- 舌图像分割
- 图像分割方法在遥感图像分析中的应
-
Accurate subpixel edge location ba
sed on pa - 图像分割算法研究区域分割,数学形
- 基于图切算法的交互式图像分割技术
- 纹理图像分割论文+代码
- Dence CRF 条件随机场图像分割
- 图像分割-章毓晋
- Matalb图像分割边缘检测算子比较
- 交互式图像分割——算法与系统
- ITK入门教程_医学图像分割与配准_高清
- Canny算子分割遥感影像
- 分水岭图像分割算法C++程序源代码
- 基于形态学的图像分割 图片版
- CrackForest数据集
- 基于粒子群优算法的最大熵多阈值图
- 医学图像分割与配准(ITK实现 全2册)
- 章毓晋《图像分割》.PDF
- image segmentor source code and release 图像分
- 图像分割算法的实现
- 经典纹理图像分割论文+代码
- 医学图像分割全部代码
- 基于PCNN的彩色图像自动分割毕业论文
- CUDA的图像分割并行算法的设计与实现
- 马尔科夫随机场图像分割ICM代码
评论
共有 条评论