OpenCV 4.10.0
开源计算机视觉
|
类 | |
类 | BackgroundSubtractorCNT |
基于计数的背景减除。 更多... | |
类 | BackgroundSubtractorGMG |
基于[106]中给出的算法的背景减除模块。 更多... | |
类 | BackgroundSubtractorGSOC |
不同但更好的算法的实现,称为 GSOC,因为它是在 GSOC 期间实现的,并且并非来自任何论文。 更多... | |
类 | BackgroundSubtractorLSBP |
使用局部SVD 二进制模式的背景减除。有关算法的更多详细信息,请参阅[115]。 更多... | |
类 | BackgroundSubtractorLSBPDesc |
用于计算 LSBP 描述符。 更多... | |
类 | BackgroundSubtractorMOG |
基于高斯混合模型的背景/前景分割算法。 更多... | |
类 | SyntheticSequenceGenerator |
用于测试背景减除算法的合成帧序列生成器。 更多... | |
枚举 | |
枚举 | LSBPCameraMotionCompensation { LSBP_CAMERA_MOTION_COMPENSATION_NONE = 0 , LSBP_CAMERA_MOTION_COMPENSATION_LK } |
函数 | |
Ptr< BackgroundSubtractorCNT > | createBackgroundSubtractorCNT (int minPixelStability=15, bool useHistory=true, int maxPixelStability=15 *60, bool isParallel=true) |
创建一个 CNT 背景减除器。 | |
Ptr< BackgroundSubtractorGMG > | createBackgroundSubtractorGMG (int initializationFrames=120, double decisionThreshold=0.8) |
创建一个 GMG 背景减除器。 | |
Ptr< BackgroundSubtractorGSOC > | createBackgroundSubtractorGSOC (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< BackgroundSubtractorLSBP > | createBackgroundSubtractorLSBP (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< BackgroundSubtractorMOG > | createBackgroundSubtractorMOG (int history=200, int nmixtures=5, double backgroundRatio=0.7, double noiseSigma=0) |
创建高斯混合模型背景减除器。 | |
Ptr< SyntheticSequenceGenerator > | createSyntheticSequenceGenerator (InputArray background, InputArray object, double amplitude=2.0, double wavelength=20.0, double wavespeed=0.2, double objspeed=6.0) |
创建一个SyntheticSequenceGenerator的实例。 | |