Change ocl::Canny test case category

This commit is contained in:
peng xiao 2013-04-12 10:58:42 +08:00
parent e27f4da9c6
commit 22ca7e44d6

View File

@ -102,7 +102,7 @@ TEST_P(Canny, Accuracy)
EXPECT_MAT_SIMILAR(edges_gold, edges, 1e-2);
}
INSTANTIATE_TEST_CASE_P(GPU_ImgProc, Canny, testing::Combine(
INSTANTIATE_TEST_CASE_P(OCL_ImgProc, Canny, testing::Combine(
testing::Values(AppertureSize(3), AppertureSize(5)),
testing::Values(L2gradient(false), L2gradient(true))));
#endif