leon 1 month ago
parent
commit
022ef65f4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/nodes/draw/drawNode.cpp

+ 1 - 1
src/nodes/draw/drawNode.cpp

@@ -13,7 +13,7 @@ static std::tuple<int, int, int> getFontSize(const std::string& text)
 {
 {
     int baseline = 0;
     int baseline = 0;
     cv::Size textSize = cv::getTextSize(text, cv::FONT_HERSHEY_SIMPLEX, 1.0, 2, &baseline);
     cv::Size textSize = cv::getTextSize(text, cv::FONT_HERSHEY_SIMPLEX, 1.0, 2, &baseline);
-    std::cout << textSize << std::endl;
+    // std::cout << textSize << std::endl;
     return std::make_tuple(textSize.width, textSize.height, baseline);
     return std::make_tuple(textSize.width, textSize.height, baseline);
 }
 }