app-resample-eyeS.C
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef APPPSYCHO_APP_RESAMPLE_EYES_C_DEFINED
00039 #define APPPSYCHO_APP_RESAMPLE_EYES_C_DEFINED
00040
00041 #include "Component/ModelManager.H"
00042 #include "Psycho/EyeSFile.H"
00043
00044 #include <fstream>
00045
00046
00047
00048
00049
00050 int main(int argc, char** argv)
00051 {
00052 MYLOGVERB = LOG_INFO;
00053
00054 ModelManager manager(argv[0]);
00055
00056 nub::ref<EyeSFile> eyeS(new EyeSFile(manager));
00057 manager.addSubComponent(eyeS);
00058
00059 if (manager.parseCommandLine(argc, argv, "newrate outfile", 2, 2) == false)
00060 return(1);
00061
00062 const std::string newrate_string = manager.getExtraArg(0);
00063 const SimTime newrate = SimTime::fromString(newrate_string);
00064
00065 const std::string newname = manager.getExtraArg(1);
00066
00067 std::ofstream ofs(newname.c_str());
00068
00069 if (!ofs.is_open())
00070 LFATAL("Couldn't open '%s' for writing", newname.c_str());
00071
00072 SimTime t = newrate;
00073 int npts = 0;
00074
00075 manager.start();
00076
00077 while (1)
00078 {
00079 const Point2D<int> pt = eyeS->readUpTo(t);
00080
00081 if (pt.i == -1 && pt.j == -1)
00082 break;
00083
00084 ofs << pt.i << ' ' << pt.j << '\n';
00085
00086 t += newrate;
00087 ++npts;
00088 }
00089
00090 ofs.close();
00091
00092 LINFO("wrote %d samples to %s", npts, newname.c_str());
00093
00094 {
00095 std::ofstream f((newname + ".npts").c_str());
00096 if (!f.is_open())
00097 LFATAL("Couldn't open '%s.npts' for writing", newname.c_str());
00098 f << npts << '\n';
00099 f.close();
00100 LINFO("wrote %s.npts = %d", newname.c_str(), npts);
00101 }
00102
00103 {
00104 std::ofstream f((newname + ".ntrash").c_str());
00105 if (!f.is_open())
00106 LFATAL("Couldn't open '%s.ntrash' for writing", newname.c_str());
00107
00108
00109 const int new_ntrash = 0;
00110 f << new_ntrash << '\n';
00111 f.close();
00112 LINFO("wrote %s.ntrash = %d", newname.c_str(), new_ntrash);
00113 }
00114
00115 {
00116 std::ofstream f((newname + ".rate").c_str());
00117 if (!f.is_open())
00118 LFATAL("Couldn't open '%s.rate' for writing", newname.c_str());
00119 f << newrate_string << '\n';
00120 f.close();
00121 LINFO("wrote %s.rate = %s", newname.c_str(), newrate_string.c_str());
00122 }
00123
00124 manager.stop();
00125
00126 return 0;
00127 }
00128
00129
00130
00131
00132
00133
00134
00135
00136 #endif // APPPSYCHO_APP_RESAMPLE_EYES_C_DEFINED