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

TaskTable* Impala::Application::VidSet::MakeVideoTaskTable ( VideoSet *  videoSet,
Walker *  walker,
String  cmd,
String  quidFile 
)

Definition at line 198 of file mainVidSet.cpp.

References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), MakeVideoTaskTableByFrames(), MakeVideoTaskTableByQuids(), MakeVideoTaskTableByVideo(), and MakeVideoTaskTableByVideoSize().

Referenced by mainVidSet().

00199 {
00200     CmdOptions& options = CmdOptions::GetInstance();
00201     int startTask = options.GetInt("startTask");
00202     if ((cmd == "tasktable") || (startTask != -1))
00203     {
00204         if (!quidFile.empty())
00205             return MakeVideoTaskTableByQuids(videoSet, walker);
00206         if (options.GetBool("taskByVideoSize"))
00207             return MakeVideoTaskTableByVideoSize(videoSet, walker);
00208         return MakeVideoTaskTableByFrames(videoSet, walker);
00209     }
00210     return MakeVideoTaskTableByVideo(videoSet, walker);
00211 }

Here is the call graph for this function:


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