imgproc_accumulateWeighted

[32/64bit] 移動平均を更新します.

imgproc_accumulateWeighted p1,p2,p3,p4

p1 = sptr : IntPtr src
p2 = sptr : IntPtr dst
p3 = double : double alpha
p4 = sptr : IntPtr mask

(プラグイン / モジュール : OpenCvSharpExtern.dll)

解説

この関数は,入力画像 src と累算器 dst の加重和を計算し,dst がフレームシーケンスの走行平均になるようにします.(x,y) ¶leftarrow (1- ¶texttt{alpha} ) ¶cdot ¶texttt{dst} (x,y) + ¶texttt{dst} ¶leftarrow (1- ¶texttt{alpha} )(x,y) + ???д??? ????? ???д???(x,y) ♪♪♪\(^o^)|mask} (x,y)(x,y) ????? ) つまり,αは,更新速度(以前の画像をどれだけ早く忘れるか)を調節します.この関数は,マルチチャンネル画像をサポートします.関連項目:accumulate, accumulateSquare, accumulateProduct

元関数名(C#): imgproc_accumulateWeighted
元DLLエクスポート名: imgproc_accumulateWeighted
参照元CSファイル: Internal\PInvoke\NativeMethods\imgproc\NativeMethods_imgproc.cs
▼ C言語側関数定義
CVAPI(ExceptionStatus) imgproc_accumulateWeighted(cv::_InputArray *src, cv::_InputOutputArray *dst, double alpha, cv::_InputArray *mask)
{
    BEGIN_WRAP
    cv::accumulateWeighted(*src, *dst, alpha, entity(mask));
    END_WRAP
}

情報

プラグイン / モジュールOpenCvSharpExtern.dll
バージョン1.00
作成日2021/11/30
著作者inovia
URLhttps://hsp.moe/
備考#include "OpenCvSharpExtern32.as"
#include "OpenCvSharpExtern64.as"
使用するHSPランタイムのビット数に合わせたインクルードファイルを使用すること
タイプOpenCVSharpラッパーDLL
グループNativeMethods_imgproc
対応環境
  • Windows 版 HSP
hs ファイルhsphelp\OpenCvSharpExtern.hs