Using current points instead of ginput to get locations on axes
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi. I am currently using ginput to select two points on an image to then draw a line. The problem is that my image is mainly black with white spots and the cross hairs for ginput are black, so its hard to use.
So after investigating I thought I could use the following
axes(handles.axes4); %my image is on axes4
cp = get(handles.axes4,'CurrentPoint')
x = cp(1,1)
y = cp(1,2)
plot(x,y,'ro'); drawnow;
The point I selected on is the red circle below at coordiantes 244, 605 on that axes. However, the returned values of cp are
cp =
1.0e+03 *
-1.2142 1.3601 5.6639
-1.2142 1.3601 0.0000
What do these cp values correspond to, I thought x = cp(1,1) and y = cp(1,2), but they don't seem to be.
Also is this the best way or is there another way?
Thanks Jason
댓글 수: 0
채택된 답변
Walter Roberson
2017년 10월 3일
cp(2,:) is for the back points, which is more meaningful for 3D.
The values are in axes data units.
"The two points indicate the location of the last mouse click, unless there is a WindowButtonMotionFcn callback defined for the figure. If the WindowButtonMotionFcn callback is defined, then the points indicate the last location of the mouse pointer."
My speculation is that you do not have WindowButtonMotionFcn active and that your last click was to the left of the current mouse position.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!