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
11367e2c
Commit
11367e2c
authored
Oct 02, 2012
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added GpuMat support to OutputArray
parent
b2bf90e9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
core.hpp
modules/core/include/opencv2/core/core.hpp
+3
-0
matrix.cpp
modules/core/src/matrix.cpp
+29
-0
No files found.
modules/core/include/opencv2/core/core.hpp
View file @
11367e2c
...
...
@@ -1372,6 +1372,7 @@ public:
template
<
typename
_Tp
>
_OutputArray
(
Mat_
<
_Tp
>&
m
);
template
<
typename
_Tp
,
int
m
,
int
n
>
_OutputArray
(
Matx
<
_Tp
,
m
,
n
>&
matx
);
template
<
typename
_Tp
>
_OutputArray
(
_Tp
*
vec
,
int
n
);
_OutputArray
(
gpu
::
GpuMat
&
d_mat
);
_OutputArray
(
const
Mat
&
m
);
template
<
typename
_Tp
>
_OutputArray
(
const
vector
<
_Tp
>&
vec
);
...
...
@@ -1381,11 +1382,13 @@ public:
template
<
typename
_Tp
>
_OutputArray
(
const
Mat_
<
_Tp
>&
m
);
template
<
typename
_Tp
,
int
m
,
int
n
>
_OutputArray
(
const
Matx
<
_Tp
,
m
,
n
>&
matx
);
template
<
typename
_Tp
>
_OutputArray
(
const
_Tp
*
vec
,
int
n
);
_OutputArray
(
const
gpu
::
GpuMat
&
d_mat
);
virtual
bool
fixedSize
()
const
;
virtual
bool
fixedType
()
const
;
virtual
bool
needed
()
const
;
virtual
Mat
&
getMatRef
(
int
i
=-
1
)
const
;
virtual
gpu
::
GpuMat
&
getGpuMatRef
()
const
;
virtual
void
create
(
Size
sz
,
int
type
,
int
i
=-
1
,
bool
allowTransposed
=
false
,
int
fixedDepthMask
=
0
)
const
;
virtual
void
create
(
int
rows
,
int
cols
,
int
type
,
int
i
=-
1
,
bool
allowTransposed
=
false
,
int
fixedDepthMask
=
0
)
const
;
virtual
void
create
(
int
dims
,
const
int
*
size
,
int
type
,
int
i
=-
1
,
bool
allowTransposed
=
false
,
int
fixedDepthMask
=
0
)
const
;
...
...
modules/core/src/matrix.cpp
View file @
11367e2c
...
...
@@ -1284,9 +1284,11 @@ _OutputArray::_OutputArray() {}
_OutputArray
::~
_OutputArray
()
{}
_OutputArray
::
_OutputArray
(
Mat
&
m
)
:
_InputArray
(
m
)
{}
_OutputArray
::
_OutputArray
(
vector
<
Mat
>&
vec
)
:
_InputArray
(
vec
)
{}
_OutputArray
::
_OutputArray
(
gpu
::
GpuMat
&
d_mat
)
:
_InputArray
(
d_mat
)
{}
_OutputArray
::
_OutputArray
(
const
Mat
&
m
)
:
_InputArray
(
m
)
{
flags
|=
FIXED_SIZE
|
FIXED_TYPE
;}
_OutputArray
::
_OutputArray
(
const
vector
<
Mat
>&
vec
)
:
_InputArray
(
vec
)
{
flags
|=
FIXED_SIZE
;}
_OutputArray
::
_OutputArray
(
const
gpu
::
GpuMat
&
d_mat
)
:
_InputArray
(
d_mat
)
{
flags
|=
FIXED_SIZE
|
FIXED_TYPE
;}
bool
_OutputArray
::
fixedSize
()
const
...
...
@@ -1309,6 +1311,13 @@ void _OutputArray::create(Size _sz, int mtype, int i, bool allowTransposed, int
((
Mat
*
)
obj
)
->
create
(
_sz
,
mtype
);
return
;
}
if
(
k
==
GPU_MAT
&&
i
<
0
&&
!
allowTransposed
&&
fixedDepthMask
==
0
)
{
CV_Assert
(
!
fixedSize
()
||
((
gpu
::
GpuMat
*
)
obj
)
->
size
()
==
_sz
);
CV_Assert
(
!
fixedType
()
||
((
gpu
::
GpuMat
*
)
obj
)
->
type
()
==
mtype
);
((
gpu
::
GpuMat
*
)
obj
)
->
create
(
_sz
,
mtype
);
return
;
}
int
sizes
[]
=
{
_sz
.
height
,
_sz
.
width
};
create
(
2
,
sizes
,
mtype
,
i
,
allowTransposed
,
fixedDepthMask
);
}
...
...
@@ -1323,6 +1332,13 @@ void _OutputArray::create(int rows, int cols, int mtype, int i, bool allowTransp
((
Mat
*
)
obj
)
->
create
(
rows
,
cols
,
mtype
);
return
;
}
if
(
k
==
GPU_MAT
&&
i
<
0
&&
!
allowTransposed
&&
fixedDepthMask
==
0
)
{
CV_Assert
(
!
fixedSize
()
||
((
gpu
::
GpuMat
*
)
obj
)
->
size
()
==
Size
(
cols
,
rows
));
CV_Assert
(
!
fixedType
()
||
((
gpu
::
GpuMat
*
)
obj
)
->
type
()
==
mtype
);
((
gpu
::
GpuMat
*
)
obj
)
->
create
(
rows
,
cols
,
mtype
);
return
;
}
int
sizes
[]
=
{
rows
,
cols
};
create
(
2
,
sizes
,
mtype
,
i
,
allowTransposed
,
fixedDepthMask
);
}
...
...
@@ -1536,6 +1552,12 @@ void _OutputArray::release() const
return
;
}
if
(
k
==
GPU_MAT
)
{
((
gpu
::
GpuMat
*
)
obj
)
->
release
();
return
;
}
if
(
k
==
NONE
)
return
;
...
...
@@ -1594,6 +1616,13 @@ Mat& _OutputArray::getMatRef(int i) const
}
}
gpu
::
GpuMat
&
_OutputArray
::
getGpuMatRef
()
const
{
int
k
=
kind
();
CV_Assert
(
k
==
GPU_MAT
);
return
*
(
gpu
::
GpuMat
*
)
obj
;
}
static
_OutputArray
_none
;
OutputArray
noArray
()
{
return
_none
;
}
...
...
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