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

void Impala::Application::Repository::DoDiffKeyframes (  ) 

Definition at line 403 of file mainRepository.cpp.

References Impala::CmdOptions::GetInstance(), GetKeyframesLocator(), GetVideoSet(), and ILOG_VAR.

Referenced by mainRepository().

00404 {
00405     ILOG_VAR(Impala.Application.Repository.DoDiffKeyframes);
00406     CmdOptions& options = CmdOptions::GetInstance();
00407 
00408     KeyframesLocator loc1 = GetKeyframesLocator(options, true);
00409     VideoSet* vidSet1 = GetVideoSet(options, true);
00410     Keyframes* keys1 = KeyframesRepository().Get(loc1, vidSet1);
00411 
00412     KeyframesLocator loc2 = GetKeyframesLocator(options, false);
00413     VideoSet* vidSet2 = VideoSetRepository().Get(loc2);
00414     Keyframes* keys2 = KeyframesRepository().Get(loc2, vidSet2);
00415 
00416     keys1->Diff(keys2);
00417 
00418     delete keys2;
00419     delete keys1;
00420     delete vidSet2;
00421     delete vidSet1;
00422 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:47:55 2010 for ImpalaSrc by  doxygen 1.5.1