Skip to content

Commit 48e9f5e

Browse files
Update eod_node.cpp
removed output
1 parent 06a7fba commit 48e9f5e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/extended_object_detection_node/eod_node.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,12 @@ void EOD_ROS::rgb_info_cb(const sensor_msgs::ImageConstPtr& rgb_image, const sen
171171
//ROS_INFO("Got Image!");
172172
// CHECK RATE
173173
if( !check_time(ros::Time::now()) ) {
174-
ROS_WARN("Skipped frame");
174+
//ROS_WARN("Skipped frame");
175175
return;
176176
}
177177
double lag;
178178
if( !check_lag(rgb_image->header.stamp, lag) ) {
179-
ROS_WARN("Dropped frame, lag = %f", lag);
179+
//ROS_WARN("Dropped frame, lag = %f", lag);
180180
return;
181181
}
182182
cv::Mat rgb;
@@ -196,12 +196,12 @@ void EOD_ROS::rgbd_info_cb(const sensor_msgs::ImageConstPtr& rgb_image, const se
196196
//ROS_INFO("Got RGBD!");
197197
// CHECK RATE
198198
if( !check_time(ros::Time::now()) ) {
199-
ROS_WARN("Skipped frame");
199+
//ROS_WARN("Skipped frame");
200200
return;
201201
}
202202
double lag;
203203
if( !check_lag(rgb_image->header.stamp, lag) ) {
204-
ROS_WARN("Dropped frame, lag = %f", lag);
204+
//ROS_WARN("Dropped frame, lag = %f", lag);
205205
return;
206206
}
207207
// TODO add possibility to exclude old stamp images (if detection goes to slow)

0 commit comments

Comments
 (0)