i use
axes(handles.axes1); hold on for a=1:n; for ii=1:4 [xi,yi] = ginput(1); plot(xi,yi,'ro') xx(ii)=xi; yy(ii)=yi; end plot(xx,yy,'k'); plot([xx(1) xx(end)],[yy(1) yy(end)],'k'); fill(xx,yy,'r') end
code but i obtain pixels dimention but i want to get which latitude and longitude in picture.
by the way i try tu use input m but there is error it says " Error using gcm (line 26) Not a map axes.
Error in inputm (line 45) gcm(hndl);
Error in goruntu_isleme_arayuz>pushbutton7_Callback (line 145) [c,v]=inputm(4)"
thans for helping

 채택된 답변

matt dash
matt dash 2014년 12월 8일

1 개 추천

inputm is only for use with a "map axes" which is created using axesm. It sounds like you are not creating an actual map, just a regular axes which you interpret as having latitude and longitude coordinates. In this case you have to do the conversion from data units to latitude/longitude yourself.

댓글 수: 1

Yunus
Yunus 2014년 12월 8일
Mr. matt dash could you write simple code please because i tried select axes but i failed.by the way thank you.

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

추가 답변 (0개)

질문:

2014년 12월 8일

댓글:

2014년 12월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by