OpenCV 4.11.0
开源计算机视觉库
加载中…
搜索中…
无匹配项
cv::cuda::BackgroundSubtractorMOG 类参考抽象类

基于高斯混合模型的背景/前景分割算法更多…

#include <opencv2/cudabgsegm.hpp>

cv::cuda::BackgroundSubtractorMOG 的协作图

公有成员函数

虚函数 void apply (InputArray image, OutputArray fgmask, double learningRate, Stream &stream)=0
 
void getBackgroundImage (GpuMat &backgroundImage, Stream &stream)
 
虚函数 void getBackgroundImage (OutputArray backgroundImage, Stream &stream) const =0
 
虚函数 double getBackgroundRatio () const =0
 
虚函数 int getHistory () const =0
 
虚函数 int getNMixtures () const =0
 
虚函数 double getNoiseSigma () const =0
 
虚函数 void setBackgroundRatio (double backgroundRatio)=0
 
虚函数 void setHistory (int nframes)=0
 
虚函数 void setNMixtures (int nmix)=0
 
虚函数 void setNoiseSigma (double noiseSigma)=0
 
- 继承自 cv::BackgroundSubtractor 的公有成员函数
虚函数 void apply (InputArray image, OutputArray fgmask, double learningRate=-1)=0
 计算前景掩码。
 
虚函数 void getBackgroundImage (OutputArray backgroundImage) const =0
 计算背景图像。
 
- 继承自 cv::Algorithm 的公有成员函数
 Algorithm ()
 
虚函数 ~Algorithm ()
 
虚函数 void clear ()
 清除算法状态。
 
虚函数 bool empty () const
 如果Algorithm为空(例如,在开始时或读取失败后),则返回 true。
 
虚函数 String getDefaultName () const
 
虚函数 void read (const FileNode &fn)
 从文件存储中读取算法参数。
 
虚函数 void save (const String &filename) const
 
void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 
虚函数 void write (FileStorage &fs) const
 将算法参数存储到文件存储中。
 
void write (FileStorage &fs, const String &name) const
 

其他继承成员

- 继承自 cv::Algorithm 的静态公有成员函数
模板<typename _Tp >
静态 Ptr< _Tpload (const String &filename, const String &objname=String())
 从文件中加载算法。
 
模板<typename _Tp >
静态 Ptr< _TploadFromString (const String &strModel, const String &objname=String())
 从字符串加载算法。
 
模板<typename _Tp >
静态 Ptr< _Tpread (const FileNode &fn)
 从文件节点读取算法。
 
- 继承自 cv::Algorithm 的保护成员函数
void writeFormat (FileStorage &fs) const
 

详细描述

基于高斯混合模型的背景/前景分割算法

该类通过构建和维护背景模型来区分前景和背景像素。任何不符合此模型的像素都被认为是前景。该类实现了文献[138]中描述的算法。

另请参见
BackgroundSubtractorMOG
注意
  • 基于高斯混合模型的背景/前景分割示例可在 opencv_source_code/samples/gpu/bgfg_segm.cpp 中找到。

成员函数文档

◆ apply()

虚函数 void cv::cuda::BackgroundSubtractorMOG::apply ( InputArray image,
OutputArray fgmask,
double learningRate,
Stream & stream )
纯虚函数

◆ getBackgroundImage() [1/2]

void cv::cuda::BackgroundSubtractorMOG::getBackgroundImage ( GpuMat & backgroundImage,
Stream & stream )
内联函数

◆ getBackgroundImage() [2/2]

虚函数 void cv::cuda::BackgroundSubtractorMOG::getBackgroundImage ( OutputArray backgroundImage,
Stream & stream ) const
纯虚函数

◆ getBackgroundRatio()

虚函数 double cv::cuda::BackgroundSubtractorMOG::getBackgroundRatio ( ) 常量
纯虚函数

◆ getHistory()

virtual int cv::cuda::BackgroundSubtractorMOG::getHistory ( ) 常量
纯虚函数

◆ getNMixtures()

virtual int cv::cuda::BackgroundSubtractorMOG::getNMixtures ( ) 常量
纯虚函数

◆ getNoiseSigma()

virtual double cv::cuda::BackgroundSubtractorMOG::getNoiseSigma ( ) 常量
纯虚函数

◆ setBackgroundRatio()

virtual void cv::cuda::BackgroundSubtractorMOG::setBackgroundRatio ( double 背景比率)
纯虚函数

◆ setHistory()

virtual void cv::cuda::BackgroundSubtractorMOG::setHistory ( 整型 帧数)
纯虚函数

◆ setNMixtures()

virtual void cv::cuda::BackgroundSubtractorMOG::setNMixtures ( 整型 混合数)
纯虚函数

◆ setNoiseSigma()

virtual void cv::cuda::BackgroundSubtractorMOG::setNoiseSigma ( double 噪声标准差)
纯虚函数

此类的文档由以下文件生成: