-
Notifications
You must be signed in to change notification settings - Fork 0
/
csv_util.cpp
213 lines (172 loc) · 5.09 KB
/
csv_util.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
/*
Bruce A. Maxwell
CS 5330 Computer Vision
Spring 2021
CPP functions for reading CSV files with a specific format
- first column is a string containing a filename or path
- every other column is a number
The function returns a std::vector of char* for the filenames and a 2D std::vector of floats for the data
*/
#define _CRT_SECURE_NO_WARNINGS
#include <cstdio>
#include <cstring>
#include <vector>
#include "opencv2/opencv.hpp"
/*
reads a string from a CSV file. the 0-terminated string is returned in the char array os.
The function returns false if it is successfully read. It returns true if it reaches the end of the line or the file.
*/
int getstring(FILE* fp, char os[]) {
int p = 0;
int eol = 0;
for (;;) {
char ch = fgetc(fp);
if (ch == ',') {
break;
}
else if (ch == '\n' || ch == EOF) {
eol = 1;
break;
}
// printf("%c", ch ); // uncomment for debugging
os[p] = ch;
p++;
}
// printf("\n"); // uncomment for debugging
os[p] = '\0';
return(eol); // return true if eol
}
int getint(FILE* fp, int* v) {
char s[256];
int p = 0;
int eol = 0;
for (;;) {
char ch = fgetc(fp);
if (ch == ',') {
break;
}
else if (ch == '\n' || ch == EOF) {
eol = 1;
break;
}
s[p] = ch;
p++;
}
s[p] = '\0'; // terminator
*v = atoi(s);
return(eol); // return true if eol
}
/*
Utility function for reading one float value from a CSV file
The value is stored in the v parameter
The function returns true if it reaches the end of a line or the file
*/
int getfloat(FILE* fp, float* v) {
char s[256];
int p = 0;
int eol = 0;
for (;;) {
char ch = fgetc(fp);
if (ch == ',') {
break;
}
else if (ch == '\n' || ch == EOF) {
eol = 1;
break;
}
s[p] = ch;
p++;
}
s[p] = '\0'; // terminator
*v = atof(s);
return(eol); // return true if eol
}
/*
Given a filename, and image filename, and the image features, by
default the function will append a line of data to the CSV format
file. If reset_file is true, then it will open the file in 'write'
mode and clear the existing contents.
The image filename is written to the first position in the row of
data. The values in image_data are all written to the file as
floats.
The function returns a non-zero value in case of an error.
*/
int append_image_data_csv(char* filename, char* image_filename, std::vector<float>& image_data, int reset_file) {
char buffer[256];
char mode[8];
FILE* fp;
strcpy(mode, "a");
if (reset_file) {
strcpy(mode, "w");
}
fp = fopen(filename, mode);
if (!fp) {
printf("Unable to open output file %s\n", filename);
exit(-1);
}
// write the filename and the feature vector to the CSV file
strcpy(buffer, image_filename);
std::fwrite(buffer, sizeof(char), strlen(buffer), fp);
for (int i = 0; i < image_data.size(); i++) {
char tmp[256];
sprintf(tmp, ",%.4f", image_data[i]);
std::fwrite(tmp, sizeof(char), strlen(tmp), fp);
}
std::fwrite("\n", sizeof(char), 1, fp); // EOL
fclose(fp);
return(0);
}
/*
Given a file with the format of a string as the first column and
floating point numbers as the remaining columns, this function
returns the filenames as a std::vector of character arrays, and the
remaining data as a 2D std::vector<float>.
filenames will contain all of the image file names.
data will contain the features calculated from each image.
If echo_file is true, it prints out the contents of the file as read
into memory.
The function returns a non-zero value if something goes wrong.
*/
int read_image_data_csv(char* filename, std::vector<char*>& filenames, std::vector<std::vector<float>>& data, int echo_file) {
FILE* fp;
float fval;
char img_file[256];
fp = fopen(filename, "r");
if (!fp) {
printf("Unable to open feature file\n");
return(-1);
}
printf("Reading %s\n", filename);
for (;;) {
std::vector<float> dvec;
// read the filename
if (getstring(fp, img_file)) {
break;
}
// printf("Evaluting %s\n", filename);
// read the whole feature file into memory
for (;;) {
// get next feature
float eol = getfloat(fp, &fval);
dvec.push_back(fval);
if (eol) break;
}
// printf("read %lu features\n", dvec.size() );
data.push_back(dvec);
char* fname = new char[strlen(img_file) + 1];
strcpy(fname, img_file);
filenames.push_back(fname);
}
fclose(fp);
printf("Finished reading CSV file\n");
if (echo_file) {
for (int i = 0; i < data.size(); i++) {
for (int j = 0; j < data[i].size(); j++) {
printf("%.4f ", data[i][j]);
}
printf("\n");
}
printf("\n");
}
return(0);
}