From 0688756b71b40e0ac60c68af2fa1fe4aaeb1718d Mon Sep 17 00:00:00 2001 From: houxiao <houxiao@454eff88-639b-444f-9e54-f578c98de674> Date: 星期一, 13 二月 2017 16:27:41 +0800 Subject: [PATCH] replace log to support android --- RtspFace/PL_SensetimeFaceTrack.cpp | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/RtspFace/PL_SensetimeFaceTrack.cpp b/RtspFace/PL_SensetimeFaceTrack.cpp index 7802631..64dfa4f 100644 --- a/RtspFace/PL_SensetimeFaceTrack.cpp +++ b/RtspFace/PL_SensetimeFaceTrack.cpp @@ -77,7 +77,7 @@ in->config.point_size_config = CV_DETECT_ENABLE_ALIGN_106; else { - LOG_ERROR << "alignment point size must be 21 or 106"; + LOG_ERROR << "alignment point size must be 21 or 106" << std::endl; return false; } @@ -86,7 +86,7 @@ in->config.point_size_config | CV_FACE_TRACKING_TWO_THREAD); if (cv_result != CV_OK) { - LOG_ERROR << "cv_face_create_tracker failed, error code" << cv_result; + LOG_ERROR << "cv_face_create_tracker failed, error code" << cv_result << std::endl; return false; } @@ -94,11 +94,11 @@ cv_result = cv_face_track_set_detect_face_cnt_limit(in->handle_track, in->config.detect_face_cnt_limit, &val); if (cv_result != CV_OK) { - LOG_ERROR << "cv_face_track_set_detect_face_cnt_limit failed, error : " << cv_result; + LOG_ERROR << "cv_face_track_set_detect_face_cnt_limit failed, error : " << cv_result << std::endl; return false; } else - LOG_ERROR << "detect face count limit : " << val; + LOG_ERROR << "detect face count limit : " << val << std::endl; return true; } @@ -127,7 +127,7 @@ CV_FACE_UP, &p_face, &face_count); if (cv_result != CV_OK) { - LOG_ERROR << "cv_face_track failed, error : " << cv_result; + LOG_ERROR << "cv_face_track failed, error : " << cv_result << std::endl; cv_face_release_tracker_result(p_face, face_count); return -1; } @@ -213,7 +213,7 @@ if (pm.type != PipeMaterial::PMT_FRAME) { - LOG_ERROR << "Only support PMT_FRAME"; + LOG_ERROR << "Only support PMT_FRAME" << std::endl; return false; } @@ -223,7 +223,7 @@ MB_Frame* frame = (MB_Frame*)pm.buffer; if (frame->type != MB_Frame::MBFT_YUV420) { - LOG_ERROR << "Only support MBFT_YUV420"; + LOG_ERROR << "Only support MBFT_YUV420" << std::endl; return false; } -- Gitblit v1.8.0