segment_leaves_manuela.m

来自「matlab aamtool box」· M 代码 · 共 37 行

M
37
字号
%
%
% [B, sorted_edge] = SegLeafFromBackground(I);
%
% Input params: 
%            I - the input image
% Output params:
%            B - the binary image
%            sorted_edge - the edge of the objects in B, ordered.
%
%  Dr. A. I. Hanna 2005.
function [B, sorted_edge] = Segment_Leaves_Manuela(I)
I = double(I);
I = I./max(I(:));
B = calcLeavesManuela(I);
E = edge(double(B));
[x, y] = find(E == 1);
if length(x)>0
    sorted_edge = image_sort(x,y); 
    %sorted_edge = sort_coord_pixel([x, y], 'clockwise', 'discontinuous');
else
    sorted_edge = E;
end
return;
%%%
%
%%%
function [binim] = calcLeavesManuela(im);
p = 1 - im(:,:,3);
binim = p>.5;
binim = imdilate(binim, strel('disk', 3));
binim = bwareaopen(binim, 2000);
binim = imclearborder(binim);
binim = bwfill(binim,'holes', 4);
return;

⌨️ 快捷键说明

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