How to get starting and ending point of mouse cursor?

2 visualizzazioni (ultimi 30 giorni)
I need to calculate the difference between the initial point and the point where the mouse cursor is while the mouse is moving. What I'm doing now is that I've calculated the rotation matrix, and all I have to do is to click the mouse at one point and move the mouse around.This action will rotate the image, at the same time, while moving the mouse. Only when I let go, the image will stay at the resulted image.
I've done something similar to http://www.mathworks.com/help/techdoc/ref/rbbox.html. But I don't want the 'finalRect=rbbox'
Does anyone know how to remove the rectangle rubberband, and the 2 current point remain the same?

Risposta accettata

Walter Roberson
Walter Roberson il 8 Ago 2012
  1 Commento
Joy
Joy il 8 Ago 2012
Thanks. I've looked through this. But where do I put my rotation calculation? Inside the 'WindowButtonMotionFcn'?
point1 = get(gca,'CurrentPoint'); % button down detected
finalRect = rbbox; % return figure units
point2 = get(gca,'CurrentPoint'); % button up detected
point1 = point1(1,1:2); % extract x and y
point2 = point2(1,1:2);
r=[r(1)+(point2(1)-point1(1)) r(2)+(point2(2)-point1(2)) 0];
This is the code that I've now. Can you help me with the motion fcn? How am i going to substitute the Xdata and the Ydata from my code to the 'WindowButtonMotionFcn' example? Thanks again.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Visual Exploration in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by