plotimg.m
来自「指纹识别的一个小例子」· M 代码 · 共 18 行
M
18 行
function plotimg(f, g, rowshft, colshft)
figure(1);subplot(3,1,1);imagesc(f)axis('square')colormap(gray)subplot(3,1,2);imagesc(g)axis('square')colormap(gray)subplot(3,1,3);plot(colshft, rowshft, 'x');sze = size(f);
axis([0 sze(1) 0 sze(2)]);
axis('square')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?