convert an 8 bit image into lower bits

14 次查看(过去 30 天)
Hi, I want to convert an 8bit gray scale image into lower bits. I have loaded the image and divided it by multiple numbers to downsize its number of bits, but the problem is that the result is not presenting the true form of White color, and the white color is removed with downsizing. Can you please tell me what is the correct method of downsizing the bits of an image. Regards
  8 个评论
Steven Lord
Steven Lord 2023-2-9
If you use the idivide function instead of / you can control how the result is rounded.
IN = uint8(0:32:255);
result = [IN; IN/128;
idivide(IN, 128, 'fix');
idivide(IN, 128, 'floor');
idivide(IN, 128, 'ceil');
idivide(IN, 128, 'round')]
result = 6×8
0 32 64 96 128 160 192 224 0 0 1 1 1 1 2 2 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 1 1 1 1 2 2 2 0 0 1 1 1 1 2 2

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2017-12-5
img8 = imread('cameraman.tif');
im4 = im8 ./ 16;
image(im4);
colormap(gray(16));

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by