1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Implementing AVX512 support for 3 channel cv::integral for CV_64F

This commit is contained in:
Brad Kelly
2018-11-13 20:03:11 -08:00
parent 36dfb71c60
commit 0165ffa90d
4 changed files with 321 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ typedef perf::TestBaseWithParam<Size_MatType_OutMatDepth_t> Size_MatType_OutMatD
PERF_TEST_P(Size_MatType_OutMatDepth, integral,
testing::Combine(
testing::Values(TYPICAL_MAT_SIZES),
testing::Values(CV_8UC1, CV_8UC4),
testing::Values(CV_8UC1, CV_8UC3, CV_8UC4),
testing::Values(CV_32S, CV_32F, CV_64F)
)
)