Image resizing and saving using imwrite
Ältere Kommentare anzeigen
hi...i need to resize the images to 512x512 and then save the image....m using imwrite to save but it saving it as blank images...my code is as below...plz help asap..
a=imread('1.jpg');
b=double(a)+1; %converting uint to double
c=imresize(b, [512 512]);
imwrite(c,'1f.jpg');
figure,imshow(a,[]);
figure,imshow(c,[]);
2 Kommentare
Jan
am 14 Apr. 2014
@Horia: setting a flag is though to inform the admins about a question which conflicts with the terms of conditions. So please remove this flag and post a new question instead. Thanks.
Image Analyst
am 14 Apr. 2014
I moved it.
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 27 Apr. 2012
0 Stimmen
Don't convert to double. jpg images expect uint8 values.
3 Kommentare
kunal bhandari
am 27 Apr. 2012
kunal bhandari
am 27 Apr. 2012
Image Analyst
am 27 Apr. 2012
If you want to save double images and will use them only in MATLAB, then I recommend saving them as a .mat file. If you want a visualization so that you can see them in other programs, like a jpg file, then use 255 * mat2gray() to scale to 0-255 before saving in a standard format like BMP, TIF, PNG, JPG, etc.
Kategorien
Mehr zu Read, Write, and Modify Image finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!