Lines Matching refs:gmm_weight
135 PtrStepf gmm_weight, PtrStepf gmm_variance, PtrStep<WorkT> gmm_mean, in mog2() argument
165 float weight = alpha1 * gmm_weight(mode * frame.rows + y, x) + prune; in mog2()
214 if (weight < gmm_weight((i - 1) * frame.rows + y, x)) in mog2()
219 swap(gmm_weight, x, y, i - 1, frame.rows); in mog2()
235 …gmm_weight((mode - swap_count) * frame.rows + y, x) = weight; //update weight by the calculated va… in mog2()
243 gmm_weight(mode * frame.rows + y, x) *= totalWeight; in mog2()
255 gmm_weight(mode * frame.rows + y, x) = 1.f; in mog2()
258 gmm_weight(mode * frame.rows + y, x) = alphaT; in mog2()
263 gmm_weight(i * frame.rows + y, x) *= alpha1; in mog2()
277 if (alphaT < gmm_weight((i - 1) * frame.rows + y, x)) in mog2()
281 swap(gmm_weight, x, y, i - 1, frame.rows); in mog2()
323 tWeight += gmm_weight(mode * frame.rows + y, x); in mog2()
378 …__global__ void getBackgroundImage2(const PtrStepSzb modesUsed, const PtrStepf gmm_weight, const P… in getBackgroundImage2() argument
393 float weight = gmm_weight(mode * modesUsed.rows + y, x); in getBackgroundImage2()