X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=src%2FEngine.cpp;h=49a17daee4f7ec4963e4029f0552ee472203dbb4;hb=2c38aedb2051562fc83dd20037e0f5271355b591;hp=7b00ce6c188be041213dc335b9fce62ae25a6955;hpb=b5342c4a4bbfb17346e7bffc5dae129290d184be;p=trackerpp.git diff --git a/src/Engine.cpp b/src/Engine.cpp index 7b00ce6..49a17da 100644 --- a/src/Engine.cpp +++ b/src/Engine.cpp @@ -1,51 +1,73 @@ +#include +#include #include "Engine.h" #include "Logger.h" -#include using namespace suanzi; const static std::string TAG = "Engine"; static std::mutex g_mutex; -static Engine* g_instance = nullptr; +static EngineWPtr g_instance; -Engine::Engine() -{ -} -Engine* Engine::create() +EnginePtr Engine::create() { LOG_DEBUG(TAG, "create"); std::lock_guard lock(g_mutex); - if (g_instance) - return g_instance; - - Engine* instance (new Engine()); + if (g_instance.lock()){ + LOG_ERROR(TAG, "already exists"); + return EnginePtr(); // nullptr + } + EnginePtr instance (new Engine()); g_instance = instance; - return g_instance; + return instance; } -void Engine::destroy() +Engine::Engine() { - delete g_instance; + detector = std::make_shared(); + MetricsPtr m (new Metrics("model.pkl")); + multiTracker = std::make_shared(m); } Engine::~Engine() +{ +} + +void Engine::destroy() +{ +} + + +void Engine::setVideoSrc(VideoSrcType type, const std::string& url) { +// videoSrc = url; + reader = VideoReaderFactory::createVideoReader(type, url); } -void Engine::setVideoSrc(const std::string& url) +void Engine::run() { - videoSrc = url; + LOG_DEBUG(TAG, "run"); + cv::Mat frame; + Detection detections[128]; + while (reader->read(frame)){ + LOG_DEBUG(TAG, "Size: " << frame.cols << "x" << frame.rows); + // TODO + int total = detector->detect(frame, detections); + multiTracker->update(total, detections, frame); + } } void Engine::start() { LOG_DEBUG(TAG, "start"); - Person p; - for(auto& o: observer_list){ - o->onPersonIn(p); + if (!reader){ + LOG_ERROR(TAG, "reader is null. exit"); + return; } + std::thread t(&Engine::run, this); + t.join(); } void Engine::addObserver(EngineObserver *observer)