diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-03-28 09:22:55 +0100 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-03-28 17:45:05 +0100 |
commit | 7e75c5dce340ced8313b0e5067bfdc8cf12f8a5d (patch) | |
tree | f02310f4d0ec15b2e7f2577dca7c13c7f88780d6 | |
parent | df4eaa52d3f32b65afaed27cb7205918b53d45b5 (diff) |
tracker/kinect: fix IDE bug (no functional changes)
-rw-r--r-- | tracker-kinect-face/camera_kinect_ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-kinect-face/camera_kinect_ir.cpp b/tracker-kinect-face/camera_kinect_ir.cpp index 04607dd1..8a2f6bcb 100644 --- a/tracker-kinect-face/camera_kinect_ir.cpp +++ b/tracker-kinect-face/camera_kinect_ir.cpp @@ -175,7 +175,7 @@ void CameraKinectIr::stop() SafeRelease(iKinectSensor); // Free up our memory buffer if any - iMatFrame = {}; + iMatFrame = cv::Mat(); } bool CameraKinectIr::get_frame_(cv::Mat& frame) |