diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-02 08:17:01 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-02 08:21:36 +0100 |
commit | 59dec5d1ee6161633c081cf1bddfed33fcc593cd (patch) | |
tree | 2c86208e36964b18ee12ee0efc49388056a4d873 /tracker-pt | |
parent | 75b9401b70405b7ce0639de00ff27386d2bc75ba (diff) |
tracker/pt: use cv::Mat::reshape() to avoid memcpy
Diffstat (limited to 'tracker-pt')
-rw-r--r-- | tracker-pt/point_extractor.cpp | 46 | ||||
-rw-r--r-- | tracker-pt/point_extractor.h | 14 |
2 files changed, 22 insertions, 38 deletions
diff --git a/tracker-pt/point_extractor.cpp b/tracker-pt/point_extractor.cpp index c5336ed3..100f9c75 100644 --- a/tracker-pt/point_extractor.cpp +++ b/tracker-pt/point_extractor.cpp @@ -88,24 +88,19 @@ PointExtractor::PointExtractor() void PointExtractor::ensure_channel_buffers(const cv::Mat& orig_frame) { if (ch[0].rows != orig_frame.rows || ch[0].cols != orig_frame.cols) - { for (unsigned k = 0; k < 3; k++) - { ch[k] = cv::Mat1b(orig_frame.rows, orig_frame.cols); - ch_float[k] = cv::Mat1f(orig_frame.rows, orig_frame.cols); - } - // extra channel is a scratch buffer - ch_float[3] = cv::Mat1f(orig_frame.rows, orig_frame.cols); - } } void PointExtractor::ensure_buffers(const cv::Mat& frame) { - if (frame_gray.rows != frame.rows || frame_gray.cols != frame.cols) + const int W = frame.cols, H = frame.rows; + + if (frame_gray.rows != W || frame_gray.cols != H) { - frame_gray = cv::Mat1b(frame.rows, frame.cols); - frame_bin = cv::Mat1b(frame.rows, frame.cols); - frame_blobs = cv::Mat1b(frame.rows, frame.cols); + frame_gray = cv::Mat1b(H, W); + frame_bin = cv::Mat1b(H, W); + frame_blobs = cv::Mat1b(H, W); } } @@ -127,14 +122,7 @@ void PointExtractor::extract_channels(const cv::Mat& orig_frame, const int* orde cv::mixChannels(&orig_frame, 1, (cv::Mat*) ch, order_npairs, order, order_npairs); } -void PointExtractor::extract_all_channels(const cv::Mat& orig_frame) -{ - ensure_channel_buffers(orig_frame); - - cv::split(orig_frame, (cv::Mat*) ch); -} - -void PointExtractor::color_to_grayscale(const cv::Mat& frame, cv::Mat& output) +void PointExtractor::color_to_grayscale(const cv::Mat& frame, cv::Mat1b& output) { switch (s.blob_color) { @@ -153,8 +141,10 @@ void PointExtractor::color_to_grayscale(const cv::Mat& frame, cv::Mat& output) /*FALLTHROUGH*/ case pt_color_average: { - extract_all_channels(frame); - output = (ch[0] + ch[1] + ch[2]) / 3; + const int W = frame.cols, H = frame.rows; + const cv::Mat tmp = frame.reshape(1, W * H); + cv::Mat output_ = output.reshape(1, W * H); + cv::reduce(tmp, output_, 1, cv::REDUCE_AVG); break; } case pt_color_natural: @@ -163,7 +153,7 @@ void PointExtractor::color_to_grayscale(const cv::Mat& frame, cv::Mat& output) } } -void PointExtractor::threshold_image(const cv::Mat& frame_gray, cv::Mat& output) +void PointExtractor::threshold_image(const cv::Mat& frame_gray, cv::Mat1b& output) { const int threshold_slider_value = s.threshold_slider.to<int>(); @@ -173,9 +163,9 @@ void PointExtractor::threshold_image(const cv::Mat& frame_gray, cv::Mat& output) } else { - static const int hist_size = 256; - static const float ranges_[] = { 0, 256 }; - static float const* ranges = (const float*) ranges_; + const int hist_size = 256; + const float ranges_[] = { 0, 256 }; + float const* ranges = (const float*) ranges_; cv::calcHist(&frame_gray, 1, @@ -221,7 +211,6 @@ double PointExtractor::threshold_radius_value(int w, int h, int threshold) void PointExtractor::extract_points(const cv::Mat& frame, cv::Mat& preview_frame, std::vector<vec2>& points) { ensure_buffers(frame); - color_to_grayscale(frame, frame_gray); #if defined PREVIEW @@ -290,8 +279,8 @@ void PointExtractor::extract_points(const cv::Mat& frame, cv::Mat& preview_frame } end: - const int W = frame.cols; - const int H = frame.rows; + const int W = frame_gray.cols; + const int H = frame_gray.rows; const unsigned sz = blobs.size(); @@ -311,7 +300,6 @@ end: cv::Mat frame_roi = frame_gray(rect); // smaller values mean more changes. 1 makes too many changes while 1.5 makes about .1 - // seems values close to 1.3 reduce noise best with about .15->.2 changes static constexpr f radius_c = f(1.75); const f kernel_radius = b.radius * radius_c; diff --git a/tracker-pt/point_extractor.h b/tracker-pt/point_extractor.h index b085c602..d31304b9 100644 --- a/tracker-pt/point_extractor.h +++ b/tracker-pt/point_extractor.h @@ -44,23 +44,19 @@ public: private: static constexpr int max_blobs = 16; - cv::Mat frame_gray; - cv::Mat frame_bin; - cv::Mat hist; - cv::Mat frame_blobs; + cv::Mat1b frame_gray, frame_bin, frame_blobs; + cv::Mat1f hist; std::vector<blob> blobs; - cv::Mat ch[3], ch_float[4]; + cv::Mat1b ch[3]; void ensure_channel_buffers(const cv::Mat& orig_frame); void ensure_buffers(const cv::Mat& frame); void extract_single_channel(const cv::Mat& orig_frame, int idx, cv::Mat& dest); void extract_channels(const cv::Mat& orig_frame, const int* order, int order_npairs); - void extract_all_channels(const cv::Mat& orig_frame); - void channels_to_float(unsigned num_channels); - void color_to_grayscale(const cv::Mat& frame, cv::Mat& output); - void threshold_image(const cv::Mat& frame_gray, cv::Mat& output); + void color_to_grayscale(const cv::Mat& frame, cv::Mat1b& output); + void threshold_image(const cv::Mat& frame_gray, cv::Mat1b& output); }; } // ns impl |