文件名称:数字图像处理 冈萨雷斯 英文版
文件大小:5.89MB
文件格式:PDF
更新时间:2012-05-04 03:26:03
第二章
主要介绍数字图像处理的基本操作 以下是其中一部分程序: function I = isinteger(A) %ISINTEGER Determines which elements of an array are integers. % I = ISINTEGER(A) returns a logical array, I, of the same size % as A, with 1s (TRUE) in the locations corresponding to integers % (i.e., . . . -2 -1 0 1 2 . . . )in A, and 0s (FALSE) elsewhere. % A must be a numeric array.