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

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

Definition at line 741 of file mainRepository.cpp.

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

Referenced by mainRepository().

00742 {
00743     ILOG_VAR(Impala.Application.Repository.DoDiffKeyframes);
00744     CmdOptions& options = CmdOptions::GetInstance();
00745 
00746     KeyframesLocator loc1 = GetKeyframesLocator(options, true);
00747     VideoSet* vidSet1 = GetVideoSet(options, true);
00748     Keyframes* keys1 = KeyframesRepository().Get(loc1, vidSet1);
00749 
00750     KeyframesLocator loc2 = GetKeyframesLocator(options, false);
00751     VideoSet* vidSet2 = VideoSetRepository().Get(loc2);
00752     Keyframes* keys2 = KeyframesRepository().Get(loc2, vidSet2);
00753 
00754     keys1->Diff(keys2);
00755 
00756     delete keys2;
00757     delete keys1;
00758     delete vidSet2;
00759     delete vidSet1;
00760 }

Here is the call graph for this function:


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