Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Core::Tracking::Classifier::WriteSimpleDebug ( std::ostream &  stream  )  [inline]

Definition at line 134 of file Classifier.h.

References Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CH(), Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CW(), mBackgroundMean, mObjectVectors, and Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::Val().

Referenced by Impala::Core::Tracking::TrackerBackFore::UpdateObject(), and WriteDebug().

00135     {
00136         stream << "[Classifier::WriteDebug]\n  background";
00137         for(int i=0 ; i<mBackgroundMean->CW() ; i++)
00138             stream << " " << mBackgroundMean->Val(i,0);
00139         stream << "\n  object vectors";
00140         for(int i=0 ; i<mObjectVectors->CH() ; i++)
00141         {
00142             stream << "\n  ";
00143             for(int j=0 ; j<mObjectVectors->CW() ; j++)
00144                 stream << " " << mObjectVectors->Val(i,j);
00145         }
00146     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:02 2011 for ImpalaSrc by  doxygen 1.5.1