From f90081d79e96c735b368cc8890878e06d92398c1 Mon Sep 17 00:00:00 2001 From: zhutian Date: Mon, 17 May 2021 09:53:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B6=88=E6=81=AF=E5=8F=91?= =?UTF-8?q?=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../face_recognition_camera/src/mind_camera.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cplusplus/level2_simple_inference/n_performance/1_multi_process_thread/face_recognition_camera/src/mind_camera.cpp b/cplusplus/level2_simple_inference/n_performance/1_multi_process_thread/face_recognition_camera/src/mind_camera.cpp index 54a742d..e3d64ba 100644 --- a/cplusplus/level2_simple_inference/n_performance/1_multi_process_thread/face_recognition_camera/src/mind_camera.cpp +++ b/cplusplus/level2_simple_inference/n_performance/1_multi_process_thread/face_recognition_camera/src/mind_camera.cpp @@ -107,11 +107,11 @@ AtlasError MindCamera::ReadFrameMsgProcess() { } } //Send frame to next(face detection) thread -/* ret = SendMessageToNext(MSG_FRAME_DATA, recogInfo); + ret = SendMessageToNext(MSG_FRAME_DATA, recogInfo); if (ret != ATLAS_OK) { ATLAS_LOG_ERROR("Send preprocess data failed, error %d", ret); return ret; - } */ + } //Send MSG_READ_FRAME to self cause read next frame ret = SendMessage(selfThreadId_, MSG_READ_FRAME, nullptr); if (ret) { -- Gitee