problem in image resizing

13 views (last 30 days)
Shashank Rao
Shashank Rao on 18 May 2013
i used following codes for resize an image to user deffined memory size. but while saving that image using imwrite the size of saved image is not exact given size. size is less than given size. for 100KB it gives 75.5KB. but when i checked using whos functio the bytes are exact to required size... plz help me any one.. ----------------------------------------------------------------------- %Program to rescale an image%
close all;
X=imread('cameraman.tif'); %--------------------------- -load an image%
disp('enter the required memory size'); %----------------instruction%
disp('if memory size is 100KB, then just enter 100');%---instruction%
K=input('output image size=');%--------------------------resultant image size%
s = K*(1024); %------------------------------------------convert entred integer into memory size%
M = sqrt(s);%--------------------------------------------calculate the required no. of row and coloumn%
Y = imresize(X, [M,M],'bilinear'); %---------------------rescaling using bilinear transform%
figure()
imshow(X);
title('original image');
figure(); %----------------------------------------------display the images%
imshow(Y);
title('rescaled image');
imwrite(Y,'hny.gif'); % ---------------------------------save image into computer%
whos Y; %----------------------------------------------calculates the image size in bytes, and no. of rows and coloumns%

Accepted Answer

Jurgen
Jurgen on 18 May 2013
Have you tried .bmp? I think that does not use compression. It should be slightly greater than 100KB due to the header.
  2 Comments
Shashank Rao
Shashank Rao on 18 May 2013
sir i have tried that... but i was saving as 4bit image insted of 8bit... so i thinnk .bmp image was about 48KB
Jurgen
Jurgen on 18 May 2013
I just tested your code with 100KB .bmp, file is 101KB in windows explorer. I dont know what u mean with saving it as 4bit image.

Sign in to comment.

More Answers (2)

Jan
Jan on 18 May 2013
Did you see how ugly your code looks like? It would be attract more readers if you use the standard formatting methods of this forum.
You save the image as GIF. Then it is expected and wanted, that the size differs from the data size:
  1. The image file needs additional information like a header about the type of the file format and meta data, a color map etc.
  2. The data itself are compressed to save disk space.
  2 Comments
Shashank Rao
Shashank Rao on 18 May 2013
sorry.... i am a beginer in this field. i tried with many other farmat also like jpg, png,tig etc. there also i am facing same problem
Image Analyst
Image Analyst on 18 May 2013
Jan is correct. You are calling this a "problem" and that is not correct. It is NOT a problem. It is the expected behavior and you should appreciate it, not try to avoid it. I'd recommend you use PNG format - it's fast becoming the new standard for simple images. It uses lossless compression and every software package now supports it. I have heard that even though the CPU compresses it, it's faster to do that than to not compress it because the disk I/O is slower than the CPU compression time. So, bottom line, if I were you, I'd just save with PNG format and mark Jan's answer as "Accepted."

Sign in to comment.


fewf
fewf on 12 Jul 2013
Edited: fewf on 12 Jul 2013
here are some image resizer codes in vb.net for you. it is much simpler. besides for the image formats i high recommend tiff. it is a less lossy compression image formats.

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!