소스 검색

print mat

leon 1 개월 전
부모
커밋
36b48790fa
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/nodes/infer/inferNode.cpp

+ 2 - 0
src/nodes/infer/inferNode.cpp

@@ -60,7 +60,9 @@ void InferNode::work()
             else if(std::holds_alternative<cv::Mat>(det_result))
             {
                 auto depth_mat = std::get<cv::Mat>(det_result);
+                print_mat(depth_mat);
                 metaData->depth = depth_mat;
+
             }
             else
             {