]> rtime.felk.cvut.cz Git - opencv.git/commitdiff
Changed some <param = default_value> to <param CV_DEFAULT(default_value)>
authorvp153 <vp153@73c94f0f-984f-4a5f-82bc-2d8db8d8ee08>
Wed, 16 Jul 2008 22:55:24 +0000 (22:55 +0000)
committervp153 <vp153@73c94f0f-984f-4a5f-82bc-2d8db8d8ee08>
Wed, 16 Jul 2008 22:55:24 +0000 (22:55 +0000)
git-svn-id: https://code.ros.org/svn/opencv/trunk@1243 73c94f0f-984f-4a5f-82bc-2d8db8d8ee08

opencv/include/opencv/cxcore.h

index 62e903d79df5959f57a15f3da3e1e1c6b7816322..d364a845ee297e6476796b7709da61468af219cf 100644 (file)
@@ -681,7 +681,7 @@ CVAPI(int) cvSolveCubic( const CvMat* coeffs, CvMat* roots );
 
 /* Finds all real and complex roots of a polynomial equation */
 CVAPI(void) cvSolvePoly(const CvMat* coeffs, CvMat *roots,
-                       int maxiter = 10, int fig = 10);
+                       int maxiter CV_DEFAULT(0), int fig CV_DEFAULT(0));
 
 /****************************************************************************************\
 *                                Matrix operations                                       *