Add boost python, and predictor wrapper
[trackerpp.git] / src / Engine.cpp
index 49a17da..6d44f3c 100644 (file)
@@ -2,6 +2,7 @@
 #include <thread>
 #include "Engine.h"
 #include "Logger.h"
+#include "PredictorWrapper.h"
 
 using namespace suanzi;
 
@@ -42,8 +43,13 @@ void Engine::destroy()
 
 void Engine::setVideoSrc(VideoSrcType type, const std::string& url)
 {
+    PredictorWrapperPtr pp = PredictorWrapper::create("./python/model.pkl");
+
+    pp->dump();
+
 //    videoSrc = url;
-    reader = VideoReaderFactory::createVideoReader(type, url);
+    //reader = VideoReaderFactory::createVideoReader(type, url);
+
 }
 
 void Engine::run()