Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
11638ada
Commit
11638ada
authored
Dec 16, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2389 from cudawarped:fix_python_cudaarithm
parents
d486e415
454434bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
cudaarithm.hpp
modules/cudaarithm/include/opencv2/cudaarithm.hpp
+3
-3
No files found.
modules/cudaarithm/include/opencv2/cudaarithm.hpp
View file @
11638ada
...
...
@@ -438,7 +438,7 @@ CV_EXPORTS_W void polarToCart(InputArray magnitude, InputArray angle, OutputArra
@sa merge
*/
CV_EXPORTS
_W
void
merge
(
const
GpuMat
*
src
,
size_t
n
,
OutputArray
dst
,
Stream
&
stream
=
Stream
::
Null
());
CV_EXPORTS
void
merge
(
const
GpuMat
*
src
,
size_t
n
,
OutputArray
dst
,
Stream
&
stream
=
Stream
::
Null
());
/** @overload */
CV_EXPORTS_W
void
merge
(
const
std
::
vector
<
GpuMat
>&
src
,
OutputArray
dst
,
Stream
&
stream
=
Stream
::
Null
());
...
...
@@ -450,9 +450,9 @@ CV_EXPORTS_W void merge(const std::vector<GpuMat>& src, OutputArray dst, Stream&
@sa split
*/
CV_EXPORTS
_W
void
split
(
InputArray
src
,
GpuMat
*
dst
,
Stream
&
stream
=
Stream
::
Null
());
CV_EXPORTS
void
split
(
InputArray
src
,
GpuMat
*
dst
,
Stream
&
stream
=
Stream
::
Null
());
/** @overload */
CV_EXPORTS_W
void
split
(
InputArray
src
,
std
::
vector
<
GpuMat
>&
dst
,
Stream
&
stream
=
Stream
::
Null
());
CV_EXPORTS_W
void
split
(
InputArray
src
,
CV_OUT
std
::
vector
<
GpuMat
>&
dst
,
Stream
&
stream
=
Stream
::
Null
());
/** @brief Transposes a matrix.
...
...
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