diff --git a/arucoDetector.cpp b/arucoDetector.cpp index cfaae99..4c2b233 100644 --- a/arucoDetector.cpp +++ b/arucoDetector.cpp @@ -85,12 +85,12 @@ int main(int argc, char *argv[]) for (const auto& [tags, matrix] : r.second) { if (tags.type == FLOWER) { - std::cout << tags.id << " " << tags.name << " " << matrix.first.at(2, 0) << " " << matrix.first.at(0, 0) << std::endl; + // std::cout << tags.id << " " << tags.name << " " << matrix.first.at(2, 0) << " " << matrix.first.at(0, 0) << std::endl; //ArucoDetector::flowerDetector(tags, matrix.first, matrix.first, robotPose); } else if (tags.type == SOLAR_PANEL) { - std::cout << tags.id << " " << tags.name << " " << matrix.first.at(2, 0) << " " << matrix.first.at(0, 0) << std::endl; + // std::cout << tags.id << " " << tags.name << " " << matrix.first.at(2, 0) << " " << matrix.first.at(0, 0) << std::endl; //ArucoDetector::solarPanelDetector(tags, matrix.first, matrix.first, robotPose); } } @@ -99,7 +99,7 @@ int main(int argc, char *argv[]) { break; } - std::cout << std::endl; + // std::cout << std::endl; } return 0;