unknown image format on axes in MATLAB -
i'm working on cbir, in gui i've 6 axes 1 query image 5 resulted images. displaying images on axes code
function displayresults(filename,hobject, eventdata, handles) % open 'filename' file... reading... fid = fopen(filename); n=6:1:10 imagename = fgetl(fid); if ~ischar(imagename), break, end % meaning: end of file... x=imread(imagename); axes(handles.(sprintf('axes%d', n))); imshow(x) xlabel(imagename); end fclose(fid); and calling function in pushbutton function texture_callback(hobject, eventdata, handles). calling function displayresults('textureresults.txt',hobject, eventdata, handles);
this output window before
 after pressing pushbutton
 what happened image quality?
Comments
Post a Comment