⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 segment_leaves_manuela.m

📁 matlab aamtool box
💻 M
字号:
%
%
% [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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -