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
4413bee6
Commit
4413bee6
authored
Oct 11, 2013
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ocl: reverted type of perf test params for Kalman filter
parent
c0265c60
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
perf_kalman.cpp
modules/ocl/perf/perf_kalman.cpp
+4
-2
No files found.
modules/ocl/perf/perf_kalman.cpp
View file @
4413bee6
...
...
@@ -57,12 +57,14 @@ using std::tr1::get;
///////////// Kalman Filter ////////////////////////
typedef
TestBaseWithParam
<
int
>
KalmanFilterFixture
;
typedef
tuple
<
int
>
KalmanFilterType
;
typedef
TestBaseWithParam
<
KalmanFilterType
>
KalmanFilterFixture
;
PERF_TEST_P
(
KalmanFilterFixture
,
KalmanFilter
,
::
testing
::
Values
(
1000
,
1500
))
{
const
int
dim
=
GetParam
();
KalmanFilterType
params
=
GetParam
();
const
int
dim
=
get
<
0
>
(
params
);
cv
::
Mat
sample
(
dim
,
1
,
CV_32FC1
),
dresult
;
randu
(
sample
,
-
1
,
1
);
...
...
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