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

VideoSet* Impala::Application::Repository::GetVideoSet ( String  locString,
String  setName,
bool  required 
)

Definition at line 115 of file mainRepository.cpp.

References Impala::Core::Column::Contains(), Impala::Persistency::VideoSetsRepository::GetInstance(), ILOG_ERROR, and ILOG_VAR.

Referenced by DoCopyFeatureTable(), DoCopyImageArchive(), DoCopyKeyframes(), DoCopySegmentation(), DoCopySimilarityTableSet(), DoCopyVideoSet(), DoDiffFeatureTable(), DoDiffImageArchive(), DoDiffKeyframes(), DoDiffSegmentation(), DoDiffSimilarityTableSet(), DoDiffVideoSet(), DoDumpFeatureTable(), DoDumpImageArchive(), DoDumpKeyframes(), DoDumpSegmentation(), DoDumpSimilarityTableSet(), DoDumpVideoSet(), and GetVideoSet().

00116 {
00117     ILOG_VAR(Impala.Application.Repository.GetVideoSet);
00118 
00119     Locator loc(locString, setName);
00120     VideoSet* vidSet = 0;
00121     if (VideoSetsRepository::GetInstance().Contains(setName))
00122     {
00123         vidSet = VideoSetRepository().Get(loc);
00124     }
00125     else if (required)
00126     {
00127         ILOG_ERROR("Could find " << loc);
00128     }
00129     return vidSet;
00130 }

Here is the call graph for this function:


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