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
73ba4356
Commit
73ba4356
authored
Nov 24, 2014
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3435 from oresths:filter_anchor_fix
parents
15952d71
a7757b0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
filter.cpp
modules/imgproc/src/filter.cpp
+2
-2
No files found.
modules/imgproc/src/filter.cpp
View file @
73ba4356
...
...
@@ -2613,8 +2613,8 @@ struct SymmColumnSmallFilter : public SymmColumnFilter<CastOp, VecOp>
const
ST
*
ky
=
this
->
kernel
.
template
ptr
<
ST
>
()
+
ksize2
;
int
i
;
bool
symmetrical
=
(
this
->
symmetryType
&
KERNEL_SYMMETRICAL
)
!=
0
;
bool
is_1_2_1
=
ky
[
0
]
==
1
&&
ky
[
1
]
==
2
;
bool
is_1_m2_1
=
ky
[
0
]
==
1
&&
ky
[
1
]
==
-
2
;
bool
is_1_2_1
=
ky
[
0
]
==
2
&&
ky
[
1
]
==
1
;
bool
is_1_m2_1
=
ky
[
0
]
==
-
2
&&
ky
[
1
]
==
1
;
bool
is_m1_0_1
=
ky
[
1
]
==
1
||
ky
[
1
]
==
-
1
;
ST
f0
=
ky
[
0
],
f1
=
ky
[
1
];
ST
_delta
=
this
->
delta
;
...
...
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