accumulateWeighted函数简介



本文转自:http://blog.csdn.net/Scythe666/article/details/38147051

这是(II)中的Mat版本,特别注意一下accumulateWeighted这个函数的用法。

我将官方文档中的函数说明贴出来:

accumulateWeighted

Updates a running average.

C++:  void  accumulateWeighted (InputArray  src, InputOutputArray  dst, double  alpha, InputArray  mask=noArray()  )
Python:   cv2. accumulateWeighted (src, dst, alpha [, mask ] ) → None
C:  void  cvRunningAvg (const CvArr*  image, CvArr*  acc, double  alpha, const CvArr*  mask=NULL  )
Python:   cv. RunningAvg (image, acc, alpha, mask=None ) → None
Parameters:
  • src – Input image as 1- or 3-channel, 8-bit or 32-bit floating point.
  • dst – Accumulator image with the same number of channels as input image, 32-bit or 64-bit floating-point.
  • alpha – Weight of the input image.
  • mask – Optional operation mask.

The function calculates the weighted sum of the input image src and the accumulator dst so that dst becomes a running average of a frame sequence:

\texttt{dst} (x,y)  \leftarrow (1- \texttt{alpha} )  \cdot \texttt{dst} (x,y) +  \texttt{alpha} \cdot \texttt{src} (x,y)  \quad \text{if} \quad \texttt{mask} (x,y)  \ne 0

That is, alpha regulates the update speed (how fast the accumulator “forgets” about earlier images). The function supports multi-channel images. Each channel is processed independently.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值