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

Feature::FeatureTable* Impala::Core::Training::TrainDataSrcFeature::GetFeatureTableWithCache ( int  videoId  )  [inline, private]

Definition at line 138 of file TrainDataSrcFeature.h.

References Impala::Core::DataFactory::MakeFeatureTable(), mDataFactory, and mFeatureTableCache.

Referenced by MakeSvmProblem().

00139     {
00140         Feature::FeatureTable* table=0;
00141         //ILOG_DEBUG_NODE("querying cache...");
00142         if(!mFeatureTableCache.GetElement(videoId, table))
00143         {
00144             ILOG_DEBUG_NODE("not found, making new table");
00145             table = mDataFactory->MakeFeatureTable(videoId);
00146             ILOG_DEBUG_NODE("adding to cache...");
00147             mFeatureTableCache.AddElement(videoId, table);
00148         }
00149         //ILOG_DEBUG_NODE("returning table");
00150         return table;
00151     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:24:52 2010 for ImpalaSrc by  doxygen 1.5.1