Reputation: 11
how can reduce the resolution of scan image
Upvotes: 1
Views: 2590
Reputation: 2223
If you intend to resize an image, simply use the Matlab Image Toolbox.
There is a function for this purpose called imresize
B = imresize(A, scale)
Upvotes: 5
Reputation: 78324
You could:
Upvotes: 4