Definition at line 17 of file mainConceptLearnClient.cpp. References DoActiveLearning(), Impala::CmdOptions::GetInstance(), ILOG_INFO, Impala::Core::VideoSet::MakeVideoSet(), mALE, mKeyframes, mSegmentation, and mVidSet. 00018 { 00019 CmdOptions& options = CmdOptions::GetInstance(); 00020 00021 mALE = new ActiveLearnEngineQuids(); 00022 00023 ILOG_INFO("Doing the obvious..."); 00024 mVidSet = Core::VideoSet::MakeVideoSet("trec2009test.txt"); 00025 mKeyframes = new Core::VideoSet::Keyframes(mVidSet, "keyframes"); 00026 mSegmentation = new Core::VideoSet::Segmentation(mVidSet, "segmentation"); 00027 00028 ILOG_INFO("Starting online learning..."); 00029 DoActiveLearning(); 00030 00031 00032 }
Here is the call graph for this function: ![]()
|