Borrar filtros
Borrar filtros

Change image after mouse over?

3 visualizaciones (últimos 30 días)
Colin
Colin el 22 de Jul. de 2011
I have a GUI set up at the moment with one component being an axes that is holding an image. What I want is when the user mouses over the axes/image the image changes to something else.
How would I go about doing something like this using the WindowButtonMotionFcn?
First I am not sure how I make this function work with an axes, and second I do not know where to place it with the code.
All the sources I have read do not use it the in the GUIDE GUI .m file, and instead in their own functions.
In the GUIDE GUI .m there doesn't seem to be any place to constantly check to see whether or not a mouse over has occurred.
  1 comentario
Walter Roberson
Walter Roberson el 23 de Jul. de 2011
I am really not fond of having someone delete their previous question after I have answered it -- and all their prior questions too.
I am sitting this one out, as I have no interest in putting even more time in to a solution that will probably just be deleted anyhow.

Iniciar sesión para comentar.

Respuesta aceptada

Chirag Gupta
Chirag Gupta el 22 de Jul. de 2011
You cannot have WindowsButtonMotionFcn for the axes, but you can have it for the figure. Just select the GUI figure, right click-> view Callbacks and choose WindowsButtonMotionFcn. This should create one for you in the MATLAB file.
I had sample code in there as:
function figure1_WindowButtonMotionFcn(hObject, eventdata, handles)
% hObject handle to figure1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[posx, posy ]= get(hObject,'CurrentPoint');
% Write your code to Check to see if the mouse is over the axes
if (checkoveraxes...)
plot(handles.axes1,rand(10)); % Change image, here i'm just plotting
end
  2 comentarios
Colin
Colin el 22 de Jul. de 2011
>% Write your code to Check to see if the mouse is over the axes
>if (checkoveraxes...)
> plot(handles.axes1,rand(10)); % Change image, here i'm just >plotting
>end
Ok so this part is something I write. So far Posx and Poy are tracking where the mouse is... then I would say.. if Posx and Poy are within 'such and such' bounds (AKA where axes is) then do plot (or in my case change figure).
Colin
Colin el 22 de Jul. de 2011
Ok I have this so far
function figure1_WindowButtonMotionFcn(hObject, eventdata, handles)
% hObject handle to figure1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[posx, posy ] = get(hObject,'CurrentPoint');
%Display to check to see if the position is working
posx = num2str(posx);
posy = num2str(posy);
set(handles.Xpos,'String',posx);
set(handles.Tpos,'String',posy);
%If mouse over then update the immage
if (295 > posx > 169 && 122 > posy > 71)
axes(handles.axes1);
imshow('exp.png')
end
But the display isn't even updating

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Performance en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by