-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph_cut_opt.cpp
404 lines (355 loc) · 8.79 KB
/
graph_cut_opt.cpp
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
#include "graph_cut_opt.h"
/*
ALPHA EXPANSION
*/
void scramble_label_table(int * label_table, int label_table_size)
{
for (int i =0; i < label_table_size; i++)
{
int r1 = rand()%label_table_size;
int r2 = rand()%label_table_size;
int temp = label_table[r1];
label_table[r1] = label_table[r2];
label_table[r2] = temp;
}
}
/*
Performs alpha-expansion for regular grid graph (binary case, label specified by alpha)
*/
void a_exp_binary (
double *qalpha,
int ialpha,
double **data,
double **q,
int *id,
int sx,
int sy,
int nChannels,
void (*fid_func)(double*, double*, int, double*),
void (*reg_func)(double, double,double*),
double weight
)
{
int sData = sx*sy;
typedef Graph<double,double,double> GraphAlpha;
GraphAlpha *g = new GraphAlpha(sData,2*sData);
g -> add_node(sData);
//add t-link for pixel
for (int i=0; i<sData; ++i)
{
int eid = id[i];
double *d = new double[nChannels];
double *a = new double[nChannels];
for (int ch = 0; ch < nChannels; ch ++)
{
d[ch] = data[ch][i];
a[ch] = q[ch][eid];
}
double weight_alpha=0;
double weight_alpha_neg =0;
if (eid!=ialpha)
{
double E0 = 0;
double E1 = 0;
fid_func (d,a,nChannels,&E0);
fid_func (d,qalpha,nChannels,&E1);
weight_alpha_neg = E0 - E1;
}
if (weight_alpha_neg<0)
{
weight_alpha = -weight_alpha_neg;
weight_alpha_neg = 0;
}
g -> add_tweights(i, weight_alpha, weight_alpha_neg);
delete[] d;
delete[] a;
}
/*add n-link edges -> vertical*/
for (int j=0; j<sy; ++j)
{
int node2=j;
for (int i=0; i<(sx-1); ++i)
{
int node1 = node2;
node2 = node1+sx;
double A = 0, B = 0, C = 0;
reg_func (id[node1], id[node2], &A);
reg_func (id[node1], ialpha, &B);
reg_func (ialpha, id[node2], &C);
double w = weight*(B+C-A);
if (w !=0.0) g ->add_edge(node1,node2,w,0);
g -> add_tweights(node2,0, weight*C);
w = weight*(C-A);
if (w!=0.0)
{
if (weight>0)
g -> add_tweights(node1,w,0);
else
g -> add_tweights(node1,0,-w);
}
}
}
/*add n-link -> horizontal*/
for (int j=0; j<sx; ++j)
{
int node2=j*sx;
for (int i=0; i<(sy-1); ++i)
{
int node1 = node2;
node2 = node1+1;
double A = 0, B = 0, C = 0;
reg_func (id[node1], id[node2], &A);
reg_func (id[node1], ialpha, &B);
reg_func (ialpha, id[node2], &C);
double w = weight*(B+C-A);
if (w != 0) g ->add_edge(node1,node2,w,0);
g -> add_tweights(node2,0, weight*C);
w = weight*(C-A);
if (w!=0.0)
{
if (weight>0.0)
g -> add_tweights(node1,w,0);
else
g -> add_tweights(node1,0,-w);
}
}
}
g->maxflow();
for (int i=0;i <sData;i++)
{
if (g->what_segment(i) == GraphAlpha::SINK)
{
id[i] = ialpha;
}
}
g->~Graph();
}
/*
Performs alpha-expansion for regular grid graph (multilabel case)
*/
double a_exp_multilabel(
double **data,
double **q,
int *id,
int sx,
int sy,
int nChannels,
int nCodevectors,
void (*fid_func)(double*, double*, int, double*),
void (*reg_func)(double, double,double*),
double weight,
double e_in
)
{
int* label_table = new int [nCodevectors]; // init label table
for (int i =0; i < nCodevectors; i++) label_table[i] = i;
scramble_label_table(label_table,nCodevectors); // random label order
double old_energy = e_in;
int change = 1;
while (change)
{
for (int i =0; i <nCodevectors; i++)
{
int index = label_table[i];
double *alpha = new double[nChannels];
for (int ch = 0; ch < nChannels; ch ++)
{
alpha[ch] = q[ch][index];
}
a_exp_binary (alpha, index, data, q, id, sx, sy, nChannels, fid_func, reg_func, weight);
delete[] alpha;
}
double e = energy ( data, q, id, sx, sy, nChannels, fid_func, reg_func, weight);
if (e == old_energy) change = 0;
else old_energy = e;
}
delete [] label_table;
return old_energy;
}
/*
MUROTA'S GRADIENT DESCENT ALGORITHM
*/
/*
Performs Murota's gradient descent for regular grid graph (binary case, for one given step)
*/
void grad_descent_binary (
int istep,
double **data,
double **q,
int *id,
int sx,
int sy,
int nChannels,
void (*fid_func)(double*, double*, int, double*),
void (*reg_func)(double, double,double*),
double weight,
int nCodevectors
)
{
int change = 0;
int sData = sx*sy;
double infval = nCodevectors*100;
typedef Graph<double,double,double> GraphGD;
GraphGD *g = new GraphGD(sData,2*sData);
g -> add_node(sData);
//add t-link for pixel
for (int i=0; i<sData; ++i)
{
int eid = id[i];
double *d = new double[nChannels];
double *a0 = new double[nChannels];
for (int ch = 0; ch < nChannels; ch ++)
{
d[ch] = data[ch][i];
a0[ch] = q[ch][eid];
}
int id_proposed = eid+istep;
if (id_proposed < 0 ) id_proposed = 0;
if (id_proposed > nCodevectors-1 ) id_proposed = nCodevectors-1;
double *a1 = new double[nChannels];
if (id_proposed < 0 || id_proposed > nCodevectors-1)
{
for (int ch = 0; ch < nChannels; ch ++)
{
a1[ch] = infval;
}
}
else
{
for (int ch = 0; ch < nChannels; ch ++)
{
a1[ch] = q[ch][id_proposed];
}
}
double E0 = 0;
double E1 = 0;
fid_func (d,a0,nChannels,&E0);
fid_func (d,a1,nChannels,&E1);
double weight_alpha_neg = E0 - E1;
double weight_alpha=0;
if (weight_alpha_neg<0)
{
weight_alpha = -weight_alpha_neg;
weight_alpha_neg = 0;
}
g -> add_tweights(i, weight_alpha, weight_alpha_neg);
delete[] d;
delete[] a0;
delete[] a1;
}
//add n-link edges -> vertical
for (int j=0; j<sy; ++j)
{
int node2=j;
for (int i=0; i<(sx-1); ++i)
{
int node1 = node2;
node2 = node1+sx;
double A = 0, B = 0, C = 0;
int id1 = id[node1];
int id2 = id[node2];
int id1_proposed = id1 + istep;
int id2_proposed = id2 + istep;
reg_func (id1, id2, &A);
reg_func (id1, id2_proposed, &B);
reg_func (id1_proposed, id2, &C);
double w = weight*(B+C-A-A);
if (w !=0.0) g ->add_edge(node1,node2,w,0);
w = weight*(C-A);
if (w!=0.0)
{
if (weight>0)
{
g -> add_tweights(node1,w,0);
g -> add_tweights(node2,0, w);
}
else
{
g -> add_tweights(node1,0,-w);
g -> add_tweights(node2,-w, 0);
}
}
}
}
//add n-link -> horizontal
for (int j=0; j<sx; ++j)
{
int node2=j*sx;
for (int i=0; i<(sy-1); ++i)
{
int node1 = node2;
node2 = node1+1;
double A = 0, B = 0, C = 0;
int id1 = id[node1];
int id2 = id[node2];
int id1_proposed = id1 + istep;
int id2_proposed = id2 + istep;
reg_func (id1, id2, &A);
reg_func (id1, id2_proposed, &B);
reg_func (id1_proposed, id2, &C);
double w = weight*(B+C-A-A);
if (w != 0.0) g ->add_edge(node1,node2,w,0);
w = weight*(C-A);
if (weight>0.0)
{
g -> add_tweights(node1,w,0);
g -> add_tweights(node2,0, w);
}
else
{
g -> add_tweights(node1,0,-w);
g -> add_tweights(node2,-w, 0);
}
}
}
g->maxflow();
for (int i=0;i <sData;i++)
{
if (g->what_segment(i) == GraphGD::SINK)
{
id[i] = id[i] + istep ;
if (id[i] < 0) id[i] = 0;
else if (id[i] > nCodevectors-1) id[i] = nCodevectors-1;
}
}
g->~Graph();
}
/*
Performs Murota's gradient descent for regular grid graph (full loop up to the convergence)
*/
double grad_descent_multilabel(
double **data,
double **q,
int *id,
int sx,
int sy,
int nChannels,
int nCodevectors,
void (*fid_func)(double*, double*, int, double*),
void (*reg_func)(double, double,double*),
double weight,
double e_in
)
{
//init step
int steps[] = {-1,1};
int change = 1;
int iter = 0;
double old_energy = energy ( data, q, id, sx, sy, nChannels, fid_func, reg_func, weight);
double e = old_energy;
while(change)
{
for (int i =0; i <2; i++)
{
iter++;
int istep = steps[iter%2];
grad_descent_binary (istep,data, q, id, sx, sy, nChannels, fid_func, reg_func, weight, nCodevectors);
double etemp = energy ( data, q, id, sx, sy, nChannels, fid_func, reg_func, weight);
if (e>etemp) e= etemp;
}
if (e == old_energy) change = 0;
else old_energy = e;
}
//old_energy = energy ( data, q, id, sx, sy, fid_func, reg_func, weight);
return old_energy;
}