|
@@ -121,6 +121,10 @@ namespace MIVA
|
|
this->ListenClosed();
|
|
this->ListenClosed();
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+ // 监听推理数据广播
|
|
|
|
+ NoticeCenter::Instance().addListener(0, NOTICE_INFERDATA,[&](){
|
|
|
|
+ this->ListenInferData();
|
|
|
|
+ });
|
|
InfoL << "System initialization is successful!";
|
|
InfoL << "System initialization is successful!";
|
|
return OK;
|
|
return OK;
|
|
}
|
|
}
|
|
@@ -166,9 +170,11 @@ namespace MIVA
|
|
{
|
|
{
|
|
if(this->play == true){
|
|
if(this->play == true){
|
|
this->m_timer2 = std::make_shared<Timer>(20.0f,[&](){
|
|
this->m_timer2 = std::make_shared<Timer>(20.0f,[&](){
|
|
-
|
|
|
|
// 暂停任务
|
|
// 暂停任务
|
|
this->m_Infer->PauseTask();
|
|
this->m_Infer->PauseTask();
|
|
|
|
+
|
|
|
|
+ // 推理结束发布InferData事件
|
|
|
|
+ NoticeCenter::Instance().emitEvent(NOTICE_INFERDATA);
|
|
return false;
|
|
return false;
|
|
}, nullptr);
|
|
}, nullptr);
|
|
this->play = false;
|
|
this->play = false;
|