-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimgStruct.c
237 lines (166 loc) · 4.3 KB
/
imgStruct.c
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
/********************************************************************
* FILE: imgStruct.c
* -----------------
* The implementation for the incomplete methods described in
* imgStruct.h
*/
#include <stdio.h>
#include <stdlib.h>
#include "imgStruct.h"
struct colorpixel {
int R;
int G;
int B;
};
struct binarypixel {
int value;
};
struct bwpixel {
int value;
};
struct hsvpixel {
int H;
int S;
int V;
};
// Here, we create the ColorPixel image, later this will point to an
// array of ColorPixels that comprise of the image, but we need the
// exact dimensions of the image before we can create the array. This
// technique in all of the image structs
struct colorimage {
ColorPixel *image;
int height;
int width;
};
struct binaryimage {
BinaryPixel *image;
int height;
int width;
};
struct bwimage {
BWPixel *image;
int height;
int width;
};
struct hsvimage {
HSVPixel *image;
int height;
int width;
};
ColorPixel createColorPixel(int red, int green, int blue) {
ColorPixel pixel = (ColorPixel) malloc(sizeof(struct colorpixel));
if (pixel == NULL) {
printf("Out of memory!\n");
exit(1);
}
pixel->R = red;
pixel->G = green;
pixel->B = blue;
return pixel;
}
void deleteColorPixel(ColorPixel pixel) {
free(pixel);
}
BinaryPixel createBinaryPixel(int value) {
BinaryPixel pixel = (BinaryPixel) malloc(sizeof(struct binarypixel));
if (pixel == NULL) {
printf("Out of memory!\n");
exit(1);
}
pixel->value = value;
return pixel;
}
void deleteBinaryPixel(BinaryPixel pixel) {
free(pixel);
}
BWPixel createBWPixel(int value) {
BWPixel pixel = (BWPixel) malloc(sizeof(struct bwpixel));
if (pixel == NULL) {
printf("Out of memory!\n");
exit(1);
}
pixel->value = value;
return pixel;
}
void deleteBWPixel(BWPixel pixel) {
free(pixel);
}
HSVPixel createHSVPixel(int hue, int sat, int value) {
HSVPixel pixel = (HSVPixel) malloc(sizeof(struct hsvpixel));
if (pixel == NULL) {
printf("Out of memory!\n");
exit(1);
}
pixel->H = hue;
pixel->S = sat;
pixel->V = value;
return pixel;
}
void deleteHSVPixel(HSVPixel pixel) {
free(pixel);
}
ColorImage createColorImage(int height, int width) {
ColorImage image = (ColorImage) malloc(sizeof(struct colorimage));
if (image == NULL) {
printf("Out of memory!\n");
exit(1);
}
// Rather than create the array, I am allocating the place in memory
// for the image array, which will be populated during the parsing
// process
image->image = (ColorPixel*) malloc(height*width*sizeof(struct colorpixel));
image->height = height;
image->width = width;
}
void deleteColorImage(ColorImage image) {
int i;
int j;
int height = image->height;
int width = image->width;
// iterate through the pixel array and release each pixel
for(i = 0; i < height; i++) {
for(j = 0; j < width; j++) {
deleteColorPixel(image->image[i, j]);
}
}
free(image);
}
BinaryImage createBinaryImage(int height, int width) {
BinaryImage image = (BinaryImage) malloc(sizeof(struct binaryimage));
if (image == NULL) {
printf("Out of memory!\n");
exit(1);
}
// Rather than create the array, I am allocating the place in memory
// for the image array, which will be populated during the parsing
// process
image->image = (BinaryPixel*) malloc(height*width*sizeof(struct binarypixel));
image->height = height;
image->width = width;
}
BWImage createBWImage(int height, int width) {
BWImage image = (BWImage) malloc(sizeof(struct bwimage));
if (image == NULL) {
printf("Out of memory!\n");
exit(1);
}
// Rather than create the array, I am allocating the place in memory
// for the image array, which will be populated during the parsing
// process
image->image = (BWPixel*) malloc(height*width*sizeof(struct bwpixel));
image->height = height;
image->width = width;
}
HSVImage createHSVImage(int height, int width) {
HSVImage image = (HSVImage) malloc(sizeof(struct hsvimage));
if (image == NULL) {
printf("Out of memory!\n");
exit(1);
}
// Rather than create the array, I am allocating the place in memory
// for the image array, which will be populated during the parsing
// process
image->image = (HSVPixel*) malloc(height*width*sizeof(struct hsvpixel));
image->height = height;
image->width = width;
}