polyN             234 modules/cudaoptflow/include/opencv2/cudaoptflow.hpp     virtual void setPolyN(int polyN) = 0;
polyN             248 modules/cudaoptflow/include/opencv2/cudaoptflow.hpp             int polyN = 5,
polyN             240 modules/cudaoptflow/perf/perf_optflow.cpp     const int polyN = 5;
polyN             252 modules/cudaoptflow/perf/perf_optflow.cpp                                                        numIters, polyN, polySigma, flags);
polyN             269 modules/cudaoptflow/perf/perf_optflow.cpp         TEST_CYCLE() cv::calcOpticalFlowFarneback(frame0, frame1, flow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags);
polyN              63 modules/cudaoptflow/src/farneback.cpp             int polyN, const float *g, const float *xg, const float *xxg,
polyN              66 modules/cudaoptflow/src/farneback.cpp     void polynomialExpansionGpu(const PtrStepSzf &src, int polyN, PtrStepSzf dst, cudaStream_t stream);
polyN             100 modules/cudaoptflow/src/farneback.cpp                                  int numIters, int polyN, double polySigma, int flags) :
polyN             102 modules/cudaoptflow/src/farneback.cpp             numIters_(numIters), polyN_(polyN), polySigma_(polySigma), flags_(flags)
polyN             122 modules/cudaoptflow/src/farneback.cpp         virtual void setPolyN(int polyN) { polyN_ = polyN; }
polyN             463 modules/cudaoptflow/src/farneback.cpp                                                                  int numIters, int polyN, double polySigma, int flags)
polyN             466 modules/cudaoptflow/src/farneback.cpp                                              numIters, polyN, polySigma, flags);
polyN             275 modules/cudaoptflow/test/test_optflow.cpp     int polyN;
polyN             283 modules/cudaoptflow/test/test_optflow.cpp         polyN = GET_PARAM(2);
polyN             299 modules/cudaoptflow/test/test_optflow.cpp     double polySigma = polyN <= 5 ? 1.1 : 1.5;
polyN             304 modules/cudaoptflow/test/test_optflow.cpp     farn->setPolyN(polyN);
polyN              88 modules/video/perf/opencl/perf_optflow_farneback.cpp     const int polyN = get<0>(polyParams);
polyN             101 modules/video/perf/opencl/perf_optflow_farneback.cpp         cv::calcOpticalFlowFarneback(uFrame0, uFrame1, uFlow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags);
polyN             106 modules/video/perf/opencl/perf_optflow_farneback.cpp             cv::calcOpticalFlowFarneback(uFrame0, uFrame1, uFlow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags);
polyN              55 modules/video/src/opencl/optical_flow_farneback.cl #ifndef polyN
polyN              82 modules/video/src/opencl/optical_flow_farneback.cl     const int x = bx * (bdx - 2*polyN) + tx - polyN;
polyN              96 modules/video/src/opencl/optical_flow_farneback.cl         for (int k = 1; k <= polyN; ++k)
polyN             109 modules/video/src/opencl/optical_flow_farneback.cl     if (y < rows && y >= 0 && tx >= polyN && tx + polyN < bdx && x < cols)
polyN             117 modules/video/src/opencl/optical_flow_farneback.cl         for (int k = 1; k <= polyN; ++k)
polyN             598 modules/video/src/optflowgf.cpp         polyN = 5;
polyN             608 modules/video/src/optflowgf.cpp     int polyN;
polyN             616 modules/video/src/optflowgf.cpp         CV_Assert(polyN == 5 || polyN == 7);
polyN             656 modules/video/src/optflowgf.cpp         setPolynomialExpansionConsts(polyN, polySigma);
polyN             900 modules/video/src/optflowgf.cpp         size_t globalsize[2] = { DIVUP(src.cols, localsize[0] - 2*polyN) * localsize[0], src.rows};
polyN             906 modules/video/src/optflowgf.cpp         cv::String build_options = cv::format("-D polyN=%d -D USE_DOUBLE=%d", polyN, useDouble ? 1 : 0);
polyN             908 modules/video/src/optflowgf.cpp         cv::String build_options = cv::format("-D polyN=%d", polyN);
polyN            1059 modules/video/src/optflowgf.cpp     opticalFlow.polyN       = poly_n;
polyN              68 modules/video/test/ocl/test_optflow_farneback.cpp     int polyN;
polyN              78 modules/video/test/ocl/test_optflow_farneback.cpp         polyN = GET_PARAM(1);
polyN              92 modules/video/test/ocl/test_optflow_farneback.cpp     double polySigma = polyN <= 5 ? 1.1 : 1.5;
polyN              97 modules/video/test/ocl/test_optflow_farneback.cpp         OCL_ON(cv::calcOpticalFlowFarneback(frame0, frame1, uflow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags));
polyN             101 modules/video/test/ocl/test_optflow_farneback.cpp     OCL_OFF(cv::calcOpticalFlowFarneback(frame0, frame1, flow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags));
polyN             102 modules/video/test/ocl/test_optflow_farneback.cpp     OCL_ON(cv::calcOpticalFlowFarneback(frame0, frame1, uflow, pyrScale, numLevels, winSize, numIters, polyN, polySigma, flags));