-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.m
More file actions
58 lines (49 loc) · 1.27 KB
/
main.m
File metadata and controls
58 lines (49 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
% figure 1
%for i = 1:8
% temp = quantize_matrix(lena_gray_512,i);
% subplot(2,4,i,'replace')
% imshow(temp,[0,2^(i)-1]);
%end
%figure 2
%for i = 1:8
% temp = quantize_matrix(lena_gray_512,i);
% temp2 = dequantize_matrix(temp,i,8);
% subplot(2,4,i,'replace')
% imshow(temp2);
%end
%zeros(8,N,M)
%for j = 1:8
% output=zeros(256,1);
% delta = 2^(8-j);
% for i = 0:255
% output(i+1,1) = dequantize(quantize(i,j),delta);
% end
% subplot(2,4,j,'replace')
% plot(0:255,output(:,1));
% axis([0,255,0,255])
%end
%for j = 1:8
% output=zeros(256,1);
% for i = 0:255
% output(i+1,1) = quantize(i,j);
% end
% subplot(2,4,j,'replace')
% plot(0:255,output(:,1));
% axis([0,255,0,2^(j)])
%end
%results = zeros(8,1);
%for i = 1:8
% temp = dequantize_matrix(quantize_matrix(lena_gray_512,i),i,8);
% D = abs(lena_gray_512-temp).^2;
% MSE = sum(D(:))/numel(lena_gray_512);
% results(i,1) = MSE;
%end
%plot(1:8,results);
%function quantization = quantize(pixel, new_bytesize)
% dif_levels = 2^(8-new_bytesize);
% quantization=floor(double(pixel)/double(dif_levels));
%end
%function dequantization = dequantize(pixel, delta)
% Operation avg*Pixel+avg changed to:
% dequantization= delta*(double(pixel) + 0.5);
%end