measure checkerboard features

clear
close all
load filelist
% The pause gives you time to zoom-in on the target
% if necessary. Press the Enter key to end the pause.
for n = 1:14
    rgb = imread(files{n});
    imshow(rgb);
    pause();
    pts = ginput(4);
    data(:,:,n) = pts;
end
save imgdata data