diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-08-18 13:50:04 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-08-18 13:53:47 +0200 |
commit | d6907613e89b906edb3f2b7c0049f8b13f3524ee (patch) | |
tree | e88d83b15724f0b2915eb555ea2f47f179b5bddf /tracker-pt/module/frame.hpp | |
parent | cfd70f5aea911db4cab1a8f2916d40ac59854166 (diff) |
tracker/pt: fix support for grayscale input video
Diffstat (limited to 'tracker-pt/module/frame.hpp')
-rw-r--r-- | tracker-pt/module/frame.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/module/frame.hpp b/tracker-pt/module/frame.hpp index 89334599..ae0a0cbc 100644 --- a/tracker-pt/module/frame.hpp +++ b/tracker-pt/module/frame.hpp @@ -34,7 +34,7 @@ struct Preview final : pt_preview private: static void ensure_size(cv::Mat& frame, int w, int h, int type); - cv::Mat frame_copy, frame_out; + cv::Mat frame_copy, frame_out, frame_tmp; }; } // ns pt_module |