本文转自:http://blog.csdn.net/Scythe666/article/details/38147051
这是(II)中的Mat版本,特别注意一下accumulateWeighted这个函数的用法。
我将官方文档中的函数说明贴出来:
Updates a running average.
Parameters: |
|
---|
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:
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.
See also
accumulate(), accumulateSquare(), accumulateProduct()