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

  /external/opencv3/samples/gpu/
pyrlk_optical_flow.cpp 157 GpuMat d_nextPts;
160 d_pyrLK->calc(useGray ? d_frame0Gray : d_frame0, useGray ? d_frame1Gray : d_frame1, d_prevPts, d_nextPts, d_status);
167 vector<Point2f> nextPts(d_nextPts.cols);
168 download(d_nextPts, nextPts);
  /external/opencv3/modules/cudaoptflow/test/
test_optflow.cpp 211 cv::cuda::GpuMat d_nextPts;
213 pyrLK->calc(loadMat(frame0), loadMat(frame1), d_pts, d_nextPts, d_status);
215 std::vector<cv::Point2f> nextPts(d_nextPts.cols);
216 cv::Mat nextPts_mat(1, d_nextPts.cols, CV_32FC2, (void*) &nextPts[0]);
217 d_nextPts.download(nextPts_mat);

Completed in 125 milliseconds