diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-09-27 12:27:22 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-09-27 12:28:20 +0200 |
commit | 4596d0bf8d8659411ea9dbc380336ad01c366f7b (patch) | |
tree | 3e9c5527678dce72c2145a59d46113d3d089e5ad /tracker-pt/module/frame.hpp | |
parent | deff5fda016a18fd1d5a8a2b6c0611245757aaff (diff) |
cv, tracker/pt: use cv::Mat::create()
Diffstat (limited to 'tracker-pt/module/frame.hpp')
-rw-r--r-- | tracker-pt/module/frame.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tracker-pt/module/frame.hpp b/tracker-pt/module/frame.hpp index 1e7c82b6..239a3474 100644 --- a/tracker-pt/module/frame.hpp +++ b/tracker-pt/module/frame.hpp @@ -32,8 +32,6 @@ struct Preview final : pt_preview operator cv::Mat const&() const { return frame_copy; } private: - static void ensure_size(cv::Mat& frame, int w, int h, int type); - cv::Mat frame_copy, frame_out, frame_tmp; }; |