How to save 12 bit PNG images
19 次查看(过去 30 天)
显示 更早的评论
Hi, I have a grayscale camera that takes 8 and 12 bit images. Im taking images via MATLAB gentl. I noticed that imwrite saves the image as 16-bit PNG files. I was wondering if this affects the intensity for each pixel in the picture someway? Is it ok that it saves as 16 bit image? I notied that my almost maxed out intensity scale (4049 = 12 bit) looks very pale in the saved 16-bit images.
2 个评论
Jan
2018-11-6
How do you import the images? I do not know "MATLAB gentl". If the image is store in double format, the output should scale the intensities automatically. But perhaps you import the data as UINT16 with the 4 last bit unused?
采纳的回答
Akshay Khadse
2018-11-19
编辑:Akshay Khadse
2018-11-19
MATLAB scales the image intensity values from 12-bit to 16-bit after it loads a 12-bit image via the following algorithm:
% W contains the the 12-bit data loaded from file. Data is stored in 16-bit unsigned integer
% First 4 bits are 0. Consider 12-bit pixel color value of ABC
% Then W = 0ABC
X = bitshift(W,4); % X = ABC0
Y = bitshift(W,-8); %Y = 000A
Z = bitor(X,Y); %Z = ABCA
% Z is the variable that is returned by IMREAD.
Please refer to the following MATLAB Answer for more explanation:
However, Please note that this article was originally answerd for MATLAB R2010a. The workaround mentioned might produce different results for later releases.
I am not sure if you can save 12-bit PNGs from MATLAB as the data is internally stored as 16-bit.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 GigE Vision Hardware 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!