Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
algorithms.h 1.73 KiB
#pragma once

#include "FrameDifference.h"
#include "StaticFrameDifference.h"
#include "WeightedMovingMean.h"
#include "WeightedMovingVariance.h"
#include "MixtureOfGaussianV1.h" // Only for OpenCV == 2
#include "MixtureOfGaussianV2.h"
#include "AdaptiveBackgroundLearning.h"
#include "AdaptiveSelectiveBackgroundLearning.h"
#include "KNN.h" // Only for OpenCV >= 3
#include "GMG.h" // Only for OpenCV >= 2.4.3 and OpenCV < 3
#include "DPAdaptiveMedian.h" // Only for OpenCV 2 or 3
#include "DPGrimsonGMM.h" // Only for OpenCV 2 or 3
#include "DPZivkovicAGMM.h" // Only for OpenCV 2 or 3
#include "DPMean.h" // Only for OpenCV 2 or 3
#include "DPWrenGA.h" // Only for OpenCV 2 or 3
#include "DPPratiMediod.h" // Only for OpenCV 2 or 3
#include "DPEigenbackground.h" // Only for OpenCV 2 or 3
#include "DPTexture.h" // Only for OpenCV 2 or 3
#include "T2FGMM_UM.h" // Only for OpenCV 2 or 3
#include "T2FGMM_UV.h" // Only for OpenCV 2 or 3
#include "T2FMRF_UM.h" // Only for OpenCV 2 or 3
#include "T2FMRF_UV.h" // Only for OpenCV 2 or 3
#include "FuzzySugenoIntegral.h"
#include "FuzzyChoquetIntegral.h"
#include "LBSimpleGaussian.h"
#include "LBFuzzyGaussian.h"
#include "LBMixtureOfGaussians.h"
#include "LBAdaptiveSOM.h"
#include "LBFuzzyAdaptiveSOM.h"
#include "LBP_MRF.h" // Only for OpenCV 2 or OpenCV <= 3.4.7
#include "MultiLayer.h" // Only for OpenCV 2 or OpenCV <= 3.4.7
#include "PixelBasedAdaptiveSegmenter.h"
#include "VuMeter.h"
#include "KDE.h"
#include "IndependentMultimodal.h"
#include "MultiCue.h" // Only for OpenCV 2 or 3
#include "SigmaDelta.h"
#include "SuBSENSE.h"
#include "LOBSTER.h"
#include "PAWCS.h"
#include "TwoPoints.h"
#include "ViBe.h"
#include "CodeBook.h"

// #include "_template_/MyBGS.h"

using namespace bgslibrary::algorithms;