/external/opencv3/modules/video/src/ |
lkpyramid.hpp | 21 const Mat* nextImg;
|
lkpyramid.cpp | 203 nextImg = &_nextImg; 228 const Mat& J = *nextImg; [all...] |
/external/opencv3/modules/cudaoptflow/src/ |
pyrlk.cpp | 76 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& prevPts, GpuMat& nextPts, GpuMat& status, GpuMat* err, Stream& stream) 130 CV_Assert( prevImg.size() == nextImg.size() && prevImg.type() == nextImg.type() ); 163 nextImg.convertTo(nextPyr_[0], CV_32F, stream); 172 cuda::cvtColor(nextImg, buf, COLOR_BGR2BGRA, 0, stream); 207 void PyrLKOpticalFlowBase::dense(const GpuMat& prevImg, const GpuMat& nextImg, GpuMat& u, GpuMat& v, Stream& stream) 210 CV_Assert( prevImg.size() == nextImg.size() && prevImg.type() == nextImg.type() ) [all...] |
/external/opencv3/modules/java/src/ |
video+Video.java | 90 // C++: void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, vector_Point2f prevPts, vector_Point2f& nextPts, vector_uchar& status, vector_float& err, Size winSize = Size(21,21), int maxLevel = 3, TermCriteria criteria = TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), int flags = 0, double minEigThreshold = 1e-4) 93 //javadoc: calcOpticalFlowPyrLK(prevImg, nextImg, prevPts, nextPts, status, err, winSize, maxLevel, criteria, flags, minEigThreshold) 94 public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria criteria, int flags, double minEigThreshold) 100 calcOpticalFlowPyrLK_0(prevImg.nativeObj, nextImg.nativeObj, prevPts_mat.nativeObj, nextPts_mat.nativeObj, status_mat.nativeObj, err_mat.nativeObj, winSize.width, winSize.height, maxLevel, criteria.type, criteria.maxCount, criteria.epsilon, flags, minEigThreshold); 105 //javadoc: calcOpticalFlowPyrLK(prevImg, nextImg, prevPts, nextPts, status, err, winSize, maxLevel) 106 public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel) 112 calcOpticalFlowPyrLK_1(prevImg.nativeObj, nextImg.nativeObj, prevPts_mat.nativeObj, nextPts_mat.nativeObj, status_mat.nativeObj, err_mat.nativeObj, winSize.width, winSize.height, maxLevel); 117 //javadoc: calcOpticalFlowPyrLK(prevImg, nextImg, prevPts, nextPts, status, err) 118 public static void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, MatOfPoint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err) 124 calcOpticalFlowPyrLK_2(prevImg.nativeObj, nextImg.nativeObj, prevPts_mat.nativeObj, nextPts_mat.nativeObj, status_mat.nativeObj, err_mat.nativeObj) [all...] |
video.cpp | 328 // void calcOpticalFlowPyrLK(Mat prevImg, Mat nextImg, vector_Point2f prevPts, vector_Point2f& nextPts, vector_uchar& status, vector_float& err, Size winSize = Size(21,21), int maxLevel = 3, TermCriteria criteria = TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), int flags = 0, double minEigThreshold = 1e-4) 350 Mat& nextImg = *((Mat*)nextImg_nativeObj); 353 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel, criteria, (int)flags, (double)minEigThreshold ); 385 Mat& nextImg = *((Mat*)nextImg_nativeObj); 387 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err, winSize, (int)maxLevel ); 419 Mat& nextImg = *((Mat*)nextImg_nativeObj); 420 cv::calcOpticalFlowPyrLK( prevImg, nextImg, prevPts, nextPts, status, err ); [all...] |
/external/opencv3/apps/traincascade/ |
imagestorage.h | 37 bool nextImg();
|
imagestorage.cpp | 50 bool CvCascadeImageReader::NegReader::nextImg() 91 if ( !nextImg() ) 113 if ( !nextImg() )
|
/external/opencv3/modules/cudaoptflow/include/opencv2/ |
cudaoptflow.hpp | 91 @param nextImg Second input image of the same size and the same type as prevImg. 99 virtual void calc(InputArray prevImg, InputArray nextImg,
|
/external/opencv3/modules/video/include/opencv2/video/ |
tracking.hpp | 130 @param nextImg second input image or pyramid of the same size and the same type as prevImg. 173 CV_EXPORTS_W void calcOpticalFlowPyrLK( InputArray prevImg, InputArray nextImg,
|
/cts/apps/CtsVerifier/libs/ |
opencv3-android.jar | |