⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dirimg.m

📁 一个指纹识别的MATLAB程序!!!推荐~
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -