资源简介

Graphcut算法的源码,用于图像处理领域的图像分割,该算法的matlab代码实现。

资源截图

代码片段和文件信息

function [FDist FInd] = ClustDistMembership(MeanColors FCClusters FCovs FWeights)
% CLUSTDISTMEMBERSHIP - Calcuates FG and BG Distances
% Authors - Mohit Gupta Krishnan Ramnath
% Affiliation - Robotics Institute CMU Pittsburgh
% 2006-05-15

NumFClusters = size(FCClusters2);
numULabels = size(MeanColors1);

FDist = zeros(numULabels1);
FInd = zeros(numULabels1);

Ftmp = zeros(numULabels NumFClusters);

for k = 1:NumFClusters
    M = FCClusters(:k);
    CovM = FCovs(::k);
    W = FWeights(1k);

    V = MeanColors - repmat(M‘numULabels1);
    Ftmp(:k) = -log((W / sqrt(det(CovM))) * exp(-( sum( ((V * inv(CovM)) .* V)2) /2)));

end

[FDist FInd] = min(Ftmp[]2); %  列向量

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

     文件      14299  2009-02-03 13:50  graph cut\GraphCut.m

     文件      75264  2010-05-07 21:24  graph cut\GraphCutConstr.mexw32

     文件      77312  2010-05-07 21:24  graph cut\GraphCutMex.mexw32

     文件      35328  2011-05-04 15:48  graph cut\GraphCutSegment.mexw32

     文件      25226  2009-06-14 09:16  graph cut\1.jpg

     文件      29617  2011-07-02 19:35  graph cut\clear.jpg

     文件        720  2011-06-17 11:02  graph cut\ClustDistMembership.m

     文件       4030  2011-12-27 19:00  graph cut\graphcut1.m

     文件       4221  2011-12-27 18:51  graph cut\graphcut1.asv

     文件        342  2011-12-27 19:05  graph cut\main.m

     文件         58  2012-02-18 21:32  graph cut\Read Me.txt

     目录          0  2011-12-27 17:20  graph cut

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

               266417                    12


评论

共有 条评论