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

void @41::DumpTreeCounts ( Feature::RandomTree tree,
int  i 
) [static]

Definition at line 139 of file mainRandomForest.cpp.

References Impala::Core::Feature::RandomTree::DumpCount(), ILOG_ERROR, ILOG_FUNCTION, main(), and Impala::Util::MakeString().

Referenced by RandomForest().

00140 {
00141     ILOG_FUNCTION(main);
00142     std::ofstream ofs(("countdump"+MakeString(i)+".txt").c_str());
00143     if(ofs.is_open())
00144     {
00145         tree->DumpCount(ofs);
00146         ofs.close();
00147     }
00148     else
00149         ILOG_ERROR("couldn't dump tree counts");
00150 }

Here is the call graph for this function:


Generated on Fri Mar 19 09:35:02 2010 for ImpalaSrc by  doxygen 1.5.1