Searched refs:backgroundRatio (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/cudabgsegm/src/ |
D | mog.cpp | 59 … int nmixtures, float varThreshold, float learningRate, float backgroundRatio, float noiseSigma, 61 …tepSzf weight, PtrStepSzb mean, PtrStepSzb dst, int nmixtures, float backgroundRatio, cudaStream_t… 77 MOGImpl(int history, int nmixtures, double backgroundRatio, double noiseSigma); 92 … void setBackgroundRatio(double backgroundRatio) { backgroundRatio_ = (float) backgroundRatio; } in setBackgroundRatio() argument 118 MOGImpl::MOGImpl(int history, int nmixtures, double backgroundRatio, double noiseSigma) : in MOGImpl() argument 123 backgroundRatio_ = backgroundRatio > 0 ? (float) backgroundRatio : defaultBackgroundRatio; in MOGImpl() 204 …da::createBackgroundSubtractorMOG(int history, int nmixtures, double backgroundRatio, double noise… in createBackgroundSubtractorMOG() argument 206 return makePtr<MOGImpl>(history, nmixtures, backgroundRatio, noiseSigma); in createBackgroundSubtractorMOG()
|
/external/opencv3/modules/cudabgsegm/src/cuda/ |
D | mog.cu | 120 … const int nmixtures, const float varThreshold, const float backgroundRatio) in mog_withoutLearning() argument 157 if (wsum > backgroundRatio) in mog_withoutLearning() 170 … int nmixtures, float varThreshold, float backgroundRatio, cudaStream_t stream) in mog_withoutLearning_caller() argument 179 … nmixtures, varThreshold, backgroundRatio); in mog_withoutLearning_caller() 193 …const int nmixtures, const float varThreshold, const float backgroundRatio, const float learningRa… in mog_withLearning() argument 313 if (wsum > backgroundRatio && kForeground < 0) in mog_withLearning() 322 … int nmixtures, float varThreshold, float backgroundRatio, float learningRate, float minVar, in mog_withLearning_caller() argument 332 … nmixtures, varThreshold, backgroundRatio, learningRate, minVar); in mog_withLearning_caller() 343 …zb var, int nmixtures, float varThreshold, float learningRate, float backgroundRatio, float noiseS… in mog_gpu() argument 345 …epSzb mean, PtrStepSzb var, int nmixtures, float varThreshold, float backgroundRatio, cudaStream_t… in mog_gpu() [all …]
|
/external/opencv3/modules/video/src/ |
D | bgfg_gaussmix2.cpp | 136 backgroundRatio = defaultBackgroundRatio2; in BackgroundSubtractorMOG2Impl() 161 backgroundRatio = defaultBackgroundRatio2; in BackgroundSubtractorMOG2Impl() 239 virtual double getBackgroundRatio() const { return backgroundRatio; } in getBackgroundRatio() 240 …virtual void setBackgroundRatio(double _backgroundRatio) { backgroundRatio = (float)_backgroundRat… in setBackgroundRatio() 284 << "backgroundRatio" << backgroundRatio in write() 301 backgroundRatio = (float)fn["backgroundRatio"]; in read() 345 float backgroundRatio; member in cv::BackgroundSubtractorMOG2Impl 781 idxArg = kernel_apply.set(idxArg, backgroundRatio); //c_TB in ocl_apply() 806 kernel_getBg.set(idxArg, backgroundRatio); in ocl_getBackgroundImage() 851 backgroundRatio, varThresholdGen, in apply() [all …]
|
/external/opencv3/modules/cudabgsegm/include/opencv2/ |
D | cudabgsegm.hpp | 97 virtual void setBackgroundRatio(double backgroundRatio) = 0; 113 double backgroundRatio = 0.7, double noiseSigma = 0);
|