detect_blobs.m

来自「it runs for blob detection with opencv」· M 代码 · 共 21 行

M
21
字号
%function [mvec,pvec,[Limg]]=detect_blobs(Img[,Imc],dmax,cmin,amin,lowsc)%% Detect blob features in image IMG%% IMG    Input image% IMC    Certainty mask (optional)% DMAX   Maximum intensity distance for grouping% CMIN   Area fraction threshold for pyramid% AMIN   Required min area (default 0)% LOWSC  Lowest scale to detect blobs in (default 2)%        Set to 1 to find more small regions.%% MVEC   Moment vector list (6xN)% PVEC   Property (colour) vector list (DxN)% LIMG   Label image%% NOTE: DETECT_BLOBS is a MEX function, and thus needs%       to be compiled for your platform.%%Per-Erik Forssen, April 2004

⌨️ 快捷键说明

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