diff options
Diffstat (limited to 'tracker-pt/module/frame.cpp')
-rw-r--r-- | tracker-pt/module/frame.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tracker-pt/module/frame.cpp b/tracker-pt/module/frame.cpp index f54c2e36..6734edf6 100644 --- a/tracker-pt/module/frame.cpp +++ b/tracker-pt/module/frame.cpp @@ -2,9 +2,6 @@ #include "compat/math.hpp" -#include <cstring> -#include <tuple> - #include <opencv2/imgproc.hpp> using namespace pt_module; @@ -16,7 +13,7 @@ Preview& Preview::operator=(const pt_frame& frame_) if (frame.channels() != 3) { - once_only(qDebug() << "tracker/pt: camera frame depth: 3 !=" << frame.channels()); + eval_once(qDebug() << "tracker/pt: camera frame depth: 3 !=" << frame.channels()); return *this; } @@ -42,7 +39,7 @@ QImage Preview::get_bitmap() if (stride < 64 || stride < frame_out.cols * 4) { - once_only(qDebug() << "bad stride" << stride + eval_once(qDebug() << "bad stride" << stride << "for bitmap size" << frame_copy.cols << frame_copy.rows); return QImage(); } |