mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 22:44:02 +08:00
Remove mul24, for CV8UC3 3840x2160 it generates implementation specific result
This commit is contained in:
parent
dfe5fff2f5
commit
6fb282aa39
@ -185,7 +185,7 @@ __kernel void minmaxloc(__global const uchar * srcptr, int src_step, int src_off
|
||||
#endif
|
||||
{
|
||||
#ifdef HAVE_SRC_CONT
|
||||
src_index = mul24(id, srcTSIZE);
|
||||
src_index = id * srcTSIZE;//mul24(id, srcTSIZE);
|
||||
#else
|
||||
src_index = mad24(id / cols, src_step, mul24(id % cols, srcTSIZE));
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user