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

Merge pull request #27261 from fengyuentau:5.x-merge-4.x-norm-hal_rvv

5.x merge 4.x: merge changes of norm and norm_diff in hal rvv from 4.x #27261

Merge with https://github.com/opencv/opencv_extra/pull/1251

No related changes in contrib

https://github.com/opencv/opencv/pull/26991 from fengyuentau:4x/core/norm2hal_rvv
https://github.com/opencv/opencv/pull/27045 from fengyuentau:4x/hal_rvv/normDiff

Previous "Merge 4.x" on norm_diff vectorization: https://github.com/opencv/opencv/pull/27068
This commit is contained in:
Yuantao Feng
2025-04-29 00:45:53 +08:00
committed by GitHub
parent bbd36a0ec1
commit 3bfc408995
7 changed files with 2318 additions and 1289 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ typedef perf::TestBaseWithParam<Size_MatType_NormType_t> Size_MatType_NormType;
PERF_TEST_P(Size_MatType_NormType, norm,
testing::Combine(
testing::Values(TYPICAL_MAT_SIZES),
testing::Values(TYPICAL_MAT_TYPES),
testing::Values(CV_8UC1, CV_8UC4, CV_8SC1, CV_16UC1, CV_16SC1, CV_32SC1, CV_32FC1, CV_64FC1),
testing::Values((int)NORM_INF, (int)NORM_L1, (int)NORM_L2)
)
)
@@ -36,7 +36,7 @@ PERF_TEST_P(Size_MatType_NormType, norm,
PERF_TEST_P(Size_MatType_NormType, norm_mask,
testing::Combine(
testing::Values(TYPICAL_MAT_SIZES),
testing::Values(TYPICAL_MAT_TYPES),
testing::Values(CV_8UC1, CV_8UC4, CV_8SC1, CV_16UC1, CV_16SC1, CV_32SC1, CV_32FC1, CV_64FC1),
testing::Values((int)NORM_INF, (int)NORM_L1, (int)NORM_L2)
)
)