MATLAB: It is about showing certain x and y axis of image

image processing

My question is about image processing toolbox of MATLAB .. my project is of braille reading demonstration through it .. i wanted to ask how should i show certain x and y axis of image when the user enters the alphabet ?? for example: user enters alphabet "a" then i want to show the x and y coordinates of braille pattern image in which pattern of alphabet "a" are located please help me out ASAP Regards, Ahad Mahmood

Best Answer

After you call imshow, call axis on:
imshow(yourImage, []);
axis on; % Display x and y axes with tickmarks and labels.