what happened to the folowing code?
1 次查看(过去 30 天)
显示 更早的评论
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
采纳的回答
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 Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!