浏览代码

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
             {