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
d873fe66
Commit
d873fe66
authored
Apr 13, 2017
by
Vitaly Tuzov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed size estimation for copyFrom/To vector in vx_matrix and vx_convolution wrappers
parent
fd93ae08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ivx.hpp
3rdparty/openvx/include/ivx.hpp
+6
-6
No files found.
3rdparty/openvx/include/ivx.hpp
View file @
d873fe66
...
...
@@ -2508,10 +2508,10 @@ public:
{
if
(
!
areTypesCompatible
(
TypeToEnum
<
T
>::
value
,
dataType
()))
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): destination type is wrong"
);
if
(
data
.
size
()
!=
size
())
if
(
data
.
size
()
*
sizeof
(
T
)
!=
size
())
{
if
(
data
.
size
()
==
0
)
data
.
resize
(
size
());
data
.
resize
(
size
()
/
sizeof
(
T
)
);
else
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): destination size is wrong"
);
}
...
...
@@ -2522,7 +2522,7 @@ public:
{
if
(
!
areTypesCompatible
(
TypeToEnum
<
T
>::
value
,
dataType
()))
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): source type is wrong"
);
if
(
data
.
size
()
!=
size
())
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): source size is wrong"
);
if
(
data
.
size
()
*
sizeof
(
T
)
!=
size
())
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): source size is wrong"
);
copyFrom
(
&
data
[
0
]);
}
...
...
@@ -2670,10 +2670,10 @@ public:
{
if
(
!
areTypesCompatible
(
TypeToEnum
<
T
>::
value
,
dataType
()))
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): destination type is wrong"
);
if
(
data
.
size
()
!=
size
())
if
(
data
.
size
()
*
sizeof
(
T
)
!=
size
())
{
if
(
data
.
size
()
==
0
)
data
.
resize
(
size
());
data
.
resize
(
size
()
/
sizeof
(
T
)
);
else
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): destination size is wrong"
);
}
...
...
@@ -2684,7 +2684,7 @@ public:
{
if
(
!
areTypesCompatible
(
TypeToEnum
<
T
>::
value
,
dataType
()))
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): source type is wrong"
);
if
(
data
.
size
()
!=
size
())
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): source size is wrong"
);
if
(
data
.
size
()
*
sizeof
(
T
)
!=
size
())
throw
WrapperError
(
std
::
string
(
__func__
)
+
"(): source size is wrong"
);
copyFrom
(
&
data
[
0
]);
}
...
...
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