我在初始化中有以下代码
im = imread('Image02.tif');
figure(); imagesc(im); colormap(gray);
[hImage hfig ha] = imhandles(gcf);
set(hImage,'ButtonDownFcn',@clickInImage);
clickInImage 函数看起来像这样
function clickInImage(s,e)
pt=get(gca,'Currentpoint');
x=pt(1,1);
y=pt(1,2);
...
我的问题:如何im
在clickInImage
函数中访问图像?我不能使用全局变量。