Lines Matching refs:backgroundRatio
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);