diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-22 14:23:03 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-22 14:25:28 +0200 |
commit | 76bd17e3c095e2379daf893427cb3d9d277a064e (patch) | |
tree | 44451ebce5c6988597ec098f9a4cdd502b7c0c8d /tracker-pt/point_extractor.h | |
parent | 0a537e04b9b5fb38ea21cc71af78698afb98ff88 (diff) |
tracker/pt: add color extraction modes
Diffstat (limited to 'tracker-pt/point_extractor.h')
-rw-r--r-- | tracker-pt/point_extractor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tracker-pt/point_extractor.h b/tracker-pt/point_extractor.h index 5fbe9a45..193c06dc 100644 --- a/tracker-pt/point_extractor.h +++ b/tracker-pt/point_extractor.h @@ -46,8 +46,10 @@ private: cv::Mat frame_bin; cv::Mat hist; cv::Mat frame_blobs; - std::vector<blob> blobs; + cv::Mat ch[3], ch_float[4]; + + void separate_channels(cv::Mat const& orig_frame, int const* order = nullptr, int order_cnt = -1); }; } // ns impl |