diff --git a/CMakeLists.txt b/CMakeLists.txt index 9df7a03..472427d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,7 +42,7 @@ if(NOT BUILDING_WITH_CATKIN) # ⚠️ placeholder libraries set(PACKAGES_DIR - cv_bridge + robot_sensor_msgs robot_cpp data_convert @@ -64,7 +64,7 @@ if(NOT BUILDING_WITH_CATKIN) else() find_package(catkin REQUIRED COMPONENTS - cv_bridge + robot_sensor_msgs robot_cpp data_convert @@ -88,7 +88,7 @@ else() INCLUDE_DIRS include LIBRARIES ${PROJECT_NAME} CATKIN_DEPENDS - cv_bridge + robot_sensor_msgs robot_cpp data_convert diff --git a/package.xml b/package.xml index 699809c..dd9c5cf 100644 --- a/package.xml +++ b/package.xml @@ -25,7 +25,6 @@ boost - cv_bridge robot_image_geometry eigen robot_sensor_msgs @@ -38,7 +37,6 @@ tf2_ros boost - cv_bridge robot_image_geometry eigen robot_sensor_msgs diff --git a/src/depth_image_proc_node.cpp b/src/depth_image_proc_node.cpp index ee3e33d..d5277b5 100644 --- a/src/depth_image_proc_node.cpp +++ b/src/depth_image_proc_node.cpp @@ -178,15 +178,15 @@ private: const double processed_hz = static_cast(processed_frames_) / window_seconds; const double average_ms = processed_frames_ > 0 ? processing_time_ms_ / static_cast(processed_frames_) : 0.0; - ROS_INFO( - "[%s] depth performance: input=%.1f Hz processed=%.1f Hz " - "skipped=%llu avg=%.2f ms max=%.2f ms", - config_.name.c_str(), - input_hz, - processed_hz, - static_cast(skipped_frames_), - average_ms, - max_processing_time_ms_); + // ROS_INFO( + // "[%s] depth performance: input=%.1f Hz processed=%.1f Hz " + // "skipped=%llu avg=%.2f ms max=%.2f ms", + // config_.name.c_str(), + // input_hz, + // processed_hz, + // static_cast(skipped_frames_), + // average_ms, + // max_processing_time_ms_); metrics_window_start_ = now; received_frames_ = 0;