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

Fixed width and height order in HAL call for LUT.

This commit is contained in:
Alexander Smorkalov
2024-05-23 10:30:33 +03:00
parent f2c48e5e97
commit f85014534f
+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));