diff options
| author | Stéphane Lenclud <github@lenclud.com> | 2019-03-10 17:10:02 +0100 |
|---|---|---|
| committer | Stéphane Lenclud <github@lenclud.com> | 2019-03-10 17:10:02 +0100 |
| commit | 8a9d143523fddbf8ee9cb1c58cb281ac380d3ae0 (patch) | |
| tree | ae5cabae1134456eff8260ff6e7c30639c9ef42c /tracker-pt/module/point_extractor.cpp | |
| parent | c90f8fbd1a83ffeed6b0bb9d55e91f4a4a9b8641 (diff) | |
Kinect Point Tracker: Working on basic architecture.
Diffstat (limited to 'tracker-pt/module/point_extractor.cpp')
| -rw-r--r-- | tracker-pt/module/point_extractor.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tracker-pt/module/point_extractor.cpp b/tracker-pt/module/point_extractor.cpp index 298d8752..049f4acd 100644 --- a/tracker-pt/module/point_extractor.cpp +++ b/tracker-pt/module/point_extractor.cpp @@ -235,9 +235,12 @@ static void draw_blobs(cv::Mat& preview_frame, const blob* blobs, unsigned nblob : cv::Scalar(0, 0, 255); cv::Point pos(iround(b.pos[0]*cx+offx), iround(b.pos[1]*cy+offy)); - cv::putText(preview_frame, buf, pos, - cv::FONT_HERSHEY_PLAIN, overlay_size, text_color, - 1); + + // That crashes in debug x64 on my dev machine when using Kinect V2 Video Sensor + // Seems to work fine with official beta 3 though + //cv::putText(preview_frame, buf, pos, + // cv::FONT_HERSHEY_PLAIN, overlay_size, text_color, + // 1); } } |
