Fixing as suggested in bug 2626, made naming same for both C, C++ and python API

This commit is contained in:
StevenPuttemans
2014-05-12 15:39:40 +02:00
parent 5e47aa6300
commit 006956c324
2 changed files with 4 additions and 3 deletions

View File

@@ -2319,7 +2319,7 @@ CV_EXPORTS_W void patchNaNs(InputOutputArray a, double val=0);
//! implements generalized matrix product algorithm GEMM from BLAS
CV_EXPORTS_W void gemm(InputArray src1, InputArray src2, double alpha,
InputArray src3, double gamma, OutputArray dst, int flags=0);
InputArray src3, double beta, OutputArray dst, int flags=0);
//! multiplies matrix by its transposition from the left or from the right
CV_EXPORTS_W void mulTransposed( InputArray src, OutputArray dst, bool aTa,
InputArray delta=noArray(),