필터 지우기
필터 지우기

waitfor function not working properly.. need help

조회 수: 5 (최근 30일)
jchris14
jchris14 2016년 8월 16일
댓글: Walter Roberson 2016년 8월 17일
Hi guys,
I used the waitfor function on matlab 2013b and now that i have installed 2015b, this function does not seem to work properly.
Firstplot= plot(thld,numBlackPixels); %plots each thld value and its corresponding black pixel count
grid on
xlabel('threshold')
ylabel('BlackPixels')
zoom on;
waitfor(gcf,'CurrentCharacter',13)
zoom reset
zoom off
[x,y]=ginput; %lets users select the range of values for thresholding
x1=x(1); %first x value chosen
x2=x(2); %second x value chosen
The above line of codes is what i've been using in 2013b and it doesn't work in 2015b.. i get the error
Error using waitfor
Invalid property.
Error in Image_Analysis_For_Porosity_And_Cracks (line 27)
waitfor(gcf,'CurrentFigure',13)
I cant figure it out. Thanks for the help

채택된 답변

Walter Roberson
Walter Roberson 2016년 8월 16일
waitfor(gcf,'CurrentCharacter', char(13))
  댓글 수: 2
jchris14
jchris14 2016년 8월 16일
thank you. That was a silly question but thank you
Walter Roberson
Walter Roberson 2016년 8월 17일
It was not a silly question. I just happened to test on R2016a that had a much clearer error message for this case.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by