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
80516ecb
Commit
80516ecb
authored
Apr 18, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typo; removed duplicated call
parent
11ce8683
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
rand.cpp
modules/core/src/rand.cpp
+1
-1
smooth.cpp
modules/imgproc/src/smooth.cpp
+1
-3
No files found.
modules/core/src/rand.cpp
View file @
80516ecb
...
@@ -247,7 +247,7 @@ static void randf_32f( float* arr, int len, uint64* state, const Vec2f* p, bool
...
@@ -247,7 +247,7 @@ static void randf_32f( float* arr, int len, uint64* state, const Vec2f* p, bool
_mm_set_ss
(
p
[
i
][
1
]))
_mm_set_ss
(
p
[
i
][
1
]))
);
);
#else
#else
arr
[
i
]
+
=
(
int
)
temp
*
p
[
i
][
0
]
+
p
[
i
][
1
];
arr
[
i
]
=
(
int
)
temp
*
p
[
i
][
0
]
+
p
[
i
][
1
];
#endif
#endif
}
}
...
...
modules/imgproc/src/smooth.cpp
View file @
80516ecb
...
@@ -312,9 +312,7 @@ void cv::boxFilter( InputArray _src, OutputArray _dst, int ddepth,
...
@@ -312,9 +312,7 @@ void cv::boxFilter( InputArray _src, OutputArray _dst, int ddepth,
ksize
.
width
=
1
;
ksize
.
width
=
1
;
}
}
#ifdef HAVE_TEGRA_OPTIMIZATION
#ifdef HAVE_TEGRA_OPTIMIZATION
if
(
tegra
::
box
(
src
,
dst
,
ksize
,
borderType
))
if
(
tegra
::
box
(
src
,
dst
,
ksize
,
anchor
,
normalize
,
borderType
)
)
return
;
if
(
tegra
::
boxFilter
(
src
,
dst
,
ksize
,
anchor
,
normalize
,
borderType
)
)
return
;
return
;
#endif
#endif
...
...
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