HomeSort by relevance Sort by last modified time
    Searched defs:dyRow (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 394 const float* dyRow = templDy_.ptr<float>(y);
400 if (edgesRow[x] && (notNull(dyRow[x]) || notNull(dxRow[x])))
402 const float theta = fastAtan2(dyRow[x], dxRow[x]);
437 const float* dyRow = imageDy_.ptr<float>(y);
443 if (edgesRow[x] && (notNull(dyRow[x]) || notNull(dxRow[x])))
445 const float theta = fastAtan2(dyRow[x], dxRow[x]);
744 const float* dyRow = dy.ptr<float>(y);
748 if (edgesRow[x] && (notNull(dyRow[x]) || notNull(dxRow[x])))
753 p.theta = fastAtan2(dyRow[x], dxRow[x]);
  /external/opencv3/modules/video/src/
tvl1flow.cpp 672 float* dyRow = dy[y];
677 dyRow[x] = 0.5f * (srcNextRow[x] - srcPrevRow[x]);
758 float* dyRow = dy[y];
763 dyRow[x] = srcNextRow[x] - srcCurRow[x];
    [all...]

Completed in 61 milliseconds