Home
last modified time | relevance | path

Searched refs:scaleStep (Results 1 – 12 of 12) sorted by relevance

/external/opencv3/modules/video/test/ocl/
Dtest_optflow_tvl1flow.cpp65 double scaleStep; in PARAM_TEST_CASE() local
70 scaleStep = GET_PARAM(2); in PARAM_TEST_CASE()
88 alg->setScaleStep(scaleStep); in OCL_TEST_P()
/external/opencv3/modules/video/src/
Dtvl1flow.cpp107 CV_IMPL_PROPERTY(double, ScaleStep, scaleStep)
121 double scaleStep; member in __anonb95d51780111::OpticalFlowDual_TVL1
370 scaleStep = 0.8; in OpticalFlowDual_TVL1()
446 resize(dm.I0s[s - 1], dm.I0s[s], Size(), scaleStep, scaleStep); in calc()
447 resize(dm.I1s[s - 1], dm.I1s[s], Size(), scaleStep, scaleStep); in calc()
457 resize(dm.u1s[s - 1], dm.u1s[s], Size(), scaleStep, scaleStep); in calc()
458 resize(dm.u2s[s - 1], dm.u2s[s], Size(), scaleStep, scaleStep); in calc()
460 multiply(dm.u1s[s], Scalar::all(scaleStep), dm.u1s[s]); in calc()
461 multiply(dm.u2s[s], Scalar::all(scaleStep), dm.u2s[s]); in calc()
494 multiply(dm.u1s[s - 1], Scalar::all(1 / scaleStep), dm.u1s[s - 1]); in calc()
[all …]
/external/opencv3/modules/video/perf/opencl/
Dperf_optflow_dualTVL1.cpp80 const double scaleStep = get<1>(filteringScale); variable
93 alg->setScaleStep(scaleStep);
/external/opencv3/modules/cudaoptflow/src/
Dtvl1flow.cpp80 … int iterations, double scaleStep, double gamma, bool useInitialFlow) : in OpticalFlowDual_TVL1_Impl() argument
82 … epsilon_(epsilon), iterations_(iterations), scaleStep_(scaleStep), useInitialFlow_(useInitialFlow) in OpticalFlowDual_TVL1_Impl()
111 virtual void setScaleStep(double scaleStep) { scaleStep_ = scaleStep; } in setScaleStep() argument
375 double epsilon, int iterations, double scaleStep, double gamma, bool useInitialFlow) in create() argument
378 … epsilon, iterations, scaleStep, gamma, useInitialFlow); in create()
/external/opencv3/modules/cudaoptflow/include/opencv2/
Dcudaoptflow.hpp327 virtual void setScaleStep(double scaleStep) = 0;
340 double scaleStep = 0.8,
/external/opencv3/samples/gpu/
Dgeneralized_hough.cpp72 const double scaleStep = cmd.get<double>("scaleStep"); in main() local
117 guil->setScaleStep(scaleStep); in main()
/external/deqp/framework/randomshaders/
DrsgBinaryOps.cpp218 const float scaleStep = 0.25f; in operator ()() local
220 float scale = getQuantizedFloat(rnd, minScale, maxScale, scaleStep); in operator ()()
242 if (de::inBounds(aMin*(scale-(float)i*scaleStep), dstMin, dstMax) && in operator ()()
243 de::inBounds(aMax*(scale-(float)i*scaleStep), dstMin, dstMax)) in operator ()()
244 bMin = scale-(float)i*scaleStep; in operator ()()
246 if (de::inBounds(aMin*(scale+(float)i*scaleStep), dstMin, dstMax) && in operator ()()
247 de::inBounds(aMax*(scale+(float)i*scaleStep), dstMin, dstMax)) in operator ()()
248 bMax = scale+(float)i*scaleStep; in operator ()()
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
DNCVHaarObjectDetection.hpp373 Ncv32f scaleStep, //default 1.2f
/external/opencv3/modules/cudaimgproc/src/
Dgeneralized_hough.cpp618 void setScaleStep(double scaleStep) { scaleStep_ = scaleStep; } in setScaleStep() argument
/external/opencv3/modules/imgproc/src/
Dgeneralized_hough.cpp554 void setScaleStep(double scaleStep) { scaleStep_ = scaleStep; } in setScaleStep() argument
/external/opencv3/modules/cudalegacy/src/cuda/
DNCVHaarObjectDetection.cu1557 Ncv32f scaleStep, //default 1.2f in ncvDetectObjectsMultiScale_device() argument
1588 ncvAssertReturn(scaleStep > 1.0f, NCV_INVALID_SCALE); in ncvDetectObjectsMultiScale_device()
1661 for (Ncv32f scaleIter = 1.0f; ; scaleIter *= scaleStep) in ncvDetectObjectsMultiScale_device()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp847 virtual void setScaleStep(double scaleStep) = 0;