BeobotCamera.C

Go to the documentation of this file.
00001 /*!@file Beobot/BeobotCamera.C A Beobot camera driver */
00002 
00003 // //////////////////////////////////////////////////////////////////// //
00004 // The iLab Neuromorphic Vision C++ Toolkit - Copyright (C) 2000-2003   //
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: Laurent Itti <itti@usc.edu>
00034 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/Beobot/BeobotCamera.C $
00035 // $Id: BeobotCamera.C 7953 2007-02-19 22:51:57Z rjpeters $
00036 //
00037 
00038 #include "Beobot/BeobotCamera.H"
00039 #include "Devices/IEEE1394grabber.H"
00040 #include "Image/Pixels.H"
00041 
00042 #include <pthread.h>
00043 
00044 // ######################################################################
00045 BeobotCameraListener::~BeobotCameraListener()
00046 {  }
00047 
00048 // ######################################################################
00049 void *camera_run(void *c)
00050 {
00051   BeobotCamera *cc = (BeobotCamera *)c;
00052   cc->run();
00053   return NULL;
00054 }
00055 
00056 // ######################################################################
00057 BeobotCamera::BeobotCamera(OptionManager& mgr,
00058                            const std::string& descrName,
00059                            const std::string& tagName) :
00060   ModelComponent(mgr, descrName, tagName),
00061   itsFG(new IEEE1394grabber(mgr)),
00062   itsImage(), itsN(0), itsKeepgoing(true), itsListener(NULL)
00063 {
00064   // add our grabber as subcomponent:
00065   addSubComponent(itsFG);
00066 
00067   // setup some grabbing defaults:
00068   itsFG->setModelParamVal("FrameGrabberMode", VIDFMT_YUV444);
00069   itsFG->setModelParamVal("FrameGrabberDims", Dims(160, 120));
00070   itsFG->setModelParamVal("FrameGrabberNbuf", 2);
00071   pthread_mutex_init(&itsLock, NULL);
00072 }
00073 
00074 // ######################################################################
00075 BeobotCamera::~BeobotCamera()
00076 { pthread_mutex_destroy(&itsLock); }
00077 
00078 // ######################################################################
00079 void BeobotCamera::setListener(rutz::shared_ptr<BeobotCameraListener>& listener)
00080 { itsListener = listener; }
00081 
00082 // ######################################################################
00083 void BeobotCamera::start2()
00084 {
00085   itsKeepgoing = true;
00086   itsImage.resize(itsFG->getWidth(), itsFG->getHeight());
00087   pthread_create(&itsRunner, NULL, &camera_run, (void *)this);
00088 }
00089 
00090 // ######################################################################
00091 void BeobotCamera::stop1()
00092 {
00093   itsKeepgoing = false;
00094   usleep(300000); // make sure thread has exited
00095 }
00096 
00097 // ######################################################################
00098 void BeobotCamera::run()
00099 {
00100   while(itsKeepgoing)
00101     {
00102       itsFG->grabPrealloc(itsImage, &itsLock, &itsN);
00103       if (itsListener.get()) itsListener->newFrame(itsImage, itsN);
00104     }
00105   pthread_exit(0);
00106 }
00107 
00108 // ######################################################################
00109 void BeobotCamera::grab(Image< PixRGB<byte> >& image, int& frame)
00110 {
00111   image.resize(itsImage.getDims());
00112 
00113   pthread_mutex_lock(&itsLock);
00114   memcpy(image.getArrayPtr(), itsImage.getArrayPtr(), itsImage.getSize() * 3);
00115   frame = itsN;
00116   pthread_mutex_unlock(&itsLock);
00117 }
00118 
00119 // ######################################################################
00120 /* So things look consistent in everyone's emacs... */
00121 /* Local Variables: */
00122 /* indent-tabs-mode: nil */
00123 /* End: */
Generated on Sun May 8 08:04:29 2011 for iLab Neuromorphic Vision Toolkit by  doxygen 1.6.3