Hi!
I have been trying to use imresize and show it using imshow. The problem is that the window size(in which it is being shown on) remains the same although the image gets resized using imresize command ( array values indicates this.) I have to manually resize the window to see the complete image using mouse . Is there any solution for this problem?
Here is the code that I am using:
x = imread('rice.png');
y = imresize( x, 2);
imshow(x),figure, imshow(y)
Regards
Ahsan Ali Shahid