-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp2zz.cpp
283 lines (253 loc) · 5.96 KB
/
p2zz.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
/*
* p2.cpp
*
* Created on: Oct 10, 2011
* Author: andrewdunn
*
* Implementation of sequential labeling algorithm -
* Given an input file output an image with each object
* labeled by a different shade of gray.
*/
#include <iostream>
#include <vector>
#include "vision_utilities.h"
using namespace std;
vector < vector <int> > equivs;
int currentLabel = 0;
int totalLabels;
int numRows, numCols;
void addEquivalence(int aVal, int bVal)
{
bool matchFound = false;
int i;
int homeKey = -1;
for (i=0; i< equivs.size(); i++)
{
// if aVal is in the array but not bVal
if (find(equivs[i].begin(), equivs[i].end(), aVal) != equivs[i].end()
&& find(equivs[i].begin(), equivs[i].end(), bVal) == equivs[i].end())
{
// if a match has already been found
if (matchFound)
{
// merge vectors
equivs[homeKey].insert(equivs[homeKey].end(), equivs[i].begin(), equivs[i].end());
equivs.erase(equivs.begin() +i);
// is this necessary?
break;
}
else
{
homeKey = i;
// set matchfound to true and let this be the first finding??
matchFound = true;
// should this be in an else block??
equivs[i].push_back(bVal);
}
}
// if bVal is found but not aVal
else if (find(equivs[i].begin(), equivs[i].end(), aVal) == equivs[i].end()
&& find(equivs[i].begin(), equivs[i].end(), bVal) != equivs[i].end())
{
// if a match has already been found
if (matchFound)
{
// merge vectors
equivs[homeKey].insert(equivs[homeKey].end(), equivs[i].begin(), equivs[i].end());
equivs.erase(equivs.begin() +i);
// is this necessary?
break;
}
else
{
homeKey = i;
// set matchfound to true and let this be the first finding??
matchFound = true;
// should this be in an else block??
equivs[i].push_back(aVal);
}
}
// if both aVal and bVal are found
else if (find(equivs[i].begin(), equivs[i].end(), aVal) != equivs[i].end()
&& find(equivs[i].begin(), equivs[i].end(), bVal) != equivs[i].end())
{
// if a match has already been found
if (matchFound)
{
// merge vectors
equivs[homeKey].insert(equivs[homeKey].end(), equivs[i].begin(), equivs[i].end());
equivs.erase(equivs.begin() +i);
// is this necessary?
break;
}
else
{
homeKey = i;
// set matchfound to true and let this be the first finding??
matchFound = true;
// should this be in an else block??
}
}
// if neither aVal or bVal is found
else
{
// do nothing
}
cout << "size of vector " << i+1 << " " << equivs[i].size() << endl;
}
if (!matchFound)
{
vector <int> newEquiv;
newEquiv.push_back(aVal);
newEquiv.push_back(bVal);
equivs.push_back(newEquiv);
}
}
// sequential labeling algorithm
void scanImage(Image * im)
{
int i, j;
// iterate through pixels left-right, top to bottom
for (i=0; i < numRows; i++)
{
for (j=0; j < numCols; j++)
{
int aLabel = getPixel(im,i,j);
// case 1 aLabel = 0 (background)
if (aLabel == 0)
{
// do nothing
}
else
{
// x and y reversed!!
// row i and column j
// so column is j = x
// and row is i=y
int dLabel = getPixel(im, i-1,j-1);
// case 2 if d has been labeled
if (dLabel != 0)
{
// copy that label and move on
setPixel(im, i, j, dLabel);
}
else
{
// y-1 , x
int bLabel = getPixel(im, i-1, j);
// y, x-1
int cLabel = getPixel(im, i, j-1);
// case 3
// b has been labeled but not c
if (bLabel != 0 && cLabel == 0)
{
// setLabel to b
setPixel(im, i, j, bLabel);
}
// case 4
// if neither b nor c is labeled
else if (bLabel == 0 && cLabel == 0)
{
// make a new label for a
currentLabel ++;
setPixel(im, i, j, currentLabel);
}
// case 5
// if c has been labeled but not b
else if (bLabel==0 && cLabel!=0)
{
// set aLabel to c
setPixel(im, i,j, cLabel);
}
// case 6
// if b and c has been labeled and are equal
else if ((bLabel != 0 && cLabel != 0) &&
bLabel == cLabel)
{
// label a with b
// (could be c, it doesn't matter)
setPixel(im, i, j, bLabel);
}
// case 7
// remaining possibility is that b and c
// are both labeled but not equal
else if ((bLabel != 0 && cLabel != 0 )
&& bLabel != cLabel)
{
// label a with b
setPixel(im,i,j,bLabel);
// add Equivalence
addEquivalence(bLabel, cLabel);
}
else
{
cout << " >>> THIS SHOULD NEVER OCCUR!! <<<" << endl;
}
}
}
}
}
}
// second pass resolve equivalences
void resolveEquivalences(Image * im)
{
int i,j,k;
for (i=0; i < numRows; i++)
{
for (j=0; j < numCols; j++)
{
int aLabel = getPixel(im, i, j);
bool matchFound = false;
// loop through arrays looking for a match
for (k=0; k<equivs.size(); k++)
{
if (find(equivs[k].begin(),
equivs[k].end(),
aLabel) != equivs[k].end())
{
setPixel(im, i,j, k+1);
matchFound = true;
}
}
}
}
}
void listEquivalences()
{
cout << "listEquivalences(): " << endl;
cout << equivs.size() << " equivalences" << endl;
int i,j;
for (i=0; i<equivs.size(); i++)
{
cout << equivs[i][0] << "* ";
for (j=1; j<equivs[i].size(); j++)
{
cout << equivs[i][j] << " ";
}
cout << endl;
}
}
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;
// 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);
scanImage(im);
// listEquivalences();
resolveEquivalences(im);
listEquivalences();
cout << endl << endl << "There are " << equivs.size() << " objects." << endl;
setColors(im, equivs.size());
writeImage(im, outputFile);
return 0;
}