what happened to the folowing code?

조회 수: 1 (최근 30일)
romasha
romasha 2014년 2월 10일
댓글: romasha 2014년 2월 11일
when i launch following code it displays axes instead of Text.. kindly sort this out
%MATCHING(HAMMING DISTANCE)
storedStructure = load('FeaExt.mat');
template = storedStructure.template;
storedStructure = load('vari.mat');
No_of_images = storedStructure.No_of_images;
for fr=1:No_of_images-1
filename2 = sprintf('FeatureExtrctd_image%d.bmp', fr);
recoverimg=imread(filename2);
hd = gethammingdistance(template, recoverimg, 2);
hd = round(hd*(10 ^ 2))/(10 ^ 2);
if(hd>=0 && hd<=0.4)
text(-1500+fr,300,sprintf('Iris recognition SUCCESSFUL –---You may proceed'));
% xlswrite(path, {hd 'Success'}, 1, sprintf('G%d', b-1));
else
text(-1400+fr,300,sprintf('ERROR: Iris recognition FAILD'));
% xlswrite(path, {hd 'Failure'}, 1, sprintf('G%d', b-1));
end
end
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2014년 2월 10일
When this happen? what line?
romasha
romasha 2014년 2월 10일
when i run the code and i want text line to be written but GUI shows an axes

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

채택된 답변

Walter Roberson
Walter Roberson 2014년 2월 10일
text() always has to appear within an axes. You can set the borders of the axes to not display by using
axes off
but that will not cause it to not be visible.
If you want text outside of any axes, then you need to use uicontrol('style', 'text')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by