fixed and updated gpu implementation of separable liner filters

now it supports kernel's size up to 32
This commit is contained in:
Vladislav Vinogradov
2012-02-15 12:05:59 +00:00
parent b96a556fff
commit 5af529c1bd
5 changed files with 459 additions and 323 deletions

View File

@@ -139,6 +139,6 @@ INSTANTIATE_TEST_CASE_P(Filter, SeparableLinearFilter, testing::Combine(
ALL_DEVICES,
GPU_TYPICAL_MAT_SIZES,
testing::Values(CV_8UC1, CV_8UC4, CV_32FC1),
testing::Values(3, 5)));
testing::Values(3, 5, 7, 9, 11, 13, 15)));
#endif