如何修改图像的灰度级数
发布网友
发布时间:2022-05-12 17:15
我来回答
共1个回答
热心网友
时间:2023-10-15 10:18
%Gray是原灰度图,ratio是要得到的灰度级
r=256/ratio;
Gray1 = (Gray-rem(Gray, r))/r;
%work.m文件
I = imread('imFor2.tif');
I128=grayStage(I,128);
I64=grayStage(I,64);
I32=grayStage(I,32);
I16=grayStage(I,16);
I8=grayStage(I,8);
I4=grayStage(I,4);
I2=grayStage(I,2);
figure;
subplot(4, 2, 1); imshow(I, []); title('256');
subplot(4, 2, 2); imshow(I128, []); title('128');
subplot(4, 2, 3);imshow(I64,[]);title('64');
subplot(4, 2, 4);imshow(I32,[]);title('32');
subplot(4, 2, 5);imshow(I16,[]);title('16');
subplot(4, 2, 6);imshow(I8,[]);title('8');
subplot(4, 2, 7);imshow(I4,[]);title('4');
subplot(4, 2, 8);imshow(I2,[]);title('2');