From e76c61d74c16d3ce8b599bd1b8d77e12a89d656e Mon Sep 17 00:00:00 2001 From: Justin Kim Date: Tue, 13 Nov 2018 18:20:15 +0900 Subject: [PATCH] cameracalibrate: Fix build error on Mac OSX It fails to build only on Mac OSX with the following error. In file included from ../subprojects/gst-plugins-bad/ext/opencv/gstopencv.cpp:45: ../subprojects/gst-plugins-bad/ext/opencv/gstcameracalibrate.h:96:38: error: a space is required between consecutive right angle brackets (use '> >') std::vector> imagePoints; ^~ > > 1 error generated. Fix: #817 --- ext/opencv/gstcameracalibrate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opencv/gstcameracalibrate.h b/ext/opencv/gstcameracalibrate.h index 8fe4a5d..f161a3f 100644 --- a/ext/opencv/gstcameracalibrate.h +++ b/ext/opencv/gstcameracalibrate.h @@ -93,7 +93,7 @@ struct _GstCameraCalibrate int flags; int mode; clock_t prevTimestamp; - std::vector> imagePoints; + std::vector > imagePoints; cv::Mat cameraMatrix, distCoeffs; // opaque string containing opencv calibration settings -- 2.7.4