实验2 图像采样与量化

本文最后更新于:7 个月前

实验项目2 图像采样与量化(2学时)

1. 实验内容

(1)对图像分别采样为256x256、128x128、64x64的图像。将原图和经采样后的图像放在同一个figure。
(2)对图像分别量化为64级灰度图像、32级灰度图像和8级灰度图像。将原图和经采样后的图像放在同一个figure。

2. 基本要求

理解图像采样与量化的原理,掌握图像采样与量化的实现方法,对实验结果进行分析,得出实验结论并撰写实验报告。

备注:

用title在图像上方标明实验人(学号+姓名),用xlabel在图像下方标明图像所对应的操作(参数)

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
addpath('D:\matlab\lab2');
p=imread('face.jpg');
p2=histeq(p,64);
p3=histeq(p,32)
p4=histeq(p,8)
figure;
subplot(2,2,1);
imshow(p);
title("xxxxxx")
xlabel("(a)原图");
subplot(2,2,2);
imshow(p2);
title("xxxxxx")
xlabel("(b)64级");
subplot(2,2,3);
imshow(p3);
title("xxxxxx")
xlabel("(c)32级");
subplot(2,2,4);
imshow(p4);
title("xxxxxx")
xlabel("(d)8级");



实验2 图像采样与量化
http://example.com/2022/09/25/实验2-图像采样与量化/
作者
zzh
发布于
2022年9月25日
更新于
2022年9月25日
许可协议
原文链接: HTTPS://ZHANGZHIHAO-BLOG.GITHUB.IO
版权声明: 转载请注明出处!