From 9cfa51a4831068c741c312956071f5ce2e5eb06c Mon Sep 17 00:00:00 2001 From: Alexander Mordvintsev Date: Mon, 12 Nov 2012 14:42:51 +0400 Subject: [PATCH] added CV_OUT to StereoVar output paramiter --- modules/contrib/include/opencv2/contrib/contrib.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/contrib/include/opencv2/contrib/contrib.hpp b/modules/contrib/include/opencv2/contrib/contrib.hpp index 1b13fd7f3..0085b0dfe 100644 --- a/modules/contrib/include/opencv2/contrib/contrib.hpp +++ b/modules/contrib/include/opencv2/contrib/contrib.hpp @@ -583,7 +583,7 @@ namespace cv virtual ~StereoVar(); //! the stereo correspondence operator that computes disparity map for the specified rectified stereo pair - CV_WRAP_AS(compute) virtual void operator()(const Mat& left, const Mat& right, Mat& disp); + CV_WRAP_AS(compute) virtual void operator()(const Mat& left, const Mat& right, CV_OUT Mat& disp); CV_PROP_RW int levels; CV_PROP_RW double pyrScale;