mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
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<std::vector<cv::Point2f>> imagePoints; ^~ > > 1 error generated. Fix: #817
This commit is contained in:
parent
b44d2702ca
commit
e76c61d74c
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ struct _GstCameraCalibrate
|
||||||
int flags;
|
int flags;
|
||||||
int mode;
|
int mode;
|
||||||
clock_t prevTimestamp;
|
clock_t prevTimestamp;
|
||||||
std::vector<std::vector<cv::Point2f>> imagePoints;
|
std::vector<std::vector<cv::Point2f> > imagePoints;
|
||||||
cv::Mat cameraMatrix, distCoeffs;
|
cv::Mat cameraMatrix, distCoeffs;
|
||||||
|
|
||||||
// opaque string containing opencv calibration settings
|
// opaque string containing opencv calibration settings
|
||||||
|
|
Loading…
Reference in a new issue