-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestFile1.m
88 lines (65 loc) · 1.69 KB
/
testFile1.m
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
clear all
close all
clc
image = imread('MONALISA.TIF');
image = color2gray(image);
imshow(image)
figure
test_array = [1 2 4 8 16 32 64 128];
for i = 1 : 1 : 6
sampled_image = sampleImage(image,1/test_array(i));
subplot(3 ,2 ,i)
imshow(sampled_image)
s1 = 'sampling Ratio : ';
s2 = num2str(test_array(i));
s = strcat(s1,s2);
title(s)
end
figure
for i = 1 : 1 : 6
quantized_image = quantizeImage(image,test_array(i));
subplot(3 ,2 ,i)
imshow(quantized_image)
s1 = 'Quantazition level : ';
s2 = num2str(test_array(i));
s = strcat(s1,s2);
title(s)
end
figure
test_array2 = [0.3 0.5 0.8 1 2 5 10];
for i = 1 : 1 : 6
powered_image = powerlawtransform(image, test_array2(i));
subplot(3 ,2 ,i)
imshow(powered_image)
s1 = 'Power : ';
s2 = num2str(test_array2(i));
s = strcat(s1,s2);
title(s)
end
figure
gray_level_slicied = graylevelslicing(image,32,64,128);
imshow(powered_image)
title('beginingPoint : 32 , finishPoint : 64, resultLevel : 128')
figure
test_array3 = [0 1 2 3 4 5 6 7];
for i = 1 : 1 : 8
bitplane_slicied = bitplaneslicing(image, test_array3(i));
subplot(4 ,2 ,i)
imshow(bitplane_slicied)
s1 = 'bitplaneNumber : ';
s2 = num2str(test_array3(i));
s = strcat(s1,s2);
title(s)
end
%[row_size, column_size] = size(gray_image) ;
%satir islemi için gray_image(1,:) = 0
%sutun islemi için gray_image(:,1)=0
function outimg = color2gray(img)
% for i = 1 : 3
% outimg = img(:,:);
% end
outimg = rgb2gray(img);
end
%img_red_pixels = image(:,:,1);
%img_green_pixels = image(:,:,2);
%img_blue_pixels = image(:,:,3);