remove log

This commit is contained in:
ackimixs
2024-04-29 12:07:36 +02:00
parent 728c3906a0
commit 68508e60e2

View File

@@ -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<double>(2, 0) << " " << matrix.first.at<double>(0, 0) << std::endl;
// std::cout << tags.id << " " << tags.name << " " << matrix.first.at<double>(2, 0) << " " << matrix.first.at<double>(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<double>(2, 0) << " " << matrix.first.at<double>(0, 0) << std::endl;
// std::cout << tags.id << " " << tags.name << " " << matrix.first.at<double>(2, 0) << " " << matrix.first.at<double>(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;