1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-16 05:17:39 +08:00

Merge pull request #3272 from vrabaud:4.x_compile

This commit is contained in:
Alexander Alekhin
2022-06-08 19:30:11 +00:00

View File

@@ -281,7 +281,7 @@ namespace cv { namespace cuda { namespace device
InitColSSD<RADIUS>(x_tex, y_tex, img_step, left, right, d, col_ssd); InitColSSD<RADIUS>(x_tex, y_tex, img_step, left, right, d, col_ssd);
if (col_ssd_extra > 0) if (col_ssd_extra != nullptr)
if (x_tex + BLOCK_W < cwidth) if (x_tex + BLOCK_W < cwidth)
InitColSSD<RADIUS>(x_tex + BLOCK_W, y_tex, img_step, left, right, d, col_ssd_extra); InitColSSD<RADIUS>(x_tex + BLOCK_W, y_tex, img_step, left, right, d, col_ssd_extra);