diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-06-06 10:46:16 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-06-06 10:46:16 +0200 |
commit | 28694265371386777253f8279752e47c45f471d5 (patch) | |
tree | 13a4df42f90805b43dd288158d059893b210db22 /ftnoir_tracker_ht | |
parent | c52bb357b551e8a4490be2863bee19934ed7ef12 (diff) |
cmake: build of HT plugin doesn't need opencv
The main HT executable still needs it.
Diffstat (limited to 'ftnoir_tracker_ht')
-rw-r--r-- | ftnoir_tracker_ht/ht-api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftnoir_tracker_ht/ht-api.h b/ftnoir_tracker_ht/ht-api.h index ed866e16..77903bac 100644 --- a/ftnoir_tracker_ht/ht-api.h +++ b/ftnoir_tracker_ht/ht-api.h @@ -9,7 +9,7 @@ #if !defined(_WIN32) && !defined(_isnan) # define _isnan isnan #endif -#include <opencv2/core.hpp> +//#include <opencv2/core.hpp> struct ht_context; typedef struct ht_context headtracker_t; @@ -44,6 +44,6 @@ typedef struct { HT_API(headtracker_t*) ht_make_context(const ht_config_t* config, const char* filename); HT_API(void) ht_free_context(headtracker_t* ctx); -HT_API(const cv::Mat) ht_get_bgr_frame(headtracker_t* ctx); +//HT_API(const cv::Mat) ht_get_bgr_frame(headtracker_t* ctx); HT_API(bool) ht_cycle(headtracker_t* ctx, ht_result_t* euler); HT_API(void) ht_reset(headtracker_t* ctx); |