00001 /*!@file SceneUnderstanding/Regions.H */ 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: Lior Elazary <elazary@usc.edu> 00034 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/plugins/SceneUnderstanding/Regions.H $ 00035 // $Id: Regions.H 13413 2010-05-15 21:00:11Z itti $ 00036 // 00037 00038 #ifndef Regions_H_DEFINED 00039 #define Regions_H_DEFINED 00040 00041 #include "Util/Types.H" 00042 #include "Image/Image.H" 00043 #include "Image/ImageSet.H" 00044 #include "Image/Pixels.H" 00045 #include "Image/Layout.H" 00046 #include "Image/Point3D.H" 00047 #include "plugins/SceneUnderstanding/LGN.H" 00048 #include "plugins/SceneUnderstanding/SMap.H" 00049 #include "Simulation/SimEvents.H" 00050 #include "Simulation/SimModule.H" 00051 #include "Media/MediaSimEvents.H" 00052 #include "Component/ModelOptionDef.H" 00053 #include "Component/OptionManager.H" // for REQUEST_OPTIONALIAS_NEURO() 00054 #include "Component/ModelParam.H" 00055 00056 #include <vector> 00057 #include <string> 00058 00059 class SimEventRegionsPrior; 00060 00061 class Regions : public SimModule 00062 { 00063 public: 00064 00065 struct RegionState 00066 { 00067 std::vector<Point2D<int> > region; 00068 std::vector<Point2D<int> > notRegion; 00069 double prob; 00070 double mu; //the mean of the 00071 double sigma; 00072 RegionState() {} 00073 }; 00074 00075 00076 Regions(OptionManager& mgr, const std::string& descrName = "Regions", 00077 const std::string& tagName = "Regions"); 00078 00079 //! Destructor 00080 ~Regions(); 00081 00082 void evolve(); 00083 00084 Layout<PixRGB<byte> > getDebugImage(); 00085 00086 void calcRegionLikelihood(RegionState& rs); 00087 00088 double calcRegionLikelihood(Image<float>& mu); 00089 00090 protected: 00091 //! Callback for when a new LGN output is ready 00092 SIMCALLBACK_DECLARE(Regions, SimEventLGNOutput); 00093 00094 //! Callback for when a new LGN output is ready 00095 SIMCALLBACK_DECLARE(Regions, SimEventSMapOutput); 00096 00097 //! Callback for every time we should save our outputs 00098 SIMCALLBACK_DECLARE(Regions, SimEventSaveOutput); 00099 00100 //! Callback for every time we have a user event 00101 SIMCALLBACK_DECLARE(Regions, SimEventUserInput); 00102 00103 //! Callback for every time we have a prior input 00104 SIMCALLBACK_DECLARE(Regions, SimEventRegionsPrior); 00105 00106 00107 //! Should we show our debug info 00108 OModelParam<bool> itsShowDebug; 00109 00110 private: 00111 00112 ImageSet<float> itsRegionsCellsInput; //The input to the cells 00113 std::vector<SMap::SMapState> itsSMapInput; //the proposed regions from the saliency map 00114 Point2D<int> itsProbe; 00115 RegionState itsBackgroundRegion; 00116 std::vector<RegionState> itsRegionsState; 00117 std::vector<RegionState> itsRegionsPrior; 00118 std::vector<Point2D<int> > itsUserPolygon; 00119 float itsTempColor; 00120 00121 }; 00122 00123 /* ############################### Regions sim events ######################## */ 00124 class SimEventRegionsOutput : public SimEvent 00125 { 00126 public: 00127 SimEventRegionsOutput(SimModule* src, std::vector<Regions::RegionState>& cellsOutput) : 00128 SimEvent(src), itsCells(cellsOutput) 00129 {} 00130 00131 virtual ~SimEventRegionsOutput(){} 00132 std::vector<Regions::RegionState> getCells() { return itsCells; } 00133 00134 private: 00135 const std::vector<Regions::RegionState>& itsCells; 00136 }; 00137 00138 /* ############################### Objects sim events ######################## */ 00139 class SimEventRegionsPrior : public SimEvent 00140 { 00141 public: 00142 SimEventRegionsPrior(SimModule* src, 00143 std::vector<Regions::RegionState>& regions) : 00144 SimEvent(src), itsRegions(regions) 00145 {} 00146 00147 virtual ~SimEventRegionsPrior(){} 00148 std::vector<Regions::RegionState> getRegions() { return itsRegions; } 00149 00150 private: 00151 const std::vector<Regions::RegionState>& itsRegions; 00152 }; 00153 00154 00155 00156 // ###################################################################### 00157 /* So things look consistent in everyone's emacs... */ 00158 /* Local Variables: */ 00159 /* indent-tabs-mode: nil */ 00160 /* End: */ 00161 00162 #endif //