图像取样与量化

图像取样与量化

参考

https://www.jianshu.com/p/5a80a5681bb9

要点

先转换为灰度图再进行取样和量化。

取样实际上是对原图像矩阵等间隔取样,量化采用histeq()进行,其中的参数代表量化分级数。

代码

1
2
3
4
5
6
7
8
9
10
ori = imread("e:\\coding\test.png");
gray = rgb2gray(ori);
prop1 = 8;
sampling = gray(1:prop1:end, 1:prop1:end);
prop2 = 8;
quantifying = histeq(gray, prop2);

subplot(1,3,1), imshow(gray), title('origin')
subplot(1,3,2), imshow(sampling), title('sampling')
subplot(1,3,3), imshow(quantifying), title('quantifying')

效果

untitled


图像取样与量化
http://example.com/2022/12/17/图像取样与量化/
作者
Thunderbolt
发布于
2022年12月17日
许可协议