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
b2d44663
Commit
b2d44663
authored
Feb 04, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6058 from sturkmen72:documentation_fix_cv_repeate
parents
ea8f9b03
194b865d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
core.hpp
modules/core/include/opencv2/core.hpp
+7
-7
No files found.
modules/core/include/opencv2/core.hpp
View file @
b2d44663
...
@@ -1007,24 +1007,24 @@ CV_EXPORTS_W void flip(InputArray src, OutputArray dst, int flipCode);
...
@@ -1007,24 +1007,24 @@ CV_EXPORTS_W void flip(InputArray src, OutputArray dst, int flipCode);
/** @brief Fills the output array with repeated copies of the input array.
/** @brief Fills the output array with repeated copies of the input array.
The function
s repeat duplicate
the input array one or more times along each of the two axes:
The function
cv::repeat duplicates
the input array one or more times along each of the two axes:
\f[\texttt{dst} _{ij}= \texttt{src} _{i\mod src.rows, \; j\mod src.cols }\f]
\f[\texttt{dst} _{ij}= \texttt{src} _{i\mod src.rows, \; j\mod src.cols }\f]
The second variant of the function is more convenient to use with @ref MatrixExpressions.
The second variant of the function is more convenient to use with @ref MatrixExpressions.
@param src input array to replicate.
@param src input array to replicate.
@param dst output array of the same type as src.
@param ny Flag to specify how many times the `src` is repeated along the
@param ny Flag to specify how many times the src is repeated along the
vertical axis.
vertical axis.
@param nx Flag to specify how many times the
src
is repeated along the
@param nx Flag to specify how many times the
`src`
is repeated along the
horizontal axis.
horizontal axis.
@sa reduce
@param dst output array of the same type as `src`.
@sa cv::reduce
*/
*/
CV_EXPORTS_W
void
repeat
(
InputArray
src
,
int
ny
,
int
nx
,
OutputArray
dst
);
CV_EXPORTS_W
void
repeat
(
InputArray
src
,
int
ny
,
int
nx
,
OutputArray
dst
);
/** @overload
/** @overload
@param src input array to replicate.
@param src input array to replicate.
@param ny Flag to specify how many times the
src
is repeated along the
@param ny Flag to specify how many times the
`src`
is repeated along the
vertical axis.
vertical axis.
@param nx Flag to specify how many times the
src
is repeated along the
@param nx Flag to specify how many times the
`src`
is repeated along the
horizontal axis.
horizontal axis.
*/
*/
CV_EXPORTS
Mat
repeat
(
const
Mat
&
src
,
int
ny
,
int
nx
);
CV_EXPORTS
Mat
repeat
(
const
Mat
&
src
,
int
ny
,
int
nx
);
...
...
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