diff --git a/src/detector.cpp b/src/detector.cpp index db8f825..c79eba3 100644 --- a/src/detector.cpp +++ b/src/detector.cpp @@ -590,6 +590,9 @@ class UVDARDetector : public nodelet::Nodelet{ //ROS_INFO_STREAM("[UVDARDetector]: Processing image with tracking points only."); ROS_INFO_STREAM("[UVDARDetector]: Processing image with adaptive thresholding. In camera: " << image_index); + //Print number of points given + ROS_INFO_STREAM("[UVDARDetector]: Tracking points provided: " << trackingPointsPerCamera[image_index].size()); + processAdaptive(image, image_index, trackingPointsPerCamera[image_index]); }