Getting points with ginput from image and plotting simultaneously each selected point

I am trying to select an unlimited number of points from an image ([x,y] = ginput), and each time I select a point I want to plot it, so I can have a real time reference of each point I get.
I have tried with this code, but I don't get it to work.
Here is the code I use:
I = imread('cameraman.tif'); % example
imshow(I);
axis on;
button = 1;
i = 1;
n = 1;
while button(i) == 1
[x,y, button] = ginput(1)
x_n(n) = x(i); % save all points you continue getting
x_n(n) = y(i);
hold on
plot(x(i),y(i),'r')
drawnow
n=n+1;
end
I have read some answers where they use for loops with a limited number of points to be selected, but I must have an unlimited number of points, that's why I use as loop condition the pressed button.
Thank you for any help in advance.

댓글 수: 2

When the user finally clicks a button other than 1, do you want to plot the final point, or do you want to consider that to immediately terminate without entering the point the user is at?
Each time the user clicks the button with value 1 it means the user selected a new point, so it must plot the point before the user continues selecting more points.
When the user clicks a button different to 1, this means the user has finished, so the while loop breaks.

댓글을 달려면 로그인하십시오.

 채택된 답변

Walter Roberson
Walter Roberson 2018년 6월 3일
편집: Walter Roberson 2019년 11월 16일
n = 0;
while true
[x, y, button] = ginput(1);
if isempty(x) || button(1) == 1; break; end
n = n+1;
x_n(n) = x(1); % save all points you continue getting
y_n(n) = y(1);
hold on
plot(x(1), y(1), 'r')
drawnow
end

댓글 수: 7

Hello Walter, thanks for answering,
I have tried your code with an image and it doesn't seem to work. After the first click ginput stops and does not admit more points, also this first point clicked does not plot.
n = 0;
while true
[x, y, button] = ginput(1);
if isempty(x) || button(1) ~= 1; break; end
n = n+1;
x_n(n) = x(1); % save all points you continue getting
x_n(n) = y(1);
hold on
plot(x(1), y(1), 'r')
drawnow
end
Thank you for your help, works perfectly.
Thanks for this code, works perfectly, after 50+ datatips caused a graphics crash.
I've just manually entered 390 points and then spotted the typo.
x_n(n) = x(1); % save all points you continue getting
y_n(n) = y(1);
Tim K, you are right, I did have a typo.
LO
LO 2020년 7월 1일
편집: LO 2020년 7월 1일
is the typo the index for x and y = 1 ?
would x and y alone be Ok ? it seems to work but haven't tested large numbers
I think the typo got corrected already ? I do not remember now.
The index for x and y should be 1, since you ginput(1) .

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Graphics Performance에 대해 자세히 알아보기

질문:

2018년 6월 3일

댓글:

2020년 7월 1일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by