00001 /*!@file Channels/IntensityBandChannel.C */ 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: 00034 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/Channels/IntensityBandChannel.C $ 00035 // $Id: IntensityBandChannel.C 8195 2007-03-30 04:34:07Z rjpeters $ 00036 // 00037 00038 #ifndef INTENSITYBANDCHANNEL_C_DEFINED 00039 #define INTENSITYBANDCHANNEL_C_DEFINED 00040 00041 #include "Channels/IntensityBandChannel.H" 00042 00043 #include "Channels/ChannelOpts.H" 00044 #include "Channels/IntensityChannel.H" 00045 #include "Component/OptionManager.H" 00046 #include "Image/Pixels.H" 00047 00048 #include <vector> 00049 00050 // ###################################################################### 00051 // IntensityBandChannel member definitions: 00052 // ###################################################################### 00053 00054 // ###################################################################### 00055 IntensityBandChannel::IntensityBandChannel(OptionManager& mgr) : 00056 ComplexChannel(mgr, "IntensityBand", "intensityband", INTENS), 00057 itsNumBands(&OPT_NumIntensityBands,this), // see Channels/ChannelOpts.{H,C} 00058 itsSigma(&OPT_IntensityBandWidth, this) // see Channels/ChannelOpts.{H,C} 00059 { 00060 // let's create our subchannels (may be reconfigured if itsNumBands 00061 // gets changed): 00062 buildSubChans(); 00063 } 00064 00065 // ###################################################################### 00066 void IntensityBandChannel::buildSubChans() 00067 { 00068 // kill any subchans we may have had... 00069 this->removeAllSubChans(); 00070 00071 // let's instantiate our subchannels now that we know how many we 00072 // want. They will inherit the current values (typically 00073 // post-command-line parsing) of all their options as they are 00074 // constructed: 00075 LINFO("Using %d intensity bands", itsNumBands.getVal()); 00076 for (uint i = 0; i < itsNumBands.getVal(); i ++) 00077 { 00078 nub::ref<IntensityChannel> chan 00079 (makeSharedComp(new IntensityChannel(getManager(), i))); 00080 00081 this->addSubChan(chan); 00082 00083 // let's export options on the newly built channel: 00084 chan->exportOptions(MC_RECURSE); 00085 } 00086 } 00087 00088 // ###################################################################### 00089 void IntensityBandChannel::paramChanged(ModelParamBase* const param, 00090 const bool valueChanged, 00091 ParamClient::ChangeStatus* status) 00092 { 00093 ComplexChannel::paramChanged(param, valueChanged, status); 00094 00095 // if the param is our number of orientations and it has become 00096 // different from our number of channels, let's reconfigure: 00097 if (param == &itsNumBands && 00098 numChans() != itsNumBands.getVal()) 00099 buildSubChans(); 00100 } 00101 00102 // ###################################################################### 00103 IntensityBandChannel::~IntensityBandChannel() 00104 { } 00105 00106 // ###################################################################### 00107 IntensityChannel& IntensityBandChannel::band(const uint idx) const 00108 { 00109 // Since we are dynamic_cast'ing a reference, this operation will either 00110 // succeed or throw an exception. 00111 return *(dynCast<IntensityChannel>(subChan(idx))); 00112 } 00113 00114 // ###################################################################### 00115 void IntensityBandChannel::doInput(const InputFrame& inframe) 00116 { 00117 ASSERT(inframe.grayFloat().initialized()); 00118 // create bands with different ranges of intensity 00119 std::vector<Image<float> > sub_input(itsNumBands.getVal()); 00120 Image<float>::iterator bptr[sub_input.size()]; 00121 // initialize the pointers 00122 for (uint i = 0; i < sub_input.size(); ++i) { 00123 sub_input[i].resize(inframe.getDims(), true); 00124 bptr[i] = sub_input[i].beginw(); 00125 } 00126 // setup loop parameters 00127 float gap = 255 / sub_input.size(); 00128 float c1 = 10000.0f / (sqrt(6.28) * itsSigma.getVal()); 00129 float c2 = 2.0f * itsSigma.getVal() * itsSigma.getVal(); 00130 // get the intensity at all pixels 00131 Image<float>::const_iterator aptr = inframe.grayFloat().begin(); 00132 Image<float>::const_iterator astop = inframe.grayFloat().end(); 00133 while (aptr != astop) 00134 { 00135 float intens = *aptr; 00136 aptr++; 00137 // what is the response of each band to this intensity? 00138 for (uint i = 0; i < sub_input.size(); ++i) { 00139 /* 00140 // sigmoid activation function 00141 // assume that intensity ranges from 0..255 00142 *(bptr[i]) = 1 / (1 + exp(gap*i - intens)); 00143 */ 00144 // gaussian tuning curve 00145 float dist = intens - i*gap; 00146 *(bptr[i]) = c1 * exp(-1.0f * dist * dist / c2); 00147 bptr[i] = bptr[i] + 1; 00148 } 00149 } 00150 for (uint i = 0; i < sub_input.size(); ++i) 00151 subChan(i)->input(InputFrame::fromGrayFloat 00152 (&sub_input[i], inframe.time(), &inframe.clipMask(), 00153 inframe.pyrCache())); 00154 00155 } 00156 00157 // ###################################################################### 00158 /* So things look consistent in everyone's emacs... */ 00159 /* Local Variables: */ 00160 /* indent-tabs-mode: nil */ 00161 /* End: */ 00162 00163 #endif // INTENSITYBANDCHANNEL_C_DEFINED