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
cf9a0197
Commit
cf9a0197
authored
Mar 23, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8446 from terfendail:ovxhal_sepfilter3x3
parents
2271b9af
c5eb3dfe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
openvx_hal.cpp
3rdparty/openvx/hal/openvx_hal.cpp
+1
-1
No files found.
3rdparty/openvx/hal/openvx_hal.cpp
View file @
cf9a0197
...
...
@@ -601,7 +601,7 @@ int ovx_hal_sepFilterInit(cvhalFilter2D **filter_context, int src_type, int dst_
{
if
(
!
filter_context
||
!
kernelx_data
||
!
kernely_data
||
delta
!=
0
||
src_type
!=
CV_8UC1
||
(
dst_type
!=
CV_8UC1
&&
dst_type
!=
CV_16SC1
)
||
kernelx_length
%
2
==
0
||
kernely_length
%
2
==
0
||
anchor_x
!=
kernelx_length
/
2
||
anchor_y
!=
kernely_length
/
2
)
kernelx_length
!=
3
||
kernely_length
!=
3
||
anchor_x
!=
1
||
anchor_y
!=
1
)
return
CV_HAL_ERROR_NOT_IMPLEMENTED
;
ivx
::
border_t
border
;
...
...
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