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
a5ae52fb
Commit
a5ae52fb
authored
Mar 15, 2012
by
Andrey Pavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updating func-s arg names according to ref. man.
parent
7b3ec537
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
core.hpp
modules/core/include/opencv2/core/core.hpp
+2
-2
No files found.
modules/core/include/opencv2/core/core.hpp
View file @
a5ae52fb
...
@@ -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
*
p
t
=
0
,
CV_EXPORTS_W
bool
checkRange
(
InputArray
a
,
bool
quiet
=
true
,
CV_OUT
Point
*
p
os
=
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
line
t
ype
=
8
,
int
thickness
=
1
,
int
line
T
ype
=
8
,
bool
bottomLeftOrigin
=
false
);
bool
bottomLeftOrigin
=
false
);
//! returns bounding box of the text string
//! returns bounding box of the text string
...
...
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