📄 h_from_image_corr_ex.m
字号:
% Example on computing H from a set correspondences for planar points (on the% floor) using vgg_H_from_x_lin and displaying result% Note points are read from stored example in vgg_example_scene% Read in all detected interest points and images[view, Xi, X, Li, L] = vgg_example_scene(2);n=1; k=2; % select points for which there are correspondencesi=all(Xi([n k],:)>0); i=find(i);% compute H from points on the floorH=vgg_H_from_x_lin(view(n).x(:,Xi(n,i([406 399 405 133 115 109]))),... view(k).x(:,Xi(k,i([406 399 405 133 115 109]))));% Displayvgg_gui_H(view(n).I, view(k).I, H)disp('Computed homography of the floor. Move the mouse to verify')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -