-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp2BROKEN.cpp
416 lines (320 loc) · 8 KB
/
p2BROKEN.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
405
406
407
408
409
/*
* p2.cpp
*
* Created on: Sep 25, 2011
* Author: andrewdunn
*
* implementation of sequential labeling algorithm
* given an input file out put an image file with each object
* labeled with a different shade of gray
*/
#include <iostream>
#include <vector>
#include <set>
#include "vision_utilities.h"
#define ARRAY_SIZE 500
#define NUM_ROWS 531
#define NUM_COLS 681
using namespace std;
int equivsArray[ARRAY_SIZE][ARRAY_SIZE];
vector < vector<int> > equivs;
vector<int> nonClashingLabels;
int currentLabel = 0;
int totalLabels;
int numRows, numCols;
void printSet(int setA[], int setName)
{
cout << setName << ": ";
if (setA[0] == 0)
{
cout << "empty set" << endl;
}
else
{
int index = 0;
while (setA[index] != 0)
{
cout << setA[index] << " ";
index ++;
}
}
cout << endl;
}
void printSets()
{
cout << "All Sets: " << endl;
int i=0;
while (equivsArray[i][0] != 0)
{
printSet(equivsArray[i],i);
i++;
}
cout << endl << endl;
}
void newSet(int a, int b)
{
int mainIndex = 0;
while (equivsArray[mainIndex][0] != 0){mainIndex++;}
equivsArray[mainIndex][0] = a;
equivsArray[mainIndex][1] = b;
printSets();
}
void mergeSets(int keepSet[], int discardSet[])
{
// merge sets
cout << "merging.. " << endl;
printSet(keepSet, 1);
printSet(discardSet, 2);
int keepIndex=0;
while (keepSet[keepIndex]!=0){keepIndex++;}
int discardIndex = 0;
while (discardSet[discardIndex]!= 0 )
{
// cout << "keepIndex: " << keepIndex << endl;
// cout << "replacing " << keepSet[keepIndex] << " with " << discardSet[discardIndex] << endl;
keepSet[keepIndex] = discardSet[discardIndex];
keepIndex ++;
discardIndex ++;
}
cout << "deleting old set" << endl;
// fill old set with zeroes
for (int index=0; index < 12; index++)
{
discardSet[index] = 0;
}
//printSet(discardSet, 2);
}
void addEquivalency(int aVal, int bVal)
{
// cout << "addEquiv: " << aVal << " " << bVal<< endl;
// use a set
// http://www.cplusplus.com/reference/stl/set/find/
bool matchFound = false;
int homeKey = -1;
bool aValFound = false;
bool bValFound = false;
for (int outerIndex=0; outerIndex < ARRAY_SIZE; outerIndex ++)
{
//cout << outerIndex << endl;
// iterate through sub arrays
aValFound = bValFound = false;
for (int innerIndex=0; innerIndex < ARRAY_SIZE; innerIndex ++)
{
if (equivsArray[outerIndex][innerIndex] == aVal)
{aValFound = true; }
if (equivsArray[outerIndex][innerIndex] == bVal )
{bValFound = true; }
} // end inner iteration
// if a match has been found in a previous set
if (matchFound && (aValFound || bValFound))
{
mergeSets(equivsArray[homeKey], equivsArray[outerIndex]);
}
else
{
// if aVal is in the array but not bVal
if(aValFound && !bValFound)
{
// add bVal to this array
int addedIndex = 0;
while (equivsArray[outerIndex][addedIndex] != 0) {addedIndex++; if (addedIndex==ARRAY_SIZE){break;}}
equivsArray[outerIndex][addedIndex] =bVal;
matchFound = true;
homeKey = outerIndex;
}
// if bVal is found but not aVal
else if (bValFound && !aValFound)
{
// add bVal to this array
int addedIndex = 0;
while (equivsArray[outerIndex][addedIndex] != 0) {addedIndex++; if (addedIndex==ARRAY_SIZE){break;}}
equivsArray[outerIndex][addedIndex] =aVal;
matchFound = true;
homeKey = outerIndex;
}
// if both bVal and aVal are found
else if (bValFound && aValFound)
{
// cout << ("both found") << endl;
matchFound = true;
homeKey = outerIndex;
// nothing to add;
}
}
} // end outer iteration
if (!matchFound)
{
// cout << "no match, new equivalence set" << endl;
newSet(aVal, bVal);
}
//printSets();
}
// sequential labeling algorithm
void scanImage(int storageArray[NUM_ROWS][NUM_COLS])
{
cout << "scanning image... " << endl;
cout << "rows: " << numRows << endl;
cout << "cols: " << numCols << endl;
int i, j;
// iterate through pixels and reassign brightness based on the threshold value
for (i=0; i < numRows; i++)
{
for (j=0; j < numCols; j++)
{
int aLabel = storageArray[i][j];
//1 aLabel = 0 (bkgd)
// .. if A is black
if (aLabel == 0)
{
// do nothing
}
else
{
// x and y are reversed!! it
// is row i and column j
// so column is j = x
// and row is i = y
int dLabel = storageArray[i-1][ j-1];
//2 if D has been labeled
if (dLabel != 0)
{
//setPixel(im, i, j, dLabel);
storageArray[i][j] = dLabel;
}
else
{
// y-1 , x
int bLabel = storageArray[i-1][j];
int cLabel = storageArray[i][j-1];
//3 if b has been labeled but not c
if (bLabel != 0 && cLabel == 0)
{
storageArray[i][j] = bLabel;
}
//4 if neither b nor c is labeled
else if (bLabel == 0 && cLabel == 0 )
{
// make a new label for a
currentLabel ++;
// cout<< "new Label: " << currentLabel<< endl;
storageArray[i][j] = currentLabel;
}
//5 if c has been labeled but not b
else if (cLabel != 0 && bLabel == 0 )
{
// set a label to c
storageArray[i][j] = cLabel;
}
//6 if b and c has been labeled and are equal
else if ((bLabel !=0 && cLabel != 0) && bLabel == cLabel)
{
// label a with b
storageArray[i][j] = bLabel;
}
// 7
// remaining possibility is that b and c
// are both labeled but not equal
// (and d is not labelled)
else if ((bLabel !=0 && cLabel != 0) && bLabel != cLabel )
{
// label a with b
storageArray[i][j] = bLabel;
addEquivalency(bLabel, cLabel);
}
}
}
}
}
}
// second pass. resolve equivalencies and adjust total labels
void resolveEquivalencies(int storageArray[NUM_ROWS][NUM_COLS], Image * im)
{
cout << "resolving .. " << endl;
int i,j;
i=j=0;
for (i=0; i < numRows; i++)
{
for (j=0; j < numCols; j++)
{
int aLabel = storageArray[i][j];
{
for (int outerIndex = 0; outerIndex < ARRAY_SIZE; outerIndex ++)
{
for (int innerIndex = 0; innerIndex < ARRAY_SIZE; innerIndex ++)
{
if ( equivsArray[outerIndex][innerIndex] == 0 ){break;}
//cout << i << " "<< j << " " <<outerIndex << " " << innerIndex << endl;
if ( equivsArray[outerIndex][innerIndex] == aLabel)
{
setPixel(im,i,j, outerIndex + 1);
}
}
}
}
}
}
printSets();
cout << "resolution over. " << endl;
}
void getTotalLabels()
{
int total = 0;
while(equivsArray[total][0]!=0)
{
total++;
if (total == ARRAY_SIZE){break;}
}
totalLabels = total;
}
int main(int argc, char *argv[])
{
// put command line args into variables
const char *inputFile = argv[1];
const char *outputFile =argv[2];
cout << endl << "input file: " << inputFile << endl;
cout << "output file: " << outputFile << endl << endl;
// use Image struct
Image newImage;
Image * im;
im = &newImage;
// read image, get # of columns and rows
readImage(im, inputFile);
numCols = getNCols(im);
numRows = getNRows(im);
int storageArray[NUM_ROWS][NUM_COLS];
// initialize storage array with pixel values
for (int storeI=0; storeI<numRows; storeI ++)
{
for (int storeJ=0; storeJ<numCols; storeJ++)
{
storageArray[storeI][storeJ] = getPixel(im, storeI, storeJ);
}
}
// initialize equivalence vector
for (int outerI = 0; outerI < ARRAY_SIZE; outerI ++)
{
for (int innerI = 0; innerI < ARRAY_SIZE; innerI++)
{equivsArray[outerI][innerI] = 0;}
}
/*
// to test
cout << "merging arrays" << endl;
int coolArray[12] = {1,2,3,4, 0, 0, 0, 0, 0, 0, 0, 0};
int dudeArray[12]= {5,6,7,8, 0, 0, 0, 0, 0, 0 , 0 ,0};
cout << "print" << endl;
printSet(coolArray, 1);
printSet(dudeArray, 2);
cout << "merge" << endl;
mergeSets(coolArray, dudeArray);
printSet(coolArray, 1);
printSet(dudeArray, 2);
*/
// sequential labeling algorithm
scanImage(storageArray);
resolveEquivalencies(storageArray, im);
getTotalLabels();
cout << endl << endl << "There are " << totalLabels << " objects" << endl;
setColors(im, totalLabels);
writeImage(im, outputFile);
return 0;
}