How to remove axis in MATLAB
Date: 2022-12-20 14:27:09
axis off
Not working.
function displayResults(filename,hObject, eventdata, handles) % Open 'filename' file... for reading... fid = fopen(filename); for N=6:1:10 imagename = fgetl(fid); if ~ischar(imagename), break, end % Meaning: End of File... [x,map]=imread(imagename); rgb=ind2rgb(x,map); ax = handles.(sprintf('axes%d', N)); axis off; image(rgb, 'Parent', ax); end guidata(hObject,handles)
Above code results in following output:
I've highlighted axis in above figure. All images I've used is bitmap with bit depth of 8. I don't want those axis, how can I remove that?