Home
last modified time | relevance | path

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

/external/opencv3/modules/cudaoptflow/src/
Dpyrlk.cpp76 … void sparse(const GpuMat& prevImg, const GpuMat& nextImg, const GpuMat& prevPts, GpuMat& nextPts,
79 … void dense(const GpuMat& prevImg, const GpuMat& nextImg, GpuMat& u, GpuMat& v, Stream& stream);
116 …void PyrLKOpticalFlowBase::sparse(const GpuMat& prevImg, const GpuMat& nextImg, const GpuMat& prev… in sparse() argument
130 CV_Assert( prevImg.size() == nextImg.size() && prevImg.type() == nextImg.type() ); in sparse()
163 nextImg.convertTo(nextPyr_[0], CV_32F, stream); in sparse()
172 cuda::cvtColor(nextImg, buf, COLOR_BGR2BGRA, 0, stream); in sparse()
207 …void PyrLKOpticalFlowBase::dense(const GpuMat& prevImg, const GpuMat& nextImg, GpuMat& u, GpuMat& … in dense() argument
210 CV_Assert( prevImg.size() == nextImg.size() && prevImg.type() == nextImg.type() ); in dense()
220 nextImg.convertTo(nextPyr_[0], CV_32F, stream); in dense()
293 const GpuMat nextImg = _nextImg.getGpuMat(); in calc() local
[all …]
/external/opencv3/modules/java/src/
Dvideo+Video.java94 …public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint… in calcOpticalFlowPyrLK() argument
100 …calcOpticalFlowPyrLK_0(prevImg.nativeObj, nextImg.nativeObj, prevPts_mat.nativeObj, nextPts_mat.na… in calcOpticalFlowPyrLK()
106 …public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint… in calcOpticalFlowPyrLK() argument
112 …calcOpticalFlowPyrLK_1(prevImg.nativeObj, nextImg.nativeObj, prevPts_mat.nativeObj, nextPts_mat.na… in calcOpticalFlowPyrLK()
118 …public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint… in calcOpticalFlowPyrLK() argument
124 …calcOpticalFlowPyrLK_2(prevImg.nativeObj, nextImg.nativeObj, prevPts_mat.nativeObj, nextPts_mat.na… in calcOpticalFlowPyrLK()
Dvideo.cpp350 Mat& nextImg = *((Mat*)nextImg_nativeObj); in Java_org_opencv_video_Video_calcOpticalFlowPyrLK_10() local
353 …cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel,… in Java_org_opencv_video_Video_calcOpticalFlowPyrLK_10()
385 Mat& nextImg = *((Mat*)nextImg_nativeObj); in Java_org_opencv_video_Video_calcOpticalFlowPyrLK_11() local
387 …cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel … in Java_org_opencv_video_Video_calcOpticalFlowPyrLK_11()
419 Mat& nextImg = *((Mat*)nextImg_nativeObj); in Java_org_opencv_video_Video_calcOpticalFlowPyrLK_12() local
420 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err ); in Java_org_opencv_video_Video_calcOpticalFlowPyrLK_12()
/external/opencv3/apps/traincascade/
Dimagestorage.cpp50 bool CvCascadeImageReader::NegReader::nextImg() in nextImg() function in CvCascadeImageReader::NegReader
91 if ( !nextImg() ) in get()
113 if ( !nextImg() ) in get()
Dimagestorage.h37 bool nextImg();
/external/opencv3/modules/video/src/
Dlkpyramid.hpp21 const Mat* nextImg; member
Dlkpyramid.cpp203 nextImg = &_nextImg; in LKTrackerInvoker()
228 const Mat& J = *nextImg; in operator ()()
878 …bool sparse(const UMat &prevImg, const UMat &nextImg, const UMat &prevPts, UMat &nextPts, UMat &st… in sparse() argument
899 …nextPyr[0] = UMat(nextImg.rows,(nextImg.cols+pitchAlign-1)&(-pitchAlign),CV_32FC1).colRange(0,next… in sparse()
914 nextImg.convertTo(nextPyr[0], CV_32F); in sparse()
/external/opencv3/modules/cudaoptflow/include/opencv2/
Dcudaoptflow.hpp99 virtual void calc(InputArray prevImg, InputArray nextImg,
/external/opencv3/modules/video/include/opencv2/video/
Dtracking.hpp173 CV_EXPORTS_W void calcOpticalFlowPyrLK( InputArray prevImg, InputArray nextImg,