资源简介
基于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
- 上一篇:SP37烧录工具
- 下一篇:Windows XP 自带的放大镜程序
相关资源
- 车牌的字符分割和字符识别的研究与
- 基于交叉熵阈值法的快速迭代算法
- PSO算法的最大熵阈值图像分割
- PCB四层板设计详细教程
- 几种图像分割算法在CT 图像分割上的
- 三种方法实现图像的分割含程序源码
- mean shift segmentation
- 图像分割+GUI
- 实现图像分割的grabcut代码
- 图像分割的源代码资源
- KML文件智能分割提取20171208重新整理
- Brats2017数据集
- 基于resnet+unet的皮肤病变分割
- 点云分割基于特征边界提取
- 肤色分割数据集
- 三维Otsu图像分割算法
- 基于熵率的超像素分割代码
- ESP2 最优分割尺度评价工具
- U-Net:用于生物医学图像分割的卷积网
- cronolog-1.6.1-win32日志分割工具
- 改进的细菌觅食优化算法用于双阈值
- 分水岭分割算法程序
- Normalized Cut图像分割
- TXTkiller文本分割工具TXT杀手
- 图像分割算法研究综述
- 3.25 基于脉冲耦合神经网络的图像分割
- GrabCut-opencv源码注释
- 基于PSO优化的otsu分割算法.zip
- Wav文件截取
- csv大文件分割工具 超好用
评论
共有 条评论