Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
006956c3
Commit
006956c3
authored
May 12, 2014
by
StevenPuttemans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing as suggested in bug 2626, made naming same for both C, C++ and python API
parent
5e47aa63
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
operations_on_arrays.rst
modules/core/doc/operations_on_arrays.rst
+3
-2
core.hpp
modules/core/include/opencv2/core/core.hpp
+1
-1
No files found.
modules/core/doc/operations_on_arrays.rst
View file @
006956c3
...
...
@@ -1252,11 +1252,12 @@ gemm
----
Performs generalized matrix multiplication.
.. ocv:function:: void gemm( InputArray src1, InputArray src2, double alpha, InputArray src3, double
gamm
a, OutputArray dst, int flags=0 )
.. ocv:function:: void gemm( InputArray src1, InputArray src2, double alpha, InputArray src3, double
bet
a, OutputArray dst, int flags=0 )
.. ocv:pyfunction:: cv2.gemm(src1, src2, alpha, src3,
gamm
a[, dst[, flags]]) -> dst
.. ocv:pyfunction:: cv2.gemm(src1, src2, alpha, src3,
bet
a[, dst[, flags]]) -> dst
.. ocv:cfunction:: void cvGEMM( const CvArr* src1, const CvArr* src2, double alpha, const CvArr* src3, double beta, CvArr* dst, int tABC=0)
.. ocv:pyoldfunction:: cv.GEMM(src1, src2, alpha, src3, beta, dst, tABC=0)-> None
:param src1: first multiplied input matrix that should have ``CV_32FC1``, ``CV_64FC1``, ``CV_32FC2``, or ``CV_64FC2`` type.
...
...
modules/core/include/opencv2/core/core.hpp
View file @
006956c3
...
...
@@ -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
gamm
a
,
OutputArray
dst
,
int
flags
=
0
);
InputArray
src3
,
double
bet
a
,
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
(),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment