Merge pull request #1610 from alalek:ocl_fix_perf_kalman

pull/1612/head
Andrey Pavlenko 11 years ago committed by OpenCV Buildbot
commit c5afaa4e8d
  1. 8
      modules/ocl/perf/perf_kalman.cpp

@ -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))
::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);

Loading…
Cancel
Save