Filter löschen
Filter löschen

Why is imwrite images has small size?

3 Ansichten (letzte 30 Tage)
Irfan Tahir
Irfan Tahir am 22 Feb. 2017
Kommentiert: Irfan Tahir am 22 Feb. 2017
Hi, I guess i am not much of a expert on the subject. So after reading the 24 MP image as a Tiff which is 138 mb in size. and then extracting only the blue channel and writing it again doesnt add up. The blue channel image will come up to be 3,95 mb rather than 11,5 mb.
Input=4016x6016x3 uint16 size = 138mb
Output=2008x3008 uint 16 = 3,95mb
the operation i perform
clear all
for i=1:10
b=imread((strcat(num2str(i),'.tiff')));
im=b(2:2:4016,2:2:6016);
imwrite(im,strcat('blue',num2str(i),'.tiff'));
end
the pixel pattern was beyer so I was only interested in Blue pixel and not the interpolation of blue channel in all the pixels. Thanks
  1 Kommentar
KSSV
KSSV am 22 Feb. 2017
How about taking
im=b(2:2:4016,2:2:6016);
as
im=b(:,:,3);

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 22 Feb. 2017
Look at https://www.mathworks.com/help/matlab/ref/imwrite.html#input_argument_namevalue_ColorSpace and scroll down very slightly to Compression. Notice there that there are a number of different compression possibilities for TIFF files, and that packbits is the default. So by default, what you imwrite() to a TIFF file will undergo loss-less compression as it is stored to disk.
The input file that you were reading might perhaps not be compressed at all.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by