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

Merge pull request #25626 from asmorkalov:as/HAL_lut_size

Fixed width and height order in HAL call for LUT
This commit is contained in:
Alexander Smorkalov
2024-05-23 17:52:43 +03:00
committed by GitHub
+1 -1
View File
@@ -378,7 +378,7 @@ void cv::LUT( InputArray _src, InputArray _lut, OutputArray _dst )
openvx_LUT(src, dst, lut))
CALL_HAL(LUT, cv_hal_lut, src.data, src.step, src.type(), lut.data,
lut.elemSize1(), lutcn, dst.data, dst.step, src.rows, src.cols);
lut.elemSize1(), lutcn, dst.data, dst.step, src.cols, src.rows);
#if !IPP_DISABLE_PERF_LUT
CV_IPP_RUN(_src.dims() <= 2, ipp_lut(src, lut, dst));