OpenCV 4.11.0
开源计算机视觉
加载中…
搜索中…
无匹配项
cv::bgsegm 命名空间参考

类 BackgroundSubtractorCNT
 基于计数的背景减法。 更多…
 
类 BackgroundSubtractorGMG
 基于文献[105]中算法的背景减法模块。 更多…
 
类 BackgroundSubtractorGSOC
 不同但更好的算法的实现,称为GSOC,因为它是在GSOC期间实现的,并且并非源于任何论文。 更多…
 
类 BackgroundSubtractorLSBP
 使用局部SVD二值模式的背景减法。有关算法的更多详细信息,请参见[114]更多…
 
类 BackgroundSubtractorLSBPDesc
 用于计算LSBP描述符。 更多…
 
类 BackgroundSubtractorMOG
 基于高斯混合的背景/前景分割算法更多…
 
类 SyntheticSequenceGenerator
 用于测试背景减法算法的合成帧序列生成器。 更多…
 

枚举

枚举 LSBPCameraMotionCompensation {
  LSBP_CAMERA_MOTION_COMPENSATION_NONE = 0 ,
  LSBP_CAMERA_MOTION_COMPENSATION_LK
}
 

函数

Ptr< BackgroundSubtractorCNTcreateBackgroundSubtractorCNT (int minPixelStability=15, bool useHistory=true, int maxPixelStability=15 *60, bool isParallel=true)
 创建一个CNT背景减法器。
 
Ptr< BackgroundSubtractorGMGcreateBackgroundSubtractorGMG (int initializationFrames=120, double decisionThreshold=0.8)
 创建一个GMG背景减法器。
 
Ptr< BackgroundSubtractorGSOCcreateBackgroundSubtractorGSOC (int mc=LSBP_CAMERA_MOTION_COMPENSATION_NONE, int nSamples=20, float replaceRate=0.003f, float propagationRate=0.01f, int hitsThreshold=32, float alpha=0.01f, float beta=0.0022f, float blinkingSupressionDecay=0.1f, float blinkingSupressionMultiplier=0.1f, float noiseRemovalThresholdFacBG=0.0004f, float noiseRemovalThresholdFacFG=0.0008f)
 创建一个BackgroundSubtractorGSOC算法的实例。
 
Ptr< BackgroundSubtractorLSBPcreateBackgroundSubtractorLSBP (int mc=LSBP_CAMERA_MOTION_COMPENSATION_NONE, int nSamples=20, int LSBPRadius=16, float Tlower=2.0f, float Tupper=32.0f, float Tinc=1.0f, float Tdec=0.05f, float Rscale=10.0f, float Rincdec=0.005f, float noiseRemovalThresholdFacBG=0.0004f, float noiseRemovalThresholdFacFG=0.0008f, int LSBPthreshold=8, int minCount=2)
 创建一个BackgroundSubtractorLSBP算法的实例。
 
Ptr< BackgroundSubtractorMOGcreateBackgroundSubtractorMOG (int history=200, int nmixtures=5, double backgroundRatio=0.7, double noiseSigma=0)
 创建高斯混合背景减法器。
 
Ptr< SyntheticSequenceGeneratorcreateSyntheticSequenceGenerator (InputArray background, InputArray object, double amplitude=2.0, double wavelength=20.0, double wavespeed=0.2, double objspeed=6.0)
 创建一个SyntheticSequenceGenerator实例。