OpenCV 4.11.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
 

详细描述

背景/前景分割 算法

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

成员函数文档

◆ apply()

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

◆ getBackgroundPrior()

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

◆ 获取决策阈值

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

◆ 获取默认学习率

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

◆ 获取最大特征数

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

◆ 获取最大值

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

◆ 获取最小值

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

◆ 获取帧数

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

◆ 获取量化级别

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

◆ 获取平滑半径

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

◆ 获取是否更新背景模型

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

◆ 设置背景先验

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

◆ 设置决策阈值

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

◆ 设置默认学习率

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

◆ 设置最大特征数

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

◆ 设置最大值

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

◆ 设置最小值

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

◆ 设置帧数

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

◆ 设置量化级别

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

◆ 设置平滑半径

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

◆ 设置是否更新背景模型

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

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