资源简介

多维OTSU阈值分割方法,能够实现二维图像多阈值分割

资源截图

代码片段和文件信息

function [IDXsep] = otsu(In)

%OTSU Global image thresholding/segmentation using Otsu‘s method.
%   IDX = OTSU(IN) segments the image I into N classes by means of Otsu‘s
%   N-thresholding method. OTSU returns an array IDX containing the cluster
%   indices (from 1 to N) of each point. Zero values are assigned to
%   non-finite (NaN or Inf) pixels.
%
%   IDX = OTSU(I) uses two classes (N=2 default value).
%
%   [IDXsep] = OTSU(...) also returns the value (sep) of the separability
%   criterion within the range [0 1]. Zero is obtained only with data
%   having less than N values whereas one (optimal value) is obtained only
%   with N-valued arrays.
%
%   Notes:
%   -----
%   It should be noticed that the thresholds generally become less credible
%   as the number of 

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

     文件       6055  2010-03-10 10:35  otsu.m

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

                 6523                    3


评论

共有 条评论