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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
| %limpando variaveis e terminal.
%cleaning the variables and terminal
clear all;
close all;
clc;
%inicia contador de tempo
%start counter of time
tic;
%procura imagem inicial
%Search initial image
imagefiles = dir('*.pgm');
nfiles = length(imagefiles);
forResult = zeros(1,nfiles);
y = randi([1, nfiles]);
for ii=1:nfiles
if (ii == y)
currentfilename = imagefiles(ii).name;
inputImage = imread(currentfilename);
images{ii} = inputImage;
end
end
inputImage=inputImage;
diferente = currentfilename;
%seta tamanho da janela de verificação
%set window size
windowSize=3;
inputImage=inputImage;
%executa função fuzy
%execuit function fuzy
res = fuzy(inputImage, windowSize, 0.950);
% 0.950 melhor valor que encontrei para fuzy
%pega parametros da imagen para criar histograma
%get parameters of image to create histogram
larg = size(res,2) ;
alt = size(res,1) ;
minimo = min(min(res)) ;
maximo = max(max(res)) ;
img_contraste = 255 * ( double(res - minimo) / double(maximo - minimo) );
histograma = zeros(1,256) ;
%criando histograma
%creating histegram
for i = 1 : alt
for j = 1 : larg
histograma(floor(img_contraste(i,j)+1)) = histograma(floor(img_contraste(i,j)+1)) + 1 ;
end
end
%calculando histograma
%calculating histogram
resultado1 = sum(histograma);
%mostra resultados na janela figura
%show results in window figure
figure,
subplot(2,3,1); plot(1:256,histograma,'-b');
title('Histograma Original');
subplot(2,3,3); imshow(inputImage);
title('Imagem Original');
drawnow
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%procura imagen canditada
%Search image candidate
imagefiles = dir('*.pgm');
nfiles = length(imagefiles);
%Vector of results
%Vetor de resultados
forResult = zeros(1,nfiles);
resultchi = 999999999999999;
for ii=1:nfiles
currentfilename = imagefiles(ii).name;
z = strcmp( currentfilename, diferente );
if (z==0)
inputImage2 = imread(currentfilename);
images{ii} = inputImage2;
windowSize=3;
inputImage2=inputImage2;
%executando função fuzy
%running fuzy function
res2 = fuzy(inputImage2, windowSize, 0.950);
%pega parametros do fuzy para criar histograma
%get parameters of fuzy to create histogram
larg = size(res2,2) ;
alt = size(res2,1) ;
minimo = min(min(res2)) ;
maximo = max(max(res2)) ;
img_contraste2 = 255 * ( double(res2 - minimo) / double(maximo - minimo) );
histograma2 = zeros(1,256) ;
%criando histograma
%creating histegram
for i = 1 : alt
for j = 1 : larg
histograma2(floor(img_contraste2(i,j)+1)) = histograma2(floor(img_contraste2(i,j)+1)) + 1 ;
end
end
%calculando chi-quadrado
%calculating chi-square
reschi = sum((histograma - histograma2).^2);
%vetor para resultados do chi
% Vector for results of chi
forResult(ii) = reschi;
%procura menor resultado do chi
%search menor result of chi
if ( reschi < resultchi )
resultchi = reschi;
reshistograma = histograma2;
resresultado = res2;
resimage = inputImage2;
end
subplot(2,3,4); plot(1:256,histograma2,'-b');
title('Histograma');
subplot(2,3,6); imshow(inputImage2);
title('Imagem Candidata');
drawnow
ii
end
end
%mostra resultado
%show result
subplot(2,3,4); plot(1:256,reshistograma,'-b');
title('RESULTADO');
subplot(2,3,6); imshow(resimage);
title('RESULTADO');
drawnow
%mostra tempo de procesamento
%show processing time
time=toc;
time |