• 大小: 2KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: Matlab
  • 标签: matlab  

资源简介

LCE OCE GCEmatlab代码用于图像分割精度评价

资源截图

代码片段和文件信息

function gce = global_consistancy_error(n)
M = sum(sum(n));
Value_1 = sum(n2);  %对每一行求和,得到一个列向量(Nx1)
% 如Value_1 = 
[11421193442627995148134197181230230257250270340293354372;]
% 意思为:原始图像中,灰度值为1的有1个像元,为2的有14个,其余依此类推。

Value_2 = sum(n1);  %对每一列求和,得到一个行向量(1xN)
% 如Value_2 = 
[11421193442627995148134197181230230257250270340293354372;]
% 意思为:分割图像中,灰度值为1的有1个像元,为2的有14个,其余依此类推。

% the hackery is to protect against cases where some of the Values are
% zero (should never happen but seems to...)
gce1 = 1 - sum( sum(n.*n2) ./ (Value_1 + (Value_1 == 0)) ) /M;
gce2 = 1 - sum( sum(n.*n1) ./ (Value_2 + (Value_2 == 0)) ) / M;
gce = min( gce1 gce2 );

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

     文件        800  2015-10-29 21:39  global_consistancy_error.m

     文件        819  2015-10-29 21:39  local_consistancy_error.m

     文件        988  2015-10-29 21:40  object_level_consistancy_Jaccard_error.m

     文件        894  2015-10-29 22:31  test.m

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

                 3501                    4


评论

共有 条评论