资源简介

冈萨雷斯数字图像处理第二版中的tofloat函数,原书配带的函数式p文件,此处已经转为M文件。

资源截图

代码片段和文件信息

function [outrevertclass]=tofloat(in)
%TOFLOAT Convert imge to floating point
identity=@(x)x;
tosingle=@im2single;
table={‘uint8‘tosingle@im2uint8
    ‘uint16‘tosingle@im2uint16
    ‘int16‘tosingle@im2int16
    ‘logical‘tosingle@logical
    ‘double‘identityidentity
    ‘single‘identityidentity};
classIndex=find(strcmp(class(in)table(:1)));
if isempty(classIndex)
    error(‘unsupported input image class.‘);
end
out=table{classIndex2}(in);
revertclass=table{classIndex3};

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         507  2013-07-17 12:11  tofloat.m
     文件         507  2013-07-17 12:11  tofloat2.m

评论

共有 条评论