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

void Impala::Core::Trec::ThreadShots::ConvertToTable ( std::list< ShotResult shotlist,
Core::VideoSet::Segmentation shots 
) [inline, private]

Definition at line 100 of file ThreadShots.h.

References Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Add(), Impala::Core::VideoSet::Segmentation::GetQuidShot(), and mShots.

Referenced by ThreadShots().

00102     {
00103         std::list<ShotResult>::iterator i;
00104         std::map<int,bool> noduplicates;
00105         for (i = shotlist.begin(); i != shotlist.end(); i++)
00106         {
00107             if (i->shotid >= 0 &&
00108                 noduplicates.find(i->shotid) == noduplicates.end())
00109             {
00110                 Quid quid = shots->GetQuidShot(i->shotid);
00111                 mShots->Add(quid, (Real64)i->score);
00112                 noduplicates[i->shotid] = true;
00113             }
00114         }
00115     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:26:25 2010 for ImpalaSrc by  doxygen 1.5.1