在matlab中打开数据光标模式时如何获取点击点的坐标?

时间:2014-03-03 08:19:48

标签: matlab

我正在尝试使用Matlab设计和编程GUI,我并不熟悉。

基本上,我有两个组件,分别是“轴”和“列表框”。轴上有RGB图像。我打算将选定的点添加到列表框中。

以下代码工作正常,但我想在数据光标打开时使其工作。

如何在数据光标打开时使其工作?

% 100x100x3 RGB image
RgbImage = randi(100, 100, 100, 3);

% Draw the image
axesHandle = axes();
imageHande = imagesc(RgbImage);
axis image;

% ButtonDownFc
set(imageHandle, 'ButtonDownFcn', @imageButtonDownFcn);
function imageButtonDownFcn(hObject, eventdata)
    p = get(gca, 'CurrentPoint');
    x = floor( p(1) );
    y = floor( p(2) );

    % Some code to add the [x y] to the list box
end

编辑1: 问题是当数据光标打开时,不会触发函数 imageButtonDownFcn

2 个答案:

答案 0 :(得分:0)

我首先要为数据游标创建一个自己的更新功能

% in your main .m file    
hdt = datacursormode;
set(hdt,'UpdateFcn',{@labeldtips,hdt});

然后你可以像这样获得该职能中的职位:

function output_txt  = labeldtips(obj,event_obj,hdt)
% Display an observation's Y-data and label for a data tip
% obj          Currently not used (empty)
% event_obj    Handle to event object

dcs=hdt.DataCursors;
pos = get(dcs(1),'Position');   %Position of 1st cursor

output_txt{1} = ['X: ', num2str(pos(1))];
output_txt{2} = ['Y: ', num2str(pos(2))]; %this is the text next to the cursor
end

然后您在pos中有位置,您可以再次添加%Some code to add the [x y] to the list box

答案 1 :(得分:0)

尝试使用代码中剩余的部分。请记住将“listbox1”编辑为您案例中用于列表框的标记 -

contents = cellstr(get(handles.listbox1,'String'));
str1 = [ '[' num2str(x) ' ' num2str(y)  ']' ];
contents(size(contents,1)+1,1) = {str1};
set(handles.listbox1,'String',contents);

告诉我们它是否有效!