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
20bf88ba
Commit
20bf88ba
authored
Jul 01, 2015
by
Seon-Wook Park
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spatialGradient: Make kern args const&
parent
90c398ea
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
spatialgradient.cpp
modules/imgproc/src/spatialgradient.cpp
+3
-3
No files found.
modules/imgproc/src/spatialgradient.cpp
View file @
20bf88ba
...
...
@@ -59,9 +59,9 @@ namespace cv
*/
template
<
typename
T
>
static
inline
void
spatialGradientKernel
(
T
&
vx
,
T
&
vy
,
T
v00
,
T
v01
,
T
v02
,
T
v10
,
T
v12
,
T
v20
,
T
v21
,
T
v22
)
const
T
&
v00
,
const
T
&
v01
,
const
T
&
v02
,
const
T
&
v10
,
const
T
&
v12
,
const
T
&
v20
,
const
T
&
v21
,
const
T
&
v22
)
{
// vx = (v22 - v00) + (v02 - v20) + 2 * (v12 - v10)
// vy = (v22 - v00) + (v20 - v02) + 2 * (v21 - v01)
...
...
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