summaryrefslogtreecommitdiffstats
path: root/SD-VBS/benchmarks/stitch/src/matlab/showInterestPoints.m
blob: 487cae4ff5023523b5f980a4b8753dd573464b17 (plain) (blame)
1
2
3
4
5
6
7
function showInterestPoints(im, x, y)
% show 'em
imagesc(im);
colormap(gray);
hold on;
plot(x,y,'r.');
hold off;