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

void Impala::Samples::MonetTest::DoCheckKeyframes ( Connection *  conn  ) 

Definition at line 705 of file mainMonetTest.cpp.

References Impala::Core::VideoSet::Keyframes::Diff(), Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetNrArg(), ILOG_ERROR, ILOG_VAR, MakeKeyframesMapi(), and Impala::Core::VideoSet::MakeVideoSet().

Referenced by mainMonetTest().

00706 {
00707     ILOG_VAR(Impala.Samples.MonetTest.DoCheckKeyframes);
00708     CmdOptions& options = CmdOptions::GetInstance();
00709     if (options.GetNrArg() < 5)
00710     {
00711         ILOG_ERROR("Need more parameters");
00712         return;
00713     }
00714 
00715     String vidSetName = options.GetArg(4);
00716     VideoSet* vidSet = Core::VideoSet::MakeVideoSet(vidSetName);
00717     Keyframes keyframes(vidSet, "keyframes");
00718     Keyframes* keyframes2 = MakeKeyframesMapi(vidSet, conn);
00719     keyframes.Diff(keyframes2);
00720     delete keyframes2;
00721     delete vidSet;
00722 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:38:22 2010 for ImpalaSrc by  doxygen 1.5.1