OpenCV 4.12.0
開源計算機視覺
載入中...
搜尋中...
無匹配項
bgsegm.hpp 檔案參考
#include "opencv2/video.hpp"
bgsegm.hpp 的包含依賴關係圖

類  cv::bgsegm::BackgroundSubtractorCNT
 基於計數的背景消減。 更多...
 
類  cv::bgsegm::BackgroundSubtractorGMG
 基於 [107] 中給出的演算法的背景消減模組。 更多...
 
類  cv::bgsegm::BackgroundSubtractorGSOC
 不同的但更好的演算法的實現,該演算法被稱為 GSOC,因為它是在 GSOC 期間實現的,並非源於任何論文。 更多...
 
類  cv::bgsegm::BackgroundSubtractorLSBP
 使用區域性 SVD 二進位制模式的背景消減。有關該演算法的更多詳細資訊,請參見 [117]更多...
 
類  cv::bgsegm::BackgroundSubtractorLSBPDesc
 這是用於計算 LSBP 描述符的。 更多...
 
類  cv::bgsegm::BackgroundSubtractorMOG
 基於高斯混合的背景/前景分割 演算法更多...
 
類  cv::bgsegm::SyntheticSequenceGenerator
 用於測試背景消減演算法的合成幀序列生成器。 更多...
 

名稱空間

名稱空間  cv
 
名稱空間  cv::bgsegm
 

列舉

列舉  cv::bgsegm::LSBPCameraMotionCompensation {
  cv::bgsegm::LSBP_CAMERA_MOTION_COMPENSATION_NONE = 0 ,
  cv::bgsegm::LSBP_CAMERA_MOTION_COMPENSATION_LK
}
 

函式

Ptr< BackgroundSubtractorCNTcv::bgsegm::createBackgroundSubtractorCNT (int minPixelStability=15, bool useHistory=true, int maxPixelStability=15 *60, bool isParallel=true)
 建立一個 CNT 背景減除器。
 
Ptr< BackgroundSubtractorGMGcv::bgsegm::createBackgroundSubtractorGMG (int initializationFrames=120, double decisionThreshold=0.8)
 建立一個 GMG 背景減除器。
 
Ptr< BackgroundSubtractorGSOCcv::bgsegm::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< BackgroundSubtractorLSBPcv::bgsegm::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< BackgroundSubtractorMOGcv::bgsegm::createBackgroundSubtractorMOG (int history=200, int nmixtures=5, double backgroundRatio=0.7, double noiseSigma=0)
 建立高斯混合背景減除器。
 
Ptr< SyntheticSequenceGeneratorcv::bgsegm::createSyntheticSequenceGenerator (InputArray background, InputArray object, double amplitude=2.0, double wavelength=20.0, double wavespeed=0.2, double objspeed=6.0)
 建立 SyntheticSequenceGenerator 的例項。