00001 /*!@file AppPsycho/app-resample-eyeS.C Resample a .eyeS file to a new framerate */ 00002 00003 // //////////////////////////////////////////////////////////////////// // 00004 // The iLab Neuromorphic Vision C++ Toolkit - Copyright (C) 2000-2005 // 00005 // by the University of Southern California (USC) and the iLab at USC. // 00006 // See http://iLab.usc.edu for information about this project. // 00007 // //////////////////////////////////////////////////////////////////// // 00008 // Major portions of the iLab Neuromorphic Vision Toolkit are protected // 00009 // under the U.S. patent ``Computation of Intrinsic Perceptual Saliency // 00010 // in Visual Environments, and Applications'' by Christof Koch and // 00011 // Laurent Itti, California Institute of Technology, 2001 (patent // 00012 // pending; application number 09/912,225 filed July 23, 2001; see // 00013 // http://pair.uspto.gov/cgi-bin/final/home.pl for current status). // 00014 // //////////////////////////////////////////////////////////////////// // 00015 // This file is part of the iLab Neuromorphic Vision C++ Toolkit. // 00016 // // 00017 // The iLab Neuromorphic Vision C++ Toolkit is free software; you can // 00018 // redistribute it and/or modify it under the terms of the GNU General // 00019 // Public License as published by the Free Software Foundation; either // 00020 // version 2 of the License, or (at your option) any later version. // 00021 // // 00022 // The iLab Neuromorphic Vision C++ Toolkit is distributed in the hope // 00023 // that it will be useful, but WITHOUT ANY WARRANTY; without even the // 00024 // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // 00025 // PURPOSE. See the GNU General Public License for more details. // 00026 // // 00027 // You should have received a copy of the GNU General Public License // 00028 // along with the iLab Neuromorphic Vision C++ Toolkit; if not, write // 00029 // to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, // 00030 // Boston, MA 02111-1307 USA. // 00031 // //////////////////////////////////////////////////////////////////// // 00032 // 00033 // Primary maintainer for this file: Rob Peters <rjpeters at usc dot edu> 00034 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/AppPsycho/app-resample-eyeS.C $ 00035 // $Id: app-resample-eyeS.C 9412 2008-03-10 23:10:15Z farhan $ 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 // This program resamples a .eyeS file to a new framerate. Currently, 00047 // the new .eyeS file will have no auxiliary information, i.e., it 00048 // will just have the resampled x and y values. 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 // we skipped over all the old trash, so there is no trash at the 00108 // beginning of the new .eyeS file: 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 /* So things look consistent in everyone's emacs... */ 00131 /* Local Variables: */ 00132 /* mode: c++ */ 00133 /* indent-tabs-mode: nil */ 00134 /* End: */ 00135 00136 #endif // APPPSYCHO_APP_RESAMPLE_EYES_C_DEFINED