diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 22:05:39 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 22:14:51 +0200 |
commit | edec06ae5e79e0f37c6984b96a350774c8e34520 (patch) | |
tree | 561dda658f3f4de07b96a6d7fabf8a70745cd52c /tracker-aruco | |
parent | 5972037c63ac12e8c9ffed84f842347756b82917 (diff) |
tracker/{pt,aruco}: fix snprintf invocation
Diffstat (limited to 'tracker-aruco')
-rw-r--r-- | tracker-aruco/ftnoir_tracker_aruco.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tracker-aruco/ftnoir_tracker_aruco.cpp b/tracker-aruco/ftnoir_tracker_aruco.cpp index bdb41d44..9bf34c51 100644 --- a/tracker-aruco/ftnoir_tracker_aruco.cpp +++ b/tracker-aruco/ftnoir_tracker_aruco.cpp @@ -225,7 +225,6 @@ void aruco_tracker::draw_ar(bool ok) char buf[9]; ::snprintf(buf, sizeof(buf)-1, "Hz: %d", clamp(int(fps), 0, 9999)); - buf[sizeof(buf)-1] = '\0'; cv::putText(frame, buf, cv::Point(10, 32), cv::FONT_HERSHEY_PLAIN, 2, cv::Scalar(0, 255, 0), 1); } |