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

virtual Impala::Core::Table::Bayes::~Bayes (  )  [inline, virtual]

Definition at line 141 of file Bayes.h.

References mAnnoImgSet, mAnnoVidSet, mConceptNum, mGenreNum, mImgSet, mIsImageSet, mProb_c_g, mTabConceptSet, mTabGenreSet, mVidSet, ReleaseMatrix(), tabConcept, and tabGenre.

00142     {
00143         for (int k=0;k<mConceptNum;k++)
00144         {
00145             delete []tabConcept[k];
00146         }
00147         for (int j=0;j<mGenreNum;j++)
00148         {
00149             delete []tabGenre[j];
00150         }
00151         delete []tabConcept;
00152         delete []tabGenre;
00153      
00154         delete mTabGenreSet;
00155         delete mTabConceptSet;
00156 
00157         if (mIsImageSet)
00158         {
00159             if (NULL != mAnnoImgSet)
00160                 delete mAnnoImgSet;
00161             if (NULL != mImgSet)
00162                 delete mImgSet;
00163         }
00164         else
00165         {
00166             if (NULL != mAnnoVidSet)
00167                 delete mAnnoVidSet;
00168             if (NULL != mVidSet)
00169                 delete mVidSet;
00170         }
00171 
00172         //delete mAnnoQuidTable;
00173 
00174         ReleaseMatrix(mProb_c_g, mConceptNum);
00175 
00176     }

Here is the call graph for this function:


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