-
Notifications
You must be signed in to change notification settings - Fork 1
/
readPoints.m
47 lines (46 loc) · 1.16 KB
/
readPoints.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function pts = readPoints(image, n)
%readPoints Read manually-defined points from image
% POINTS = READPOINTS(IMAGE) displays the image in the current figure,
% then records the position of each click of button 1 of the mouse in the
% figure, and stops when another button is clicked. The track of points
% is drawn as it goes along. The result is a 2 x NPOINTS matrix; each
% column is [X; Y] for one point.
%
% POINTS = READPOINTS(IMAGE, N) reads up to N points only.
if nargin < 2
n = Inf;
pts = zeros(2, 0);
else
pts = zeros(2, n);
end
figure()
subplot(1,2,1)
imshow(image); % display image
xold = 0;
yold = 0;
k = 0;
hold on; % and keep it there while we plot
while 1
[xi, yi, but] = ginput(1); % get a point
if ~isequal(but, 1) % stop if not button 1
break
end
k = k + 1;
pts(1,k) = xi;
pts(2,k) = yi;
if xold
plot([xold xi], [yold yi], 'go-'); % draw as we go
else
plot(xi, yi, 'go'); % first point on its own
end
if isequal(k, n)
break
end
xold = xi;
yold = yi;
end
hold off;
if k < size(pts,2)
pts = pts(:, 1:k);
end
end