Merge moved code from opencv/3.4

pull/2289/head 4.1.2
Alexander Alekhin 6 years ago
commit 83e98d2424
  1. 4
      modules/cudalegacy/src/cuda/NCVBroxOpticalFlow.cu

@ -955,7 +955,7 @@ NCVStatus NCVBroxOpticalFlow(const NCVBroxOpticalFlowDescriptor desc,
//compute derivatives
dim3 dBlocks(iDivUp(kLevelWidth, 32), iDivUp(kLevelHeight, 6));
dim3 dThreads(32, 6);
//dim3 dThreads(32, 6);
const int kPitchTex = kLevelStride * sizeof(float);
@ -1121,7 +1121,7 @@ NCVStatus NCVBroxOpticalFlow(const NCVBroxOpticalFlowDescriptor desc,
Ncv32u ns = alignUp(nw, kStrideAlignmentFloat);
dim3 p_blocks(iDivUp(nw, 32), iDivUp(nh, 8));
dim3 p_threads(32, 8);
//dim3 p_threads(32, 8);
NcvSize32u inner_srcSize (kLevelWidth, kLevelHeight);
NcvSize32u dstSize (nw, nh);

Loading…
Cancel
Save