test-BinRecognizer.C

Go to the documentation of this file.
00001 /*!@file SeaBee/test-BinRecognizer.C test pipe recognizer   */
00002 // //////////////////////////////////////////////////////////////////// //
00003 // The iLab Neuromorphic Vision C++ Toolkit - Copyright (C) 2001 by the //
00004 // University of Southern California (USC) and the iLab at USC.         //
00005 // See http://iLab.usc.edu for information about this project.          //
00006 // //////////////////////////////////////////////////////////////////// //
00007 // Major portions of the iLab Neuromorphic Vision Toolkit are protected //
00008 // under the U.S. patent ``Computation of Intrinsic Perceptual Saliency //
00009 // in Visual Environments, and Applications'' by Christof Koch and      //
00010 // Laurent Itti, California Institute of Technology, 2001 (patent       //
00011 // pending; application number 09/912,225 filed July 23, 2001; see      //
00012 // http://pair.uspto.gov/cgi-bin/final/home.pl for current status).     //
00013 // //////////////////////////////////////////////////////////////////// //
00014 // This file is part of the iLab Neuromorphic Vision C++ Toolkit.       //
00015 //                                                                      //
00016 // The iLab Neuromorphic Vision C++ Toolkit is free software; you can   //
00017 // redistribute it and/or modify it under the terms of the GNU General  //
00018 // Public License as published by the Free Software Foundation; either  //
00019 // version 2 of the License, or (at your option) any later version.     //
00020 //                                                                      //
00021 // The iLab Neuromorphic Vision C++ Toolkit is distributed in the hope  //
00022 // that it will be useful, but WITHOUT ANY WARRANTY; without even the   //
00023 // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      //
00024 // PURPOSE.  See the GNU General Public License for more details.       //
00025 //                                                                      //
00026 // You should have received a copy of the GNU General Public License    //
00027 // along with the iLab Neuromorphic Vision C++ Toolkit; if not, write   //
00028 // to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,   //
00029 // Boston, MA 02111-1307 USA.                                           //
00030 // //////////////////////////////////////////////////////////////////// //
00031 //
00032 // Primary maintainer for this file: Michael Montalbo <montalbo@usc.edu>
00033 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/SeaBee/test-BinRecognizer.C $
00034 // $Id: test-BinRecognizer.C 10794 2009-02-08 06:21:09Z itti $
00035 
00036 #include "Component/ModelManager.H"
00037 
00038 #include "Media/FrameSeries.H"
00039 #include "Transport/FrameIstream.H"
00040 #include "Media/MediaOpts.H"
00041 
00042 #include "Image/Image.H"
00043 #include "Image/Pixels.H"
00044 #include "Raster/Raster.H"
00045 #include "Image/CutPaste.H"
00046 #include "Image/OpenCVUtil.H"
00047 
00048 #include "BeoSub/IsolateColor.H"
00049 #include "Image/DrawOps.H"
00050 #include "Image/ColorOps.H"
00051 
00052 #include "GUI/XWinManaged.H"
00053 
00054 #include "SeaBee/BinRecognizer.H"
00055 
00056 
00057 int main(int argc, char* argv[])
00058 {
00059 
00060   MYLOGVERB = LOG_INFO;
00061 
00062   ModelManager manager("BinRecognizer Tester");
00063 
00064   nub::soft_ref<InputFrameSeries> ifs(new InputFrameSeries(manager));
00065   manager.addSubComponent(ifs);
00066 
00067   manager.exportOptions(MC_RECURSE);
00068 
00069   // Parse command-line:
00070   if (manager.parseCommandLine(argc, argv,
00071                                "[image {*.ppm}]",
00072                                0, 1)
00073       == false) return(1);
00074 
00075   int w = ifs->getWidth(),  h = ifs->getHeight();
00076   std::string dims = convertToString(Dims(w, h));
00077   LINFO("image size: [%dx%d]", w, h);
00078   manager.setOptionValString(&OPT_InputFrameDims, dims);
00079 
00080   manager.setModelParamVal("InputFrameDims", Dims(w, h),
00081                            MC_RECURSE | MC_IGNORE_MISSING);
00082 
00083   manager.start();
00084 
00085   bool goforever = true;
00086 
00087   rutz::shared_ptr<XWinManaged> dispWin;
00088   dispWin.reset(new XWinManaged(Dims(w*2,h*2), 0, 0, "Bin Recognizer Display"));
00089 
00090   // input and output image
00091   rutz::shared_ptr<Image< PixRGB<byte> > > img;//
00092   img.reset(new Image< PixRGB<byte> >(w,h, ZEROS));
00093 
00094   //  rutz::shared_ptr<Image< PixRGB<byte> > > outputImg(new Image<PixRGB<byte> >(w,h, ZEROS));
00095 
00096   rutz::shared_ptr<BinRecognizer> binRecognizer(new BinRecognizer());
00097   rutz::shared_ptr<Point2D<int> > binCenter(new Point2D<int>(0,0));
00098 
00099   uint fNum = 0;
00100   while(goforever)
00101     {
00102       Image< PixRGB<byte> > dispImg(w*2,h*2, ZEROS);
00103       rutz::shared_ptr<Image< PixRGB<byte> > > outputImg(new Image<PixRGB<byte> >(w,h, ZEROS));
00104 
00105       ifs->updateNext(); *img = ifs->readRGB();
00106       if(!img->initialized()) {Raster::waitForKey(); break; }
00107 
00108       inplacePaste(dispImg, *img, Point2D<int>(0,0));
00109 
00110       uint staleCount = 0;
00111 
00112       binRecognizer->getBinLocation(img,
00113                                     outputImg,
00114                                     BinRecognizer::CONTOUR,
00115                                     binCenter,
00116                                     staleCount);
00117 
00118       drawLine(*outputImg, *binCenter,  *binCenter+2, PixRGB <byte> (255, 255,0), 3);
00119 
00120       inplacePaste(dispImg, *outputImg, Point2D<int>(0,h));
00121 
00122       dispWin->drawImage(dispImg, 0, 0);
00123       LINFO("%d",fNum); fNum++;
00124 
00125       //wait a little
00126       //Raster::waitForKey();
00127     }
00128 
00129   // get ready to terminate:
00130   manager.stop();
00131   return 0;
00132 }
00133 
00134 // ######################################################################
00135 /* So things look consistent in everyone's emacs... */
00136 /* Local Variables: */
00137 /* indent-tabs-mode: nil */
00138 /* End: */
Generated on Sun May 8 08:06:46 2011 for iLab Neuromorphic Vision Toolkit by  doxygen 1.6.3