From cf1261d2e4c21d3b63f05f708e51ebee53b45be7 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 26 Sep 2021 14:12:39 +0200 Subject: tracker/pt: fix build --- tracker-pt/module/frame.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'tracker-pt/module') diff --git a/tracker-pt/module/frame.cpp b/tracker-pt/module/frame.cpp index 798706b8..b1690aa1 100644 --- a/tracker-pt/module/frame.cpp +++ b/tracker-pt/module/frame.cpp @@ -25,7 +25,6 @@ void Preview::set_last_frame(const pt_frame& frame_) eval_once(qDebug() << "tracker/pt: camera frame depth: 3 !=" << frame->channels()); frame_copy.create(cv::Size{frame_out.cols, frame_out.rows}, CV_8UC3); frame_copy.setTo({0}); - return *this; } const bool need_resize = frame2.cols != frame_out.cols || frame2.rows != frame_out.rows; @@ -33,8 +32,6 @@ void Preview::set_last_frame(const pt_frame& frame_) cv::resize(frame2, frame_copy, cv::Size(frame_out.cols, frame_out.rows), 0, 0, cv::INTER_NEAREST); else frame->copyTo(frame_copy); - - return *this; } Preview::Preview(int w, int h) -- cgit v1.2.3