matlab获取图像的轮廓

输入一个二值图像,输出图像的轮廓。

function [bmap] = seg2bmap(seg,width,height)
% [bmap] = seg2bmap(seg)
%
% From a segmentation, compute a binary boundary map with 1 pixel wide
% boundaries.  The boundary pixels are offset by 1/2 pixel towards the
% origin from the actual segment boundary.
%
% INPUTS
%   seg     Segments labeled from 1..k.
%   [width]     Width of desired bmap, <= size(seg,2)
%   [height]    Height of desired bmap, <= size(seg,1)
%
% OUTPUTS
%   bmap        Binary boundary map.
%
% David Martin 
% January 2003

if nargin<3,
  [height,width] = size(seg);
end
[h,w] = size(seg);

% check width and height
ar1 = width / height;
ar2 = w / h;
if width>w | height>h | abs(ar1-ar2)>0.01,
  error(sprintf('Can''t convert %dx%d seg to %dx%d bmap.',w,h,width,height));
end

e = zeros(size(seg));
s = zeros(size(seg));
se = zeros(size(seg));

e(:,1:end-1) = seg(:,2:end);
s(1:end-1,:) = seg(2:end,:);
se(1:end-1,1:end-1) = seg(2:end,2:end);

b = (seg~=e | seg~=s | seg~=se);
b(end,:) = (seg(end,:)~=e(end,:));
b(:,end) = (seg(:,end)~=s(:,end));
b(end,end) = 0;

if w==width & h==height,

  bmap = b;

else

  bmap = zeros(height,width);
  for x = 1:w,
    for y = 1:h,
      if b(y,x),
        j = 1+floor((y-1)*height/h);
        i = 1+floor((x-1)*width/w);
        bmap(j,i) = 1;
      end
    end
  end

end

调用示例:

fg_boundary = seg2bmap(foreground_mask);

输入:
matlab获取图像的轮廓_第1张图片
输出:
matlab获取图像的轮廓_第2张图片

你可能感兴趣的:(编程总结)