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

  /external/opencv3/modules/cudabgsegm/src/
mog.cpp 59 int nmixtures, float varThreshold, float learningRate, float backgroundRatio, float noiseSigma,
61 void getBackgroundImage_gpu(int cn, PtrStepSzf weight, PtrStepSzb mean, PtrStepSzb dst, int nmixtures, float backgroundRatio, cudaStream_t stream);
77 MOGImpl(int history, int nmixtures, double backgroundRatio, double noiseSigma);
92 void setBackgroundRatio(double backgroundRatio) { backgroundRatio_ = (float) backgroundRatio; }
118 MOGImpl::MOGImpl(int history, int nmixtures, double backgroundRatio, double noiseSigma) :
123 backgroundRatio_ = backgroundRatio > 0 ? (float) backgroundRatio : defaultBackgroundRatio;
204 Ptr<cuda::BackgroundSubtractorMOG> cv::cuda::createBackgroundSubtractorMOG(int history, int nmixtures, double backgroundRatio, double noiseSigma)
206 return makePtr<MOGImpl>(history, nmixtures, backgroundRatio, noiseSigma)
    [all...]
  /external/opencv3/modules/cudabgsegm/include/opencv2/
cudabgsegm.hpp 97 virtual void setBackgroundRatio(double backgroundRatio) = 0;
107 @param backgroundRatio Background ratio.
113 double backgroundRatio = 0.7, double noiseSigma = 0);
  /external/opencv3/modules/cudabgsegm/src/cuda/
mog.cu 120 const int nmixtures, const float varThreshold, const float backgroundRatio)
157 if (wsum > backgroundRatio)
170 int nmixtures, float varThreshold, float backgroundRatio, cudaStream_t stream)
179 nmixtures, varThreshold, backgroundRatio);
193 const int nmixtures, const float varThreshold, const float backgroundRatio, const float learningRate, const float minVar)
313 if (wsum > backgroundRatio && kForeground < 0)
322 int nmixtures, float varThreshold, float backgroundRatio, float learningRate, float minVar,
332 nmixtures, varThreshold, backgroundRatio, learningRate, minVar);
343 void mog_gpu(PtrStepSzb frame, int cn, PtrStepSzb fgmask, PtrStepSzf weight, PtrStepSzf sortKey, PtrStepSzb mean, PtrStepSzb var, int nmixtures, float varThreshold, float learningRate, float backgroundRatio, float noiseSigma, cudaStream_t stream)
345 typedef void (*withoutLearning_t)(PtrStepSzb frame, PtrStepSzb fgmask, PtrStepSzf weight, PtrStepSzb mean, PtrStepSzb var, int nmixtures, float varThreshold, float backgroundRatio, cudaStream_t stream)
    [all...]
  /external/opencv3/modules/video/src/
bgfg_gaussmix2.cpp 136 backgroundRatio = defaultBackgroundRatio2;
161 backgroundRatio = defaultBackgroundRatio2;
239 virtual double getBackgroundRatio() const { return backgroundRatio; }
240 virtual void setBackgroundRatio(double _backgroundRatio) { backgroundRatio = (float)_backgroundRatio; }
284 << "backgroundRatio" << backgroundRatio
301 backgroundRatio = (float)fn["backgroundRatio"];
345 float backgroundRatio;
781 idxArg = kernel_apply.set(idxArg, backgroundRatio); //c_T
    [all...]

Completed in 586 milliseconds