removed test for double since not all platforms support double, thus the sanity check cannot pass on all the platforms.

pull/1710/head
Jin Ma 11 years ago
parent 1bb47f4bdf
commit 145ece8f9c
  1. 2
      modules/ocl/perf/perf_moments.cpp

@ -63,7 +63,7 @@ typedef TestBaseWithParam<MomentsParamType> MomentsFixture;
PERF_TEST_P(MomentsFixture, Moments,
::testing::Combine(OCL_TYPICAL_MAT_SIZES,
OCL_PERF_ENUM(CV_8UC1, CV_16SC1, CV_16UC1, CV_32FC1, CV_64FC1), ::testing::Values(false, true)))
OCL_PERF_ENUM(CV_8UC1, CV_16SC1, CV_16UC1, CV_32FC1), ::testing::Values(false, true)))
{
const MomentsParamType params = GetParam();
const Size srcSize = get<0>(params);

Loading…
Cancel
Save