Browse Source

print mat

leon 1 month ago
parent
commit
36b48790fa
1 changed files with 2 additions and 0 deletions
  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))
             else if(std::holds_alternative<cv::Mat>(det_result))
             {
             {
                 auto depth_mat = std::get<cv::Mat>(det_result);
                 auto depth_mat = std::get<cv::Mat>(det_result);
+                print_mat(depth_mat);
                 metaData->depth = depth_mat;
                 metaData->depth = depth_mat;
+
             }
             }
             else
             else
             {
             {