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
70deda35
Commit
70deda35
authored
Jul 02, 2013
by
Andrey Pavlenko
Committed by
OpenCV Buildbot
Jul 02, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1047 from jet47:gpustream-remove-obsolete
parents
89086bdb
3c32fc13
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
49 deletions
+0
-49
gpu.hpp
modules/core/include/opencv2/core/gpu.hpp
+0
-13
gpu.inl.hpp
modules/core/include/opencv2/core/gpu.inl.hpp
+0
-36
No files found.
modules/core/include/opencv2/core/gpu.hpp
View file @
70deda35
...
...
@@ -375,19 +375,6 @@ public:
//! returns true if stream object is not default (!= 0)
operator
bool_type
()
const
;
// obsolete methods
void
enqueueDownload
(
const
GpuMat
&
src
,
OutputArray
dst
);
void
enqueueUpload
(
InputArray
src
,
GpuMat
&
dst
);
void
enqueueCopy
(
const
GpuMat
&
src
,
OutputArray
dst
);
void
enqueueMemSet
(
GpuMat
&
src
,
Scalar
val
);
void
enqueueMemSet
(
GpuMat
&
src
,
Scalar
val
,
InputArray
mask
);
void
enqueueConvert
(
const
GpuMat
&
src
,
OutputArray
dst
,
int
dtype
,
double
alpha
=
1.0
,
double
beta
=
0.0
);
class
Impl
;
private
:
...
...
modules/core/include/opencv2/core/gpu.inl.hpp
View file @
70deda35
...
...
@@ -525,42 +525,6 @@ void swap(CudaMem& a, CudaMem& b)
//////////////////////////////// Stream ///////////////////////////////
inline
void
Stream
::
enqueueDownload
(
const
GpuMat
&
src
,
OutputArray
dst
)
{
src
.
download
(
dst
,
*
this
);
}
inline
void
Stream
::
enqueueUpload
(
InputArray
src
,
GpuMat
&
dst
)
{
dst
.
upload
(
src
,
*
this
);
}
inline
void
Stream
::
enqueueCopy
(
const
GpuMat
&
src
,
OutputArray
dst
)
{
src
.
copyTo
(
dst
,
*
this
);
}
inline
void
Stream
::
enqueueMemSet
(
GpuMat
&
src
,
Scalar
val
)
{
src
.
setTo
(
val
,
*
this
);
}
inline
void
Stream
::
enqueueMemSet
(
GpuMat
&
src
,
Scalar
val
,
InputArray
mask
)
{
src
.
setTo
(
val
,
mask
,
*
this
);
}
inline
void
Stream
::
enqueueConvert
(
const
GpuMat
&
src
,
OutputArray
dst
,
int
dtype
,
double
alpha
,
double
beta
)
{
src
.
convertTo
(
dst
,
dtype
,
alpha
,
beta
,
*
this
);
}
inline
Stream
::
Stream
(
const
Ptr
<
Impl
>&
impl
)
:
impl_
(
impl
)
...
...
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