ffisbw.m
上传用户:changqing
上传日期:2013-01-11
资源大小:2384k
文件大小:1k
源码类别:

图形图像处理

开发平台:

Matlab

  1. function y = ffisbw(x)
  2. %ISBW Return true for binary image.
  3. %   FLAG = ISBW(A) returns 1 if A is a binary image and 0
  4. %   otherwise.
  5. %
  6. %   A is considered to be a binary image if it is a nonsparse 
  7. %   logical array.
  8. %
  9. %   Class Support
  10. %   -------------
  11. %   A can be any MATLAB array.
  12. %
  13. %   See also ISIND, ISGRAY, ISRGB.
  14. %   Copyright 1993-2003 The MathWorks, Inc.  
  15. %   $Revision: 5.22.4.2 $  $Date: 2004/08/10 01:40:44 $
  16. iptchecknargin(1,1,nargin,mfilename);
  17. y = islogical(x) & ~issparse(x);