-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimage-basic.cpp
307 lines (267 loc) · 8.14 KB
/
image-basic.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
/******************************************
image-basic.cpp
Contains the basic constructors and readers for the Image class.
Jaime Silvela
January 2000
******************************************/
#include <tiffio.h>
#include <cstring>
#include <iostream>
#include <stdio.h>
#include "image.hpp"
const int grey_depth = 256;
const grey white = 255;
const grey black= 0;
const queue<point> the_empty_queue;
Image::Image()
{
height=0;
width=0;
size=0;
matrix=0;
start=0;
end=0;
boundary_queue = the_empty_queue;
offset_4neighbor[0] = 1;
offset_4neighbor[1] = -width;
offset_4neighbor[2] = -1;
offset_4neighbor[3] = width;
offset_8neighbor[0] = 1;
offset_8neighbor[1] = -width +1;
offset_8neighbor[2] = -width;
offset_8neighbor[3] = -width -1;
offset_8neighbor[4] = -1;
offset_8neighbor[5] = width -1;
offset_8neighbor[6] = width;
offset_8neighbor[7] = width +1;
}
Image::Image(int h, int w)
{
height = h;
width = w;
size = h * w;
matrix = new grey* [height];
start = new grey[size];
for (int i=0; i<height; ++i)
matrix[i]=start+i*width;
std::memset (start, black, size*sizeof(grey));
end = start + size -1;
boundary_queue = the_empty_queue;
offset_4neighbor[0] = 1;
offset_4neighbor[1] = -width;
offset_4neighbor[2] = -1;
offset_4neighbor[3] = width;
offset_8neighbor[0] = 1;
offset_8neighbor[1] = -width +1;
offset_8neighbor[2] = -width;
offset_8neighbor[3] = -width -1;
offset_8neighbor[4] = -1;
offset_8neighbor[5] = width -1;
offset_8neighbor[6] = width;
offset_8neighbor[7] = width +1;
}
Image::Image(const Image& im)
{
height = im.height;
width = im.width;
size = im.size;
matrix = new grey* [height];
start = new grey[size];
for (int i=0; i<height; ++i)
matrix[i]=start+i*width;
std::memcpy (start, im.start, size*sizeof(grey));
end = start + size -1;
boundary_queue = im.boundary_queue;
offset_4neighbor[0] = 1;
offset_4neighbor[1] = -width;
offset_4neighbor[2] = -1;
offset_4neighbor[3] = width;
offset_8neighbor[0] = 1;
offset_8neighbor[1] = -width +1;
offset_8neighbor[2] = -width;
offset_8neighbor[3] = -width -1;
offset_8neighbor[4] = -1;
offset_8neighbor[5] = width -1;
offset_8neighbor[6] = width;
offset_8neighbor[7] = width +1;
}
Image& Image::operator=(const Image& im)
{
if (this != &im) {
delete [] start;
delete [] matrix;
height = im.height;
width = im.width;
size = im.size;
matrix = new grey* [height];
start = new grey[size];
for (int i=0; i<height; ++i)
matrix[i]=start+i*width;
std::memcpy (start, im.start, size*sizeof(grey));
end = start + size -1;
boundary_queue = im.boundary_queue;
offset_4neighbor[0] = 1;
offset_4neighbor[1] = -width;
offset_4neighbor[2] = -1;
offset_4neighbor[3] = width;
offset_8neighbor[0] = 1;
offset_8neighbor[1] = -width +1;
offset_8neighbor[2] = -width;
offset_8neighbor[3] = -width -1;
offset_8neighbor[4] = -1;
offset_8neighbor[5] = width -1;
offset_8neighbor[6] = width;
offset_8neighbor[7] = width +1;
}
return *this;
}
Image::~Image ()
{
delete [] start;
delete [] matrix;
boundary_queue = the_empty_queue;
}
int Image::get_height() {return height;}
int Image::get_width() {return width;}
int Image::get_size() {return size;}
grey** Image::get_matrix() {return matrix;}
point Image::get_start() {return start;}
point Image::get_end() {return end;}
// read_TIFF_bis: more general but less efficient than read_TIFF below
// Use read_TIFF
void Image::read_TIFF_bis(char *filename)
{
TIFF* tif = TIFFOpen(filename, "r");
if (!tif) {
std::cerr << "Cannot read file: " << filename << endl;
return;
}
_filename = filename;
feature_vector[letternum] = filename[0] - 'a';
TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &height);
TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &width);
size = height * width;
delete []start;
delete []matrix;
matrix = new grey* [height];
start = new grey[size];
for (int i=0; i<height; ++i)
matrix[i]=start+i*width;
end = start + size -1;
boundary_queue = the_empty_queue;
offset_4neighbor[0] = 1;
offset_4neighbor[1] = -width;
offset_4neighbor[2] = -1;
offset_4neighbor[3] = width;
offset_8neighbor[0] = 1;
offset_8neighbor[1] = -width +1;
offset_8neighbor[2] = -width;
offset_8neighbor[3] = -width -1;
offset_8neighbor[4] = -1;
offset_8neighbor[5] = width -1;
offset_8neighbor[6] = width;
offset_8neighbor[7] = width +1;
uint32 *aux = new uint32[size];
if (TIFFReadRGBAImage(tif, width, height, aux, 0))
for (int i=0; i < size; ++i)
start[i]=TIFFGetR(aux[i]);
TIFFClose(tif);
delete []aux;
}
void Image::write_TIFF(char *filename)
{
TIFF* tif = TIFFOpen(filename, "w");
if (!tif) {
std::cerr << "Cannot write file: " << filename << endl;
return;
}
TIFFSetField(tif, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);
TIFFSetField(tif, TIFFTAG_IMAGELENGTH, height);
TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, width);
TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, 8);
TIFFSetField(tif, TIFFTAG_COMPRESSION, COMPRESSION_NONE);
TIFFSetField(tif, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK);
TIFFSetField(tif, TIFFTAG_MINSAMPLEVALUE, 0);
TIFFSetField(tif, TIFFTAG_MAXSAMPLEVALUE, 255);
TIFFSetField(tif, TIFFTAG_ORIENTATION, ORIENTATION_BOTLEFT);
for (int r = 0; r < height; r++)
TIFFWriteScanline(tif, matrix[r], r);
TIFFClose(tif);
}
void Image::read_TIFF(char *filename)
{
TIFF* tif = TIFFOpen(filename, "r");
if (!tif) {
std::cerr << "Cannot read file: " << filename << endl;
return;
}
_filename = filename;
feature_vector[letternum] = filename[0] - 'a';
TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &height);
TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &width);
size = height * width;
boundary_queue = the_empty_queue;
offset_4neighbor[0] = 1;
offset_4neighbor[1] = -width;
offset_4neighbor[2] = -1;
offset_4neighbor[3] = width;
offset_8neighbor[0] = 1;
offset_8neighbor[1] = -width +1;
offset_8neighbor[2] = -width;
offset_8neighbor[3] = -width -1;
offset_8neighbor[4] = -1;
offset_8neighbor[5] = width -1;
offset_8neighbor[6] = width;
offset_8neighbor[7] = width +1;
if (VERBOSE) std::cout << "TIFF Image\nwidth: " << width
<< "\nheight: " << height << "\n" << endl;
delete []start;
delete []matrix;
matrix = new grey* [height];
start = new grey[size];
for (int r=0; r<height; ++r)
matrix[r]=start+r*width;
end = start + size -1;
for (int r = 0; r < height; ++r)
TIFFReadScanline(tif, matrix[r], r);
TIFFClose(tif);
}
//Construct a white rectangle of given length starting at (10, 10)
// Use for testing and debugging
void Image::rectangle(int h, int w)
{
if (h>390 || w>390) {
std::cerr << "rectangle: too big!" << endl;
return;
}
delete [] start;
delete [] matrix;
height = 400;
width = 400;
size = height*width;
matrix = new grey* [height];
start = new grey[size];
end = start + size -1;
boundary_queue = the_empty_queue;
std::memset (start, black, size*sizeof(grey));
for (int i=0; i<height; ++i)
matrix[i]=start+i*width;
for (int r=10; r<10+h; ++r)
std::memset(matrix[r]+10, white, w);
boundary_queue = the_empty_queue;
offset_4neighbor[0] = 1;
offset_4neighbor[1] = -width;
offset_4neighbor[2] = -1;
offset_4neighbor[3] = width;
offset_8neighbor[0] = 1;
offset_8neighbor[1] = -width +1;
offset_8neighbor[2] = -width;
offset_8neighbor[3] = -width -1;
offset_8neighbor[4] = -1;
offset_8neighbor[5] = width -1;
offset_8neighbor[6] = width;
offset_8neighbor[7] = width +1;
std::memset (start, black, size*sizeof(grey));
for (int r=10; r<10+h; ++r)
std::memset(matrix[r]+10, white, w);
}