I have two small images.
When I run the code below, my images are displayed in a larger size. I mean images are displayed with fit sub plots. I just want to display my small images original size not fitted size.
figure,subplot(121);imshow(IM1);
subplot(122);imshow(IM2);
I tryed axis image
and truesize
but failed.
Is there any way to do this?