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
d1ac75ca
Commit
d1ac75ca
authored
Dec 15, 2015
by
Ishank gulati
Committed by
ishank08
Dec 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corrected cv::merge documentation
parent
aee03cd5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
core.hpp
modules/core/include/opencv2/core.hpp
+5
-5
No files found.
modules/core/include/opencv2/core.hpp
View file @
d1ac75ca
...
...
@@ -829,19 +829,19 @@ otherwise, its type will be CV_MAKE_TYPE(CV_MAT_DEPTH(dtype), src.channels()).
*/
CV_EXPORTS_W
void
reduce
(
InputArray
src
,
OutputArray
dst
,
int
dim
,
int
rtype
,
int
dtype
=
-
1
);
/** @brief Creates one multichannel array out of several single-channel ones.
/** @brief Creates one multi
-
channel array out of several single-channel ones.
The function
s merge merge
several arrays to make a single multi-channel array. That is, each
The function
merge merges
several arrays to make a single multi-channel array. That is, each
element of the output array will be a concatenation of the elements of the input arrays, where
elements of i-th input array are treated as mv[i].channels()-element vectors.
The function split does the reverse operation. If you need to shuffle channels in some other
advanced way, use
mixChannels
.
The function
cv::
split does the reverse operation. If you need to shuffle channels in some other
advanced way, use
cv::mixChannels
.
@param mv input array of matrices to be merged; all the matrices in mv must have the same
size and the same depth.
@param count number of input matrices when mv is a plain C array; it must be greater than zero.
@param dst output array of the same size and the same depth as mv[0]; The number of channels will
be
the total number of channels in the matrix array
.
be
equal to the parameter count
.
@sa mixChannels, split, Mat::reshape
*/
CV_EXPORTS
void
merge
(
const
Mat
*
mv
,
size_t
count
,
OutputArray
dst
);
...
...
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