testharris.m

来自「摄像机标定方法张正友方法中图像坐标的提取。一种全新的方法」· M 代码 · 共 14 行

M
14
字号


im=rgb2gray(imread('D:\Lab\天坛重建\VC程序\TianMatch\Debug\Temp\6.jpg'));

sigma=1.0;% sigma larger, fewer points detected , and less location accuracy
thresh=2000;% thresh larger, fewer points detected in the dim region
radius=15; % radius larger, fewer points detected
disp=1;


%[cim, r, c] = harris(im, sigma, thresh, radius, disp);
[cim] = harris(im, sigma, thresh, radius, disp);

figure;imshow(cim,[])

⌨️ 快捷键说明

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