Searched refs:d_nextPts (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/samples/gpu/ |
D | pyrlk_optical_flow.cpp | 157 GpuMat d_nextPts; in main() local 160 …Gray ? d_frame0Gray : d_frame0, useGray ? d_frame1Gray : d_frame1, d_prevPts, d_nextPts, d_status); in main() 167 vector<Point2f> nextPts(d_nextPts.cols); in main() 168 download(d_nextPts, nextPts); in main()
|
/external/opencv3/modules/cudaoptflow/test/ |
D | test_optflow.cpp | 211 cv::cuda::GpuMat d_nextPts; in CUDA_TEST_P() local 213 pyrLK->calc(loadMat(frame0), loadMat(frame1), d_pts, d_nextPts, d_status); in CUDA_TEST_P() 215 std::vector<cv::Point2f> nextPts(d_nextPts.cols); in CUDA_TEST_P() 216 cv::Mat nextPts_mat(1, d_nextPts.cols, CV_32FC2, (void*) &nextPts[0]); in CUDA_TEST_P() 217 d_nextPts.download(nextPts_mat); in CUDA_TEST_P()
|