• 大小: 17KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-05
  • 语言: 其他
  • 标签: 水平集  分割  

资源简介

基于Mumford-Shah模型的水平集图像分割算法,能够很好的检测出物体内部的空洞并且收敛迅速

资源截图

代码片段和文件信息

function [C1C2]= binaryfit(ImgH_phi) 
%   [C1C2]= binaryfit(phiUepsilon) computes c1 c2 for optimal binary fitting 
%   input: 
%       Img: input image
%       phi: level set function
%       epsilon: parameter for computing smooth Heaviside and dirac function
%   output: 
%       C1: a constant to fit the image U in the region phi>0
%       C2: a constant to fit the image U in the region phi<0
%  
%   Author: Chunming Li all right reserved
%   email: li_chunming@hotmail.com
%   URL:   http://www.engr.uconn.edu/~cmli/research/

a= H_phi.*Img;
numer_1=sum(a(:)); 
denom_1=sum(H_phi(:));
C1 = numer_1/denom_1;

b=(1-H_phi).*Img;
numer_2=sum(b(:));
c=1-H_phi;
denom_2=sum(c(:));
C2 = numer_2/denom_2;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        735  2007-08-18 08:33  CV1\binaryfit.m

     文件       1631  2007-08-18 08:29  CV1\CURVATURE.m

     文件       1151  2008-02-04 14:40  CV1\Demo_CV.m

     文件       1615  2008-02-04 14:32  CV1\EVOL_CV.m

     文件        588  2005-10-08 14:28  CV1\sdf2circle.m

     文件      11766  2004-06-09 12:07  CV1\three.bmp

     文件      16434  2004-07-23 20:36  CV1\twocells.bmp

     文件      14702  2007-08-16 17:03  CV1\vessel3.bmp

     目录          0  2008-02-04 14:40  CV1

----------- ---------  ---------- -----  ----

                48622                    9


评论

共有 条评论