From 59570606b716a52ba3018b68aa892242eb9b316c Mon Sep 17 00:00:00 2001 From: Samuel Venzi Date: Tue, 11 Oct 2016 02:50:25 -0300 Subject: [PATCH] removed debug --- src/vision/tracked_object.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/vision/tracked_object.cpp b/src/vision/tracked_object.cpp index cee790a..71e46f3 100644 --- a/src/vision/tracked_object.cpp +++ b/src/vision/tracked_object.cpp @@ -107,10 +107,8 @@ void TrackedObject::runTracking() for (int i = 0; i < last_pose_vector_.size(); ++i) { theta[i] = atan2(last_pose_vector_[i].y, last_pose_vector_[i].x); - ROS_INFO_STREAM("X: " << last_pose_vector_[i].x << "Y: " << last_pose_vector_[i].y); } orientation_ = theta; - ROS_INFO_STREAM("THETA " << orientation_[0] << orientation_[1] << orientation_[2]); } }