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
d3056407
Commit
d3056407
authored
Nov 09, 2011
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fix
parent
fcfa7208
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
gpumat.hpp
modules/core/include/opencv2/core/gpumat.hpp
+6
-0
No files found.
modules/core/include/opencv2/core/gpumat.hpp
View file @
d3056407
...
@@ -173,6 +173,7 @@ namespace cv { namespace gpu
...
@@ -173,6 +173,7 @@ namespace cv { namespace gpu
template
<
typename
_Tp
>
operator
DevMem2D_
<
_Tp
>
()
const
;
template
<
typename
_Tp
>
operator
DevMem2D_
<
_Tp
>
()
const
;
template
<
typename
_Tp
>
operator
PtrStep_
<
_Tp
>
()
const
;
template
<
typename
_Tp
>
operator
PtrStep_
<
_Tp
>
()
const
;
template
<
typename
_Tp
>
operator
PtrStep
<
_Tp
>
()
const
;
/*! includes several bit-fields:
/*! includes several bit-fields:
- the magic signature
- the magic signature
...
@@ -427,6 +428,11 @@ namespace cv { namespace gpu
...
@@ -427,6 +428,11 @@ namespace cv { namespace gpu
return
PtrStep_
<
T
>
(
static_cast
<
DevMem2D_
<
T
>
>
(
*
this
));
return
PtrStep_
<
T
>
(
static_cast
<
DevMem2D_
<
T
>
>
(
*
this
));
}
}
template
<
class
T
>
inline
GpuMat
::
operator
PtrStep
<
T
>
()
const
{
return
PtrStep
<
T
>
((
T
*
)
data
,
step
);
}
inline
GpuMat
createContinuous
(
int
rows
,
int
cols
,
int
type
)
inline
GpuMat
createContinuous
(
int
rows
,
int
cols
,
int
type
)
{
{
GpuMat
m
;
GpuMat
m
;
...
...
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