From 085a95daf482d43529e0aba66c46bde80213f0dc Mon Sep 17 00:00:00 2001 From: ackimixs Date: Mon, 8 Apr 2024 17:10:40 +0200 Subject: [PATCH] log --- arucoDetector.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arucoDetector.cpp b/arucoDetector.cpp index af6cd29..0c81013 100644 --- a/arucoDetector.cpp +++ b/arucoDetector.cpp @@ -80,8 +80,6 @@ int main(int argc, char *argv[]) client.sendMessage("aruco;strat;get robot_pose;0"); while (true) { - std::cout << robotPose->position.x << " " << robotPose->position.y << " " << robotPose->position.z << " " << robotPose->theta << std::endl; - auto r = detector.detectArucoTags({whiteFlower, purpleFlower, solarPanel}); code = r.first; @@ -104,7 +102,7 @@ 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 << " " << matrix.second << std::endl; + std::cout << tags.id << " " << tags.name << " " << matrix.first << " " << matrix.second << std::endl; //ArucoDetector::flowerDetector(tags, matrix.first, matrix.first, robotPose); } else if (tags.type == SOLAR_PANEL)