Definition at line 643 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetSegmentationLocator(), GetVideoSet(), and ILOG_VAR. Referenced by mainRepository(). 00644 { 00645 ILOG_VAR(Impala.Application.Repository.DoDiffSegmentation); 00646 CmdOptions& options = CmdOptions::GetInstance(); 00647 00648 SegmentationLocator loc1 = GetSegmentationLocator(options, true); 00649 VideoSet* vidSet1 = GetVideoSet(options, true); 00650 Segmentation* seg1 = SegmentationRepository().Get(loc1, vidSet1); 00651 00652 SegmentationLocator loc2 = GetSegmentationLocator(options, false); 00653 VideoSet* vidSet2 = VideoSetRepository().Get(loc2); 00654 Segmentation* seg2 = SegmentationRepository().Get(loc2, vidSet2); 00655 00656 seg1->Diff(seg2); 00657 00658 delete seg2; 00659 delete seg1; 00660 delete vidSet2; 00661 delete vidSet1; 00662 }
Here is the call graph for this function: ![]()
|