/external/opencv3/modules/video/test/ocl/ |
D | test_optflow_farneback.cpp | 67 double pyrScale; in PARAM_TEST_CASE() local 77 pyrScale = GET_PARAM(0); in PARAM_TEST_CASE() 97 …OCL_ON(cv::calcOpticalFlowFarneback(frame0, frame1, uflow, pyrScale, numLevels, winSize, numIters,… in OCL_TEST_P() 101 …OCL_OFF(cv::calcOpticalFlowFarneback(frame0, frame1, flow, pyrScale, numLevels, winSize, numIters,… in OCL_TEST_P() 102 …OCL_ON(cv::calcOpticalFlowFarneback(frame0, frame1, uflow, pyrScale, numLevels, winSize, numIters,… in OCL_TEST_P()
|
/external/opencv3/modules/video/perf/opencl/ |
D | perf_optflow_farneback.cpp | 90 const double pyrScale = 0.5; variable 101 …cv::calcOpticalFlowFarneback(uFrame0, uFrame1, uFlow, pyrScale, numLevels, winSize, numIters, poly… 106 …cv::calcOpticalFlowFarneback(uFrame0, uFrame1, uFlow, pyrScale, numLevels, winSize, numIters, poly…
|
/external/opencv3/modules/cudaoptflow/src/ |
D | farneback.cpp | 99 FarnebackOpticalFlowImpl(int numLevels, double pyrScale, bool fastPyramids, int winSize, in FarnebackOpticalFlowImpl() argument 101 … numLevels_(numLevels), pyrScale_(pyrScale), fastPyramids_(fastPyramids), winSize_(winSize), in FarnebackOpticalFlowImpl() 110 virtual void setPyrScale(double pyrScale) { pyrScale_ = pyrScale; } in setPyrScale() argument 462 Ptr<FarnebackOpticalFlow> cv::cuda::FarnebackOpticalFlow::create(int numLevels, double pyrScale, bo… in create() argument 465 return makePtr<FarnebackOpticalFlowImpl>(numLevels, pyrScale, fastPyramids, winSize, in create()
|
/external/opencv3/modules/cudaoptflow/include/opencv2/ |
D | cudaoptflow.hpp | 222 virtual void setPyrScale(double pyrScale) = 0; 244 double pyrScale = 0.5,
|
/external/opencv3/modules/cudaoptflow/perf/ |
D | perf_optflow.cpp | 237 const double pyrScale = 0.5; variable 251 cv::cuda::FarnebackOpticalFlow::create(numLevels, pyrScale, false, winSize, 269 …TEST_CYCLE() cv::calcOpticalFlowFarneback(frame0, frame1, flow, pyrScale, numLevels, winSize, numI…
|
/external/opencv3/modules/cudaoptflow/test/ |
D | test_optflow.cpp | 274 double pyrScale; in PARAM_TEST_CASE() local 282 pyrScale = GET_PARAM(1); in PARAM_TEST_CASE() 303 farn->setPyrScale(pyrScale); in CUDA_TEST_P()
|
/external/opencv3/modules/video/src/ |
D | optflowgf.cpp | 594 pyrScale = 0.5; in FarnebackOpticalFlow() 604 double pyrScale; member in cv::FarnebackOpticalFlow 617 CV_Assert(!fastPyramids || std::abs(pyrScale - 0.5) < 1e-6); in operator ()() 634 scale *= pyrScale; in operator ()() 662 scale *= pyrScale; in operator ()() 707 multiply(1./pyrScale, curFlowX, curFlowX); in operator ()() 708 multiply(1./pyrScale, curFlowY, curFlowY); in operator ()() 1055 opticalFlow.pyrScale = pyr_scale; in ocl_calcOpticalFlowFarneback()
|