资源简介
这是matlabe编写的对于分割的兄的姐妹很管用的,我想要共享就要拿出来一些生猛的东西,所以一下子整出来这个了。因为这个从朋友那里拿来的,所以尊重原作者,主要是交流和学习不要用于商业啊!这个程序对应的文章是Geodesic active contours。
% This Matlab program inplements geodesic active contour model.
% Copyright (c) 2004--2007 by Chunming Li
% Author: Chunming Li
% email: li_chunming@hotmail.com
感谢原作者的大功无私,这里我把他的信息发出来了,也是向作者表示致敬!具体分割结果要看选择的图片的分割对象,还有要看懂这个要有一定的偏微分方程的基础
代码片段和文件信息
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) 2004--2007 by Chunming Li
% Author: Chunming Li
% email: li_chunming@hotmail.com
% http://vuiis.vanderbilt.edu/~licm/
[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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 566 2006-04-25 15:04 GeodesicActiveContour\Dx_backward.m
文件 578 2006-04-25 15:04 GeodesicActiveContour\Dx_forward.m
文件 561 2006-04-25 15:04 GeodesicActiveContour\Dy_backward.m
文件 568 2006-04-25 15:04 GeodesicActiveContour\Dy_forward.m
文件 2717 2006-04-25 15:06 GeodesicActiveContour\EVOLUTION_GAC.m
文件 1670 2009-11-12 13:52 GeodesicActiveContour\GAC_demo.m
文件 494 2006-04-25 15:02 GeodesicActiveContour\gradientNorm_upwind.m
文件 8134 2004-07-05 19:59 GeodesicActiveContour\noisyImg.bmp
文件 5304 2006-04-25 14:35 GeodesicActiveContour\reinit_SD_ENO2.m
文件 120 2006-03-23 00:05 GeodesicActiveContour\sdf2circle.m
文件 1162 2008-04-02 11:29 GeodesicActiveContour\灰度不均.jpg
文件 669715 2006-11-29 11:08 GeodesicActiveContour\Geodesic active contours.pdf
文件 1670 2009-11-05 15:54 GeodesicActiveContour\GAC_demo.asv
目录 0 2009-06-25 13:56 GeodesicActiveContour
----------- --------- ---------- ----- ----
693259 14
相关资源
- 曲面加工-微分几何-matlab代码
- GAC算法matlab实现
- VggCameraCalib 牛津大学的多视图几何三
- Shearlet_transform 基于多尺度几何分析的
- imageCorrectForm 建立几何畸变模型
- allfns 是由牛津大学VGG开发的三维重建
- tezheng 本人找到的非常好的几何特征提
- LBF “Implicit Active Contours Driven by Loca
- LCV “An efficientlocalChan–Vesemodelforima
- GCBAC 基于活动轮廓模型的图割算法
- fractal-geometryMATLAB 利用制作分形几何图
- image1 利用多项式纠正(一次项)进行
- Radon变换图像几何校正(Matlab)
评论
共有 条评论