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

pull/13383/head
Andrey Pavlenko 13 years ago
parent 7b3ec537b4
commit a5ae52fb0c
  1. 4
      modules/core/include/opencv2/core/core.hpp

@ -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
//! 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

Loading…
Cancel
Save