资源简介
通过水平集能量函数,利用变分法求得梯度最小,基于水平集来实现图像分割。此代码为matlab代码,仅供参考。
代码片段和文件信息
function [bdybdx]=backward_gradient(f);
% function [bdxbdy]=backward_gradient(f);
%
% created on 04/26/2004
% author: Chunming Li
% email: li_chunming@hotmail.com
% Copyright (c) 2004-2006 by Chunming Li
[nrnc]=size(f);
bdx=zeros(nrnc);
bdy=zeros(nrnc);
bdx(2:nr:)=f(2:nr:)-f(1:nr-1:);
bdy(:2:nc)=f(:2:nc)-f(:1:nc-1);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 351 2005-10-08 14:15 code\backward_gradient.m
文件 371 2003-12-22 19:36 code\BoundMirrorEnsure.m
文件 307 2003-12-22 19:36 code\BoundMirrorExpand.m
文件 90 2003-12-22 19:36 code\BoundMirrorShrink.m
文件 360 2018-11-13 21:24 code\curvature.m
文件 355 2018-11-13 21:28 code\Delta.m
文件 93 2018-11-13 21:20 code\div.m
文件 225 2018-11-13 20:08 code\edge_detector_g.m
文件 1413 2018-11-14 00:15 code\evolution.m
文件 367 2005-10-08 14:15 code\forward_gradient.m
文件 337 2005-10-08 14:18 code\plotLevelSet.m
文件 588 2005-10-08 14:28 code\sdf2circle.m
文件 160 2018-11-13 22:23 code\sec_der.m
文件 198 2018-11-13 23:33 code\Sec_energy_div.m
文件 1171 2018-11-14 00:15 code\Test_demo.m
文件 11766 2004-06-09 12:07 code\three.bmp
文件 16434 2004-07-23 20:36 code\twocells.bmp
文件 14286 2005-07-25 15:45 code\vessel.bmp
目录 0 2018-11-14 00:19 code
----------- --------- ---------- ----- ----
48872 19
- 上一篇:布拉格光栅MATLAB反射谱仿真
- 下一篇:盲反卷积算法复原图像
评论
共有 条评论