leon 1 mēnesi atpakaļ
vecāks
revīzija
022ef65f4d
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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;
     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);
 }