Definition at line 318 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetSegmentationLocator(), GetVideoSet(), and ILOG_VAR. Referenced by mainRepository(). 00319 { 00320 ILOG_VAR(Impala.Application.Repository.DoDiffSegmentation); 00321 CmdOptions& options = CmdOptions::GetInstance(); 00322 00323 SegmentationLocator loc1 = GetSegmentationLocator(options, true); 00324 VideoSet* vidSet1 = GetVideoSet(options, true); 00325 Segmentation* seg1 = SegmentationRepository().Get(loc1, vidSet1); 00326 00327 SegmentationLocator loc2 = GetSegmentationLocator(options, false); 00328 VideoSet* vidSet2 = VideoSetRepository().Get(loc2); 00329 Segmentation* seg2 = SegmentationRepository().Get(loc2, vidSet2); 00330 00331 seg1->Diff(seg2); 00332 00333 delete seg2; 00334 delete seg1; 00335 delete vidSet2; 00336 delete vidSet1; 00337 }
Here is the call graph for this function:
|