필터 지우기
필터 지우기

Code does not work!

조회 수: 2 (최근 30일)
Ali Ibrahim
Ali Ibrahim 2017년 6월 23일
편집: Stephen23 2017년 6월 23일
This code used to work, I tried it now.. it does not work.. i do not know what happened! Can anyone try to help me with that? Manual selection to the photo does not work also !
  댓글 수: 3
Ali Ibrahim
Ali Ibrahim 2017년 6월 23일
Attached the error shown
Stephen23
Stephen23 2017년 6월 23일
편집: Stephen23 2017년 6월 23일
A hard-coded graphics handle is a bad start:
getpts(1)
Why are you not passing the handle of the figure/axes?

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

채택된 답변

Walter Roberson
Walter Roberson 2017년 6월 23일
To expand on Stephen's response: change your code to
function [loc] = get_image_point (I)
fig = figure('name','Doubleclick to set location');
imshow(I);
title('Double click on the center of the ring')
[c r] = getpts(fig);
loc = int32([c r]);
if size(loc)>1
loc = [loc(1,1) loc(1,2)];
end
close(fig);
end
  댓글 수: 2
Ali Ibrahim
Ali Ibrahim 2017년 6월 23일
Perfect.. it worked!
Ali Ibrahim
Ali Ibrahim 2017년 6월 23일
Thanks

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by