Home
last modified time | relevance | path

Searched refs:nextPyr (Results 1 – 1 of 1) sorted by relevance

/external/opencv3/modules/video/src/
Dlkpyramid.cpp891 std::vector<UMat> nextPyr; nextPyr.resize(maxLevel + 1); in sparse() local
899nextPyr[0] = UMat(nextImg.rows,(nextImg.cols+pitchAlign-1)&(-pitchAlign),CV_32FC1).colRange(0,next… in sparse()
907 cols = (nextPyr[level - 1].cols+1)/2; in sparse()
908 rows = (nextPyr[level - 1].rows+1)/2; in sparse()
909nextPyr[level] = UMat(rows,(cols+pitchAlign-1)&(-pitchAlign),nextPyr[level-1].type()).colRange(0,c… in sparse()
914 nextImg.convertTo(nextPyr[0], CV_32F); in sparse()
919 pyrDown(nextPyr[level - 1], nextPyr[level]); in sparse()
925 if (!lkSparse_run(prevPyr[level], nextPyr[level], prevPts, in sparse()
1146 std::vector<Mat> prevPyr, nextPyr; in calcOpticalFlowPyrLK() local
1182 _nextImg.getMatVector(nextPyr); in calcOpticalFlowPyrLK()
[all …]