📄 dirimg.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 + -