0
function [x, y] = get_one_point_from_image(input_image)
% read image
I = im2double(input_image);
handle = subplot(1,1,1);
imshow(I);
% let the user pick one point
[x,y] = ginput(1);
% round to integer to match required input by regiongrowing function
x = round(x);
y = round(y);
close(handle);
end
このルーチンはウィンドウをポップアップします。イメージウィンドウを閉じる
ポイントの選択が完了したら、そのウィンドウを閉じる必要があります。
ただし、このルーチンは機能しません。