Fix nan issue in features
[trackerpp.git] / main.cpp
index acbe99a..9008435 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -1,7 +1,7 @@
 #include<iostream>
-#include "src/Engine.h"
+#include "Engine.h"
 #include <string>
-#include "src/Logger.h"
+#include "Logger.h"
 
 #define TAG "Main"
 
@@ -9,28 +9,30 @@ using namespace suanzi;
 
 class Callback : public EngineObserver
 {
-    void onPersonIn(Person& p){
-        LOG_DEBUG(TAG, "OnPersonIn " << p.toString())
-
+    void onPersonsIn(const std::vector<Person>& p){
+        LOG_DEBUG(TAG, "onPersonsIn");
+        for (const auto& i : p){
+            LOG_DEBUG(TAG, "OnPersonIn " << i.toString());
+        }
     };
 
-    void onPersonOut(Person& p) {
-        LOG_DEBUG(TAG, "OnPersonIn " << p.toString())
+    void onPersonsOut(const std::vector<Person>& p) {
+        LOG_DEBUG(TAG, "onPersonsOut");
+        for (const auto& i : p){
+            LOG_DEBUG(TAG, "OnPersonOut " << i.toString());
+        }
     };
 };
 
-
-
 int main(int argc, char* argv[])
 {
-    initLogger("log4cpp.properties");
+    initLogger("./config/log4cpp.properties");
     LOG_DEBUG(TAG, "==================================");
-
-    Engine* e = Engine::create();
+    EnginePtr e = Engine::create();
     e->addObserver(new Callback());
-    e->setVideoSrc("xxxx");
+    e->setVideoSrc(VideoSrcType::URL, "rtsp://192.168.1.75:554/stream1");
+    //e->setVideoSrc(VideoSrcType::URL, "rtsp://192.168.56.101:5454/test.mp4");
     e->start();
-
     e->destroy();
     log4cpp::Category::shutdown();
 }