-
Notifications
You must be signed in to change notification settings - Fork 3
/
iotool.cpp
244 lines (218 loc) · 4.63 KB
/
iotool.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
#include "iotool.h"
#include "vstring.h"
#include "config.h"
#include <sys/stat.h>
#include <dirent.h>
#include <dirent.h>
#include <cstring>
#include <cassert>
#include <fstream>
#include <cstdlib>
#include <cmath>
#ifndef LINUX
#define LINUX
#endif
using namespace std;
bool IOTool::IS_Dir(const char *dir)
{
DIR *_mydir = opendir(dir);
if(_mydir != NULL)
{
closedir(_mydir);
return true;
}else
{
return false;
}
}
bool IOTool::IS_FILE(const char *fn)
{
ifstream in;
in.open(fn);
if(in.fail())
{
return false;
}else
{
in.close();
}
return true;
}
bool IOTool::creatDIR(const char *dirname)
{
DIR *dirdp;
if(dirname != NULL)
{
if((dirdp = opendir(dirname)) == NULL)
{
#ifdef LINUX
if(mkdir(dirname, ACCESS_MODE) != 0)
{
cout<<"Creating directory '"<<dirname<<"' failed!\n";
exit(1);
}
#else
if(mkdir(dirname) != 0)
{
cout<<"Creating directory '"<<dirname<<"' failed!\n";
exit(1);
}
#endif
}
else
{
closedir(dirdp);
}
}
return true;
}
bool IOTool::getKeypoint(const char *keyfn, vector<KeyPoint *> &kplst)
{
int col, num;
KeyPoint *crnt_pt;
ifstream *keyfile=new ifstream();
keyfile->open(keyfn,ios::in);
if(keyfile->fail())
{
cout<<"Fail to read "<<keyfn<<endl;
return false;
}
(*keyfile)>>num;
(*keyfile)>>col;
unsigned int counter = 0;
unsigned int pt_num = num;
assert(col >= 6);
float x = 0, y = 0;
while(!keyfile->eof())
{
if(counter == pt_num)
break;
crnt_pt = new KeyPoint();
crnt_pt->KP = true;
if(col == 6)
{
(*keyfile)>>x;
crnt_pt->x = (int)round(x);
(*keyfile)>>y;
crnt_pt->y = (int)round(y);
(*keyfile)>>crnt_pt->a;
(*keyfile)>>crnt_pt->b;
(*keyfile)>>crnt_pt->c;
(*keyfile)>>crnt_pt->iscale;
crnt_pt->ori = 0;
crnt_pt->funcVal = 1;
}else if(col == 7)
{
(*keyfile)>>x;
crnt_pt->x = (int)round(x);
(*keyfile)>>y;
crnt_pt->y = (int)round(y);
(*keyfile)>>crnt_pt->a;
(*keyfile)>>crnt_pt->b;
(*keyfile)>>crnt_pt->c;
(*keyfile)>>crnt_pt->iscale;
(*keyfile)>>crnt_pt->ori;
crnt_pt->funcVal = 1;
}else if(col == 8){
(*keyfile)>>x;
crnt_pt->x = (int)round(x);
(*keyfile)>>y;
crnt_pt->y = (int)round(y);
(*keyfile)>>crnt_pt->a;
(*keyfile)>>crnt_pt->b;
(*keyfile)>>crnt_pt->c;
(*keyfile)>>crnt_pt->iscale;
(*keyfile)>>crnt_pt->ori;
(*keyfile)>>crnt_pt->funcVal;
}
kplst.push_back(crnt_pt);
counter++;
}//end while
keyfile->close();
delete keyfile;
return true;
}
float *IOTool::load_pcaMat(const char *pcaMatFn, vector<float> &means,
vector<float> &variances, unsigned int &row, unsigned int &col)
{
float *matrix = NULL;
ifstream *inStrm = new ifstream(pcaMatFn);
if(!inStrm->is_open())
{
row = 0;
col = 0;
cout<<"File "<<pcaMatFn<<" not found!\n";
return NULL;
}
(*inStrm)>>row;
(*inStrm)>>col;
if(row > 0)
{
matrix = new float[row*col];
}
else
{
inStrm->close();
return NULL;
}
unsigned int counter = 0, i = 0, j = 0;
float val;
for(i = 0; !inStrm->eof() && i < col; i++)
{
(*inStrm)>>val;
means.push_back(val);
}
for(i = 0; !inStrm->eof() && i < row; i++)
{
(*inStrm)>>val;
val = sqrt(val);
variances.push_back(val);
}
i = 0;
while(!inStrm->eof() && i < row)
{
for(j = 0; j < col; j++)
{
(*inStrm)>>matrix[counter];
counter++;
}
i++;
}
inStrm->close();
return matrix;
}
float *IOTool::loadMat(const char *matFn, unsigned int &row, unsigned int &col)
{
float *matrix = NULL;
ifstream *inStrm = new ifstream(matFn);
if(!inStrm->is_open())
{
row = 0;
col = 0;
cout<<"File "<<matFn<<" not found!\n";
return NULL;
}
(*inStrm)>>row;
(*inStrm)>>col;
if(row > 0)
{
matrix = new float[row*col];
}
else
{
inStrm->close();
return NULL;
}
unsigned int idx = 0, i = 0, j = 0;
while(!inStrm->eof() && i < row)
{
for(j = 0; j < col; j++)
{
(*inStrm)>>matrix[idx];
idx++;
}
i++;
}
inStrm->close();
return matrix;
}