Pass variables into set(frt,'W​indowButto​nDownFcn',​@mousePos)

조회 수: 5 (최근 30일)
Raldi
Raldi 2012년 7월 15일
Quick question, how can i pass some other variables that i want in mousePos
function mousePos(hObject,~)
mPos=get(hObject,'CurrentPoint');
finalPos(mPos,data)
The data variable is defined in the main function but i want to use it here too.

채택된 답변

Walter Roberson
Walter Roberson 2012년 7월 15일
편집: Walter Roberson 2012년 7월 15일
set(frt, 'WindowButtonDownFcn', {@mousePos, data} )
and
function mousePos(hObject, ~, data)
Note: this will use the value of "data" as of the time the callback is created, and will not reflect any updates to "data" that are made after that.
  댓글 수: 3
Raldi
Raldi 2012년 7월 15일
Another thing, i was trying to save each rectangle i created so later on i can have acces to the position of the one i want. The code below is not working though.
for i = 1:compnum
id = [num2str(i)];
h.id = imrect(gca, compdata(i,:));
daspect([1,1,1])
end

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

추가 답변 (1개)

Xiangqi
Xiangqi 2013년 8월 27일
To Raldi,
Hi~ Have you found the way to update the value of "data" ?
I encountered the same problem and don't know how to update it.
Thanks for your help in advance.
Huang

제품

Community Treasure Hunt

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

Start Hunting!

Translated by