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
|
/***************************************************************************
* copyright : (C) 2011 by Karel Vesely,UPGM,FIT,VUT,Brno *
* email : iveselyk@fit.vutbr.cz *
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the APACHE License as published by the *
* Apache Software Foundation; either version 2.0 of the License, *
* or (at your option) any later version. *
* *
***************************************************************************/
#define SVN_DATE "$Date: 2011-03-24 14:59:03 +0100 (Thu, 24 Mar 2011) $"
#define SVN_AUTHOR "$Author: iveselyk $"
#define SVN_REVISION "$Revision: 42 $"
#define SVN_ID "$Id: TSegmenter.cc 42 2011-03-24 13:59:03Z iveselyk $"
#define MODULE_VERSION "1.0.0 "__TIME__" "__DATE__" "SVN_ID
/*** TNetLib includes */
#include "Error.h"
#include "Timer.h"
#include "Features.h"
#include "Common.h"
#include "MlfStream.h"
#include "UserInterface.h"
#include "Timer.h"
/*** STL includes */
#include <iostream>
#include <sstream>
#include <numeric>
/*** Unix includes */
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
//////////////////////////////////////////////////////////////////////
// DEFINES
//
#define SNAME "TSEGMNTER"
using namespace TNet;
void usage(const char* progname)
{
const char *tchrptr;
if ((tchrptr = strrchr(progname, '\\')) != NULL) progname = tchrptr+1;
if ((tchrptr = strrchr(progname, '/')) != NULL) progname = tchrptr+1;
fprintf(stderr,
"\n%s version " MODULE_VERSION "\n"
"\nUSAGE: %s [options] DataFiles...\n\n"
" Option Default\n\n"
" -l dir Set target directory for features !REQ!\n"
//" -y ext Set target feature ext fea_join\n"
" -A Print command line arguments Off\n"
" -C cf Set config file to cf Default\n"
" -D Display configuration variables Off\n"
" -S file Set script file None\n"
" -T N Set trace flags to N 0\n"
" -V Print version information Off\n"
"\n"
"NATURALREADORDER NOSUBDIRS OUTPUTSCRIPT PRINTCONFIG PRINTVERSION SCRIPT TARGETPARAMDIR "/*TARGETPARAMEXT*/" TRACE\n"
"\n"
"STARTFRMEXT ENDFRMEXT CMEANDIR CMEANMASK VARSCALEDIR VARSCALEMASK VARSCALEFN TARGETKIND DERIVWINDOWS DELTAWINDOW ACCWINDOW THIRDWINDOW\n"
"\n"
" %s is Copyright (C) 2010-2011 Karel Vesely\n"
" licensed under the APACHE License, version 2.0\n"
" Bug reports, feedback, etc, to: iveselyk@fit.vutbr.cz\n"
"\n", progname, progname, progname);
exit(-1);
}
///////////////////////////////////////////////////////////////////////
// MAIN FUNCTION
//
int main(int argc, char *argv[]) try
{
const char* p_option_string =
" -l r TARGETPARAMDIR"
// " -y r TARGETPARAMEXT"
" -D n PRINTCONFIG=TRUE"
" -S l SCRIPT"
" -T r TRACE"
" -V n PRINTVERSION=TRUE"
;
UserInterface ui;
FeatureRepository features;
//InputDataProxy data_proxy;
//Network network;
//ObjectiveFunction* p_obj_function = NULL;
Timer timer;
const char* p_script;
const char* p_tgt_param_dir;
// const char* p_tgt_param_ext;
const char* p_output_script;
int trace;
bool create_subdirs;
// variables for feature repository
bool swap_features;
int target_kind;
int deriv_order;
int* p_deriv_win_lenghts;
int start_frm_ext;
int end_frm_ext;
char* cmn_path;
char* cmn_file;
const char* cmn_mask;
char* cvn_path;
char* cvn_file;
const char* cvn_mask;
const char* cvg_file;
// OPTION PARSING ..........................................................
// use the STK option parsing
if (argc == 1) { usage(argv[0]); return 1; }
int args_parsed = ui.ParseOptions(argc, argv, p_option_string, SNAME);
// OPTION RETRIEVAL ........................................................
// extract the feature parameters
swap_features = !ui.GetBool(SNAME":NATURALREADORDER", TNet::IsBigEndian());
target_kind = ui.GetFeatureParams(&deriv_order, &p_deriv_win_lenghts,
&start_frm_ext, &end_frm_ext, &cmn_path, &cmn_file, &cmn_mask,
&cvn_path, &cvn_file, &cvn_mask, &cvg_file, SNAME":", 0);
// extract other parameters
p_script = ui.GetStr(SNAME":SCRIPT", NULL);
p_tgt_param_dir = ui.GetStr(SNAME":TARGETPARAMDIR", NULL);
// p_tgt_param_ext = ui.GetStr(SNAME":TARGETPARAMEXT", NULL);
p_output_script = ui.GetStr(SNAME":OUTPUTSCRIPT", NULL);
create_subdirs = !ui.GetBool(SNAME":NOSUBDIRS", false);
trace = ui.GetInt(SNAME":TRACE", 00);
// process the parameters
if(ui.GetBool(SNAME":PRINTCONFIG", false)) {
std::cout << std::endl;
ui.PrintConfig(std::cout);
std::cout << std::endl;
}
if(ui.GetBool(SNAME":PRINTVERSION", false)) {
std::cout << std::endl;
std::cout << "======= TNET v"MODULE_VERSION" xvesel39 =======" << std::endl;
std::cout << std::endl;
}
ui.CheckCommandLineParamUse();
// the rest of the parameters are the feature files
for (; args_parsed < argc; args_parsed++) {
features.AddFile(argv[args_parsed]);
}
//**************************************************************************
//**************************************************************************
// OPTION PARSING DONE .....................................................
//initialize FeatureRepository
features.AddFileList(p_script);
features.Init(
swap_features, start_frm_ext, end_frm_ext, target_kind,
deriv_order, p_deriv_win_lenghts,
cmn_path, cmn_mask, cvn_path, cvn_mask, cvg_file
);
//start timer
timer.Start();
std::cout << "[Segmentation started]" << std::endl;
//segment the features
size_t cnt = 0;
size_t step = features.QueueSize() / 100;
if(step == 0) step = 1;
//open output script file
std::ofstream out_scp;
if(NULL == p_output_script) Error("OUTPUTSCRIPT parameter needed");
out_scp.open(p_output_script);
if(!out_scp.good()) Error(std::string("Cannot open output script file")+p_output_script);
//store short segments of the data
Matrix<BaseFloat> matrix;
std::string file_out;
features.Rewind();
for( ; !features.EndOfList(); features.MoveNext(), cnt++) {
//read the features
features.ReadFullMatrix(matrix);
//build the output feature filename
file_out = "";
if(NULL != p_tgt_param_dir) {
(file_out += p_tgt_param_dir) += "/";
}
//create directory structure
if(create_subdirs) {
char subd[64];
sprintf(subd,"%06d/",cnt/1000);
file_out += subd;
//create dir
if(access(file_out.c_str(), R_OK|W_OK|X_OK)) {
if(mkdir(file_out.c_str(),0770)) {
Error(std::string("Cannot create directory:")+file_out);
}
}
}
//append logical filename
file_out += features.Current().Logical();
//get the targetkind and source_rate
if(target_kind == PARAMKIND_ANON) {
target_kind = features.CurrentHeader().mSampleKind;
}
int source_rate = features.CurrentHeader().mSamplePeriod;
//write the output feature
features.WriteFeatureMatrix(matrix, file_out, target_kind, source_rate);
//write the output scriptfile record
out_scp << file_out << "[" << start_frm_ext << "," << matrix.Rows()-end_frm_ext-1 << "]\n";
out_scp << std::flush;
if((cnt % step) == 0) std::cout << 100 * cnt / features.QueueSize() << "%, " << std::flush;
}
//close output script file
out_scp.close();
timer.End();
std::cout << "\n[Segmentation finished, elapsed time:( " << timer.Val() <<"s )]" << std::endl;
return 0; ///finish OK
} catch (std::exception& rExc) {
std::cerr << "Exception thrown" << std::endl;
std::cerr << rExc.what() << std::endl;
return 1;
}
|