Commit a5ae52fb authored by Andrey Pavlenko's avatar Andrey Pavlenko

updating func-s arg names according to ref. man.

parent 7b3ec537
...@@ -2182,7 +2182,7 @@ CV_EXPORTS_W void phase(InputArray x, InputArray y, OutputArray angle, ...@@ -2182,7 +2182,7 @@ CV_EXPORTS_W void phase(InputArray x, InputArray y, OutputArray angle,
//! computes magnitude (magnitude(i)) of each (x(i), y(i)) vector //! computes magnitude (magnitude(i)) of each (x(i), y(i)) vector
CV_EXPORTS_W void magnitude(InputArray x, InputArray y, OutputArray magnitude); CV_EXPORTS_W void magnitude(InputArray x, InputArray y, OutputArray magnitude);
//! checks that each matrix element is within the specified range. //! checks that each matrix element is within the specified range.
CV_EXPORTS_W bool checkRange(InputArray a, bool quiet=true, CV_OUT Point* pt=0, CV_EXPORTS_W bool checkRange(InputArray a, bool quiet=true, CV_OUT Point* pos=0,
double minVal=-DBL_MAX, double maxVal=DBL_MAX); double minVal=-DBL_MAX, double maxVal=DBL_MAX);
//! implements generalized matrix product algorithm GEMM from BLAS //! implements generalized matrix product algorithm GEMM from BLAS
CV_EXPORTS_W void gemm(InputArray src1, InputArray src2, double alpha, CV_EXPORTS_W void gemm(InputArray src1, InputArray src2, double alpha,
...@@ -2560,7 +2560,7 @@ enum ...@@ -2560,7 +2560,7 @@ enum
//! renders text string in the image //! renders text string in the image
CV_EXPORTS_W void putText( Mat& img, const string& text, Point org, CV_EXPORTS_W void putText( Mat& img, const string& text, Point org,
int fontFace, double fontScale, Scalar color, int fontFace, double fontScale, Scalar color,
int thickness=1, int linetype=8, int thickness=1, int lineType=8,
bool bottomLeftOrigin=false ); bool bottomLeftOrigin=false );
//! returns bounding box of the text string //! returns bounding box of the text string
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment