Lines Matching refs:OT
291 template <typename PT, typename CT, typename OT>
323 OT v1 = c_stat.V1_CC<OT>(i, j, k); in bgfgClassification()
324 OT v2 = c_stat.V2_CC<OT>(i, j, k); in bgfgClassification()
350 OT v = c_stat.V_C<OT>(i, j, k); in bgfgClassification()
370 template <typename PT, typename CT, typename OT>
377 … cudaSafeCall( cudaFuncSetCacheConfig(bgfgClassification<PT, CT, OT>, cudaFuncCachePreferL1) ); in bgfgClassification_gpu()
379 …bgfgClassification<PT, CT, OT><<<grid, block, 0, stream>>>((PtrStepSz<PT>)prevFrame, (PtrStepSz<CT… in bgfgClassification_gpu()
400 …template <typename PT, typename CT, typename OT, class PrevFramePtr2D, class CurFramePtr2D, class …
402 PtrStepb foreground, PtrStep<OT> background, in updateBackgroundModel()
450 OT v1 = c_stat.V1_CC<OT>(i, j, k); in updateBackgroundModel()
458 OT v2 = c_stat.V2_CC<OT>(i, j, k); in updateBackgroundModel()
485 c_stat.V1_CC<OT>(i, j, indx) = Output<OT>::make(prevVal.x, prevVal.y, prevVal.z); in updateBackgroundModel()
486 c_stat.V2_CC<OT>(i, j, indx) = Output<OT>::make(curVal.x, curVal.y, curVal.z); in updateBackgroundModel()
502 const OT V1_CC_indx = c_stat.V1_CC<OT>(i, j, indx); in updateBackgroundModel()
503 const OT V2_CC_indx = c_stat.V2_CC<OT>(i, j, indx); in updateBackgroundModel()
515 OT v1_tmp1; in updateBackgroundModel()
516 OT v1_tmp2 = V1_CC_indx; in updateBackgroundModel()
518 OT v2_tmp1; in updateBackgroundModel()
519 OT v2_tmp2 = V2_CC_indx; in updateBackgroundModel()
531 v1_tmp1 = c_stat.V1_CC<OT>(i, j, l); in updateBackgroundModel()
532 c_stat.V1_CC<OT>(i, j, l) = v1_tmp2; in updateBackgroundModel()
535 v2_tmp1 = c_stat.V2_CC<OT>(i, j, l); in updateBackgroundModel()
536 c_stat.V2_CC<OT>(i, j, l) = v2_tmp2; in updateBackgroundModel()
615 OT v = c_stat.V_C<OT>(i, j, k); in updateBackgroundModel()
640 c_stat.V_C<OT>(i, j, indx) = Output<OT>::make(curVal.x, curVal.y, curVal.z); in updateBackgroundModel()
656 OT V_C_indx = c_stat.V_C<OT>(i, j, indx); in updateBackgroundModel()
668 OT v_tmp1; in updateBackgroundModel()
669 OT v_tmp2 = V_C_indx; in updateBackgroundModel()
681 v_tmp1 = c_stat.V_C<OT>(i, j, l); in updateBackgroundModel()
682 c_stat.V_C<OT>(i, j, l) = v_tmp2; in updateBackgroundModel()
737 OT oldVal = background(i, j); in updateBackgroundModel()
745 background(i, j) = Output<OT>::make( in updateBackgroundModel()
753 background(i, j) = Output<OT>::make(curVal.x, curVal.y, curVal.z); in updateBackgroundModel()
758 template <typename PT, typename CT, typename OT>
761 …epSz<CT> curFrame, PtrStepSzb Ftd, PtrStepSzb Fbd, PtrStepSzb foreground, PtrStepSz<OT> background, in call()
768 …cudaSafeCall( cudaFuncSetCacheConfig(updateBackgroundModel<PT, CT, OT, PtrStep<PT>, PtrStep<CT>, P… in call()
770 …updateBackgroundModel<PT, CT, OT, PtrStep<PT>, PtrStep<CT>, PtrStepb, PtrStepb><<<grid, block, 0, … in call()
782 template <typename PT, typename CT, typename OT>
787 …pdateBackgroundModel<PT, CT, OT>::call(PtrStepSz<PT>(prevFrame), PtrStepSz<CT>(curFrame), Ftd, Fbd… in updateBackgroundModel_gpu()