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

📄 llegirfitxer_xy.m

📁 phow is the code for extracting pyramid features from image
💻 M
字号:
function featR = llegirFitxer_xy(file)
    fid = fopen(file, 'r');
    dim=fscanf(fid, '%f',1);
    nb=fscanf(fid, '%d',1);
    feat = fscanf(fid, '%f', [12+dim, nb]);
    feat =feat';
    featR = feat(:,1:2);
    fclose(fid);
end

⌨️ 快捷键说明

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