binaryfit.m

来自「水平集分割算法的C-V模型」· M 代码 · 共 22 行

M
22
字号
function [C1,C2]= binaryfit(phi,U,epsilon) 
%   [C1,C2]= binaryfit(phi,U,epsilon) computes c1 c2 for optimal binary fitting 
%   input: 
%         U: 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

H = Heaviside(phi,epsilon); %compute the Heaveside function values 

a= H.*U;
numer_1=sum(a(:)); 
denom_1=sum(H(:));
C1 = numer_1/denom_1;

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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?