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

bool Impala::Core::Table::BayesFusion::Initialization (  )  [inline]

Definition at line 105 of file BayesFusion.h.

References conceptSimTable, genreSimTable, Impala::Core::Table::Bayes::LoadMatrix(), Impala::Core::Table::Bayes::mConceptNum, and Impala::Core::Table::Bayes::mGenreNum.

Referenced by DoFusion().

00106     {
00107         //(LoadNumFromAnnotation())
00108         //AllocateMatrix(mProb_c_g, mConceptNum, mGenreNum);
00109 
00110         bool success = LoadMatrix(true);
00111         if (success)
00112         {
00113             for (int j=0; j<mGenreNum; j++)
00114                 genreSimTable = new SimilarityTableSet::SimTableType*[mGenreNum];
00115 
00116             for (int k=0; k<mConceptNum; k++)
00117                 conceptSimTable = new SimilarityTableSet::SimTableType*[mConceptNum];
00118 
00119             return true;
00120 
00121         } else {
00122             return false;
00123         }        
00124     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:48 2011 for ImpalaSrc by  doxygen 1.5.1