资源简介

伯克利图像小组提出来的图像分割评价指标:边界误差。

资源截图

代码片段和文件信息

%A MATLAB Toolbox
%
%Compare two segmentation results using the Boundary Displacement Error
%
%IMPORTANT: The input two images must have the same size!
%
%Authors: John Wright and Allen Y. Yang
%Contact: Allen Y. Yang 
%
%(c) Copyright. University of California Berkeley. 2007.
%
%Notice: The packages should NOT be used for any commercial purposes
%without direct consent of their author(s). The authors are not responsible
%for any potential property loss or damage caused directly or indirectly by the usage of the software.

function [averageError returnStatus] = compare_image_boundary_error(imageLabels1 imageLabels2);

returnStatus = 0;

[imageX imageY] = size(imageLabels1);
if imageX~=size(imageLabels21) | imageY~=size(imageLabels22)
    

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

     文件       4879  2007-03-06 17:02  compare_segmentations.m

     文件       4302  2014-07-24 20:55  image_segmentation_benchmarks.m

     文件       2214  2007-03-06 17:02  compare_image_boundary_error.m

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

                11395                    3


评论

共有 条评论