dirimg.m

来自「指纹预处理程序」· M 代码 · 共 24 行

M
24
字号
function y = dirImg(f)

sze = size(f);
sze = sze(1);

for k = 1:sze
   for j = 1:sze
      f9 = extract(f, k, j, 9, 9);
      if k == 64
         if j == 64
            useless = 0;
         end
      end
      
      [thisSlit, thisVect, thisAngle] = slitSum(f9);
      tempSlit(k,j) = thisSlit;
      tempVect(k,j,:) = thisVect;
      tempAngle(k,j) = thisAngle;
   end
end


y = tempVect;      

⌨️ 快捷键说明

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