diff --git a/tcp/MyClient.cpp b/tcp/MyClient.cpp index f4da9f2..890d53b 100644 --- a/tcp/MyClient.cpp +++ b/tcp/MyClient.cpp @@ -25,9 +25,9 @@ void MyClient::handleMessage(const std::string& message) for (auto& [tag, pos] : arucoTags) { res += std::to_string(tag.id) + " "; - res += std::to_string(pos.first.at(0, 0)) + " "; - res += std::to_string(pos.first.at(1, 0)) + " "; - res += std::to_string(pos.first.at(2, 0)) + " "; + res += std::to_string(pos.first.at(0, 0)) + " "; + res += std::to_string(pos.first.at(1, 0)) + " "; + res += std::to_string(pos.first.at(2, 0)) + " "; } }