OpenCV  4.10.0
开源计算机视觉
正在加载...
正在搜索...
无匹配项
公共成员函数 | 所有成员列表
cv::cuda::BackgroundSubtractorGMG 类参考abstract

背景/前景分割 算法更多...

#include <opencv2/cudalegacy.hpp>

cv::cuda::BackgroundSubtractorGMG 的协作图

公共成员函数

virtual void apply (InputArray image, OutputArray fgmask, double learningRate, Stream &stream)=0
 
virtual double getBackgroundPrior () const =0
 
virtual double getDecisionThreshold () const =0
 
virtual double getDefaultLearningRate () const =0
 
virtual int getMaxFeatures () const =0
 
virtual double getMaxVal () const =0
 
virtual double getMinVal () const =0
 
virtual int getNumFrames () const =0
 
virtual int getQuantizationLevels () const =0
 
virtual int getSmoothingRadius () const =0
 
virtual bool getUpdateBackgroundModel () const =0
 
virtual void setBackgroundPrior (double bgprior)=0
 
virtual void setDecisionThreshold (double thresh)=0
 
virtual void setDefaultLearningRate (double lr)=0
 
virtual void setMaxFeatures (int maxFeatures)=0
 
virtual void setMaxVal (double val)=0
 
virtual void setMinVal (double val)=0
 
virtual void setNumFrames (int nframes)=0
 
virtual void setQuantizationLevels (int nlevels)=0
 
virtual void setSmoothingRadius (int radius)=0
 
virtual void setUpdateBackgroundModel (bool update)=0
 
- 从 cv::BackgroundSubtractor 继承的公共成员函数
virtual void apply (InputArray image, OutputArray fgmask, double learningRate=-1)=0
 计算前景掩码。
 
virtual void getBackgroundImage (OutputArray backgroundImage) const =0
 计算背景图像。
 
- 从 cv::Algorithm 继承的公共成员函数
 算法 ()
 
virtual ~Algorithm ()
 
virtual void clear ()
 清除算法状态。
 
virtual bool empty () const
 如果 算法 为空(例如,在最开始或读取失败后),则返回 true。
 
virtual String getDefaultName () const
 
virtual void read (const FileNode &fn)
 从文件存储中读取算法参数。
 
virtual void save (const String &filename) const
 
void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 
virtual void write (FileStorage &fs) const
 将算法参数存储在文件存储中。
 
void write (FileStorage &fs, const String &name) const
 

其他继承成员

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

详细描述

背景/前景分割 算法

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

成员函数文档

◆ apply()

virtual void cv::cuda::BackgroundSubtractorGMG::apply ( InputArray  image,
OutputArray  fgmask,
double  learningRate,
Stream stream 
)
纯虚

◆ getBackgroundPrior()

virtual double cv::cuda::BackgroundSubtractorGMG::getBackgroundPrior ( ) const
纯虚

◆ getDecisionThreshold()

virtual double cv::cuda::BackgroundSubtractorGMG::getDecisionThreshold ( ) const
纯虚

◆ getDefaultLearningRate()

virtual double cv::cuda::BackgroundSubtractorGMG::getDefaultLearningRate ( ) const
纯虚

◆ getMaxFeatures()

virtual int cv::cuda::BackgroundSubtractorGMG::getMaxFeatures ( ) const
纯虚

◆ getMaxVal()

virtual double cv::cuda::BackgroundSubtractorGMG::getMaxVal ( ) const
纯虚

◆ getMinVal()

virtual double cv::cuda::BackgroundSubtractorGMG::getMinVal ( ) const
纯虚

◆ getNumFrames()

virtual int cv::cuda::BackgroundSubtractorGMG::getNumFrames ( ) const
纯虚

◆ getQuantizationLevels()

virtual int cv::cuda::BackgroundSubtractorGMG::getQuantizationLevels ( ) const
纯虚

◆ getSmoothingRadius()

virtual int cv::cuda::BackgroundSubtractorGMG::getSmoothingRadius ( ) const
纯虚

◆ getUpdateBackgroundModel()

virtual bool cv::cuda::BackgroundSubtractorGMG::getUpdateBackgroundModel ( ) const
纯虚

◆ setBackgroundPrior()

virtual void cv::cuda::BackgroundSubtractorGMG::setBackgroundPrior ( double  bgprior)
纯虚

◆ setDecisionThreshold()

virtual void cv::cuda::BackgroundSubtractorGMG::setDecisionThreshold ( double  thresh)
纯虚

◆ setDefaultLearningRate()

virtual void cv::cuda::BackgroundSubtractorGMG::setDefaultLearningRate ( double  lr)
纯虚

◆ setMaxFeatures()

virtual void cv::cuda::BackgroundSubtractorGMG::setMaxFeatures ( int  maxFeatures)
纯虚

◆ setMaxVal()

virtual void cv::cuda::BackgroundSubtractorGMG::setMaxVal ( double  val)
纯虚

◆ setMinVal()

virtual void cv::cuda::BackgroundSubtractorGMG::setMinVal ( double  val)
纯虚

◆ setNumFrames()

virtual void cv::cuda::BackgroundSubtractorGMG::setNumFrames ( int  nframes)
纯虚

◆ setQuantizationLevels()

virtual void cv::cuda::BackgroundSubtractorGMG::setQuantizationLevels ( int  nlevels)
纯虚

◆ setSmoothingRadius()

virtual void cv::cuda::BackgroundSubtractorGMG::setSmoothingRadius ( int  radius)
纯虚

◆ setUpdateBackgroundModel()

virtual void cv::cuda::BackgroundSubtractorGMG::setUpdateBackgroundModel ( bool  update)
纯虚

该类的文档从以下文件生成