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

void Impala::Core::Feature::RandomTree::DumpCount ( std::ostream &  os  )  [inline]

Definition at line 92 of file RandomTree.h.

References DumpCount(), mCodeWord, mCount, mLeft, and mRight.

Referenced by DumpCount(), and DumpTreeCounts().

00093     {
00094         if(mCodeWord >= 0)
00095             os << mCodeWord <<": "<< mCount << "\n";
00096         else
00097         {
00098             mLeft->DumpCount(os);
00099             mRight->DumpCount(os);
00100         }
00101     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:10:36 2010 for ImpalaSrc by  doxygen 1.5.1