EstervQrCode 2.0.0
Library for qr code manipulation
Loading...
Searching...
No Matches
Public Member Functions | List of all members
cv::BackgroundSubtractorKNN Class Referenceabstract

K-nearest neighbours - based Background/Foreground Segmentation Algorithm. More...

#include <background_segm.hpp>

Inheritance diagram for cv::BackgroundSubtractorKNN:
cv::BackgroundSubtractor cv::Algorithm

Public Member Functions

virtual CV_WRAP int getHistory () const =0
 Returns the number of last frames that affect the background model.
 
virtual CV_WRAP void setHistory (int history)=0
 Sets the number of last frames that affect the background model.
 
virtual CV_WRAP int getNSamples () const =0
 Returns the number of data samples in the background model.
 
virtual CV_WRAP void setNSamples (int _nN)=0
 Sets the number of data samples in the background model.
 
virtual CV_WRAP double getDist2Threshold () const =0
 Returns the threshold on the squared distance between the pixel and the sample.
 
virtual CV_WRAP void setDist2Threshold (double _dist2Threshold)=0
 Sets the threshold on the squared distance.
 
virtual CV_WRAP int getkNNSamples () const =0
 Returns the number of neighbours, the k in the kNN.
 
virtual CV_WRAP void setkNNSamples (int _nkNN)=0
 Sets the k in the kNN. How many nearest neighbours need to match.
 
virtual CV_WRAP bool getDetectShadows () const =0
 Returns the shadow detection flag.
 
virtual CV_WRAP void setDetectShadows (bool detectShadows)=0
 Enables or disables shadow detection.
 
virtual CV_WRAP int getShadowValue () const =0
 Returns the shadow value.
 
virtual CV_WRAP void setShadowValue (int value)=0
 Sets the shadow value.
 
virtual CV_WRAP double getShadowThreshold () const =0
 Returns the shadow threshold.
 
virtual CV_WRAP void setShadowThreshold (double threshold)=0
 Sets the shadow threshold.
 
- Public Member Functions inherited from cv::BackgroundSubtractor
virtual CV_WRAP void apply (InputArray image, OutputArray fgmask, double learningRate=-1)=0
 Computes a foreground mask.
 
virtual CV_WRAP void getBackgroundImage (OutputArray backgroundImage) const =0
 Computes a background image.
 
- Public Member Functions inherited from cv::Algorithm
 Algorithm ()
 
virtual ~Algorithm ()
 
virtual CV_WRAP void clear ()
 Clears the algorithm state.
 
virtual CV_WRAP void write (FileStorage &fs) const
 Stores algorithm parameters in a file storage.
 
CV_WRAP void write (FileStorage &fs, const String &name) const
 
void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 
virtual CV_WRAP void read (const FileNode &fn)
 Reads algorithm parameters from a file storage.
 
virtual CV_WRAP bool empty () const
 Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read.
 
virtual CV_WRAP void save (const String &filename) const
 
virtual CV_WRAP String getDefaultName () const
 

Additional Inherited Members

- Static Public Member Functions inherited from cv::Algorithm
template<typename _Tp >
static Ptr< _Tp > read (const FileNode &fn)
 Reads algorithm from the file node.
 
template<typename _Tp >
static Ptr< _Tp > load (const String &filename, const String &objname=String())
 Loads algorithm from the file.
 
template<typename _Tp >
static Ptr< _Tp > loadFromString (const String &strModel, const String &objname=String())
 Loads algorithm from a String.
 
- Protected Member Functions inherited from cv::Algorithm
void writeFormat (FileStorage &fs) const
 

Detailed Description

K-nearest neighbours - based Background/Foreground Segmentation Algorithm.

The class implements the K-nearest neighbours background subtraction described in [Zivkovic2006] . Very efficient if number of foreground pixels is low.

Member Function Documentation

◆ getDetectShadows()

virtual CV_WRAP bool cv::BackgroundSubtractorKNN::getDetectShadows ( ) const
pure virtual

Returns the shadow detection flag.

If true, the algorithm detects shadows and marks them. See createBackgroundSubtractorKNN for details.

◆ getDist2Threshold()

virtual CV_WRAP double cv::BackgroundSubtractorKNN::getDist2Threshold ( ) const
pure virtual

Returns the threshold on the squared distance between the pixel and the sample.

The threshold on the squared distance between the pixel and the sample to decide whether a pixel is close to a data sample.

◆ getHistory()

virtual CV_WRAP int cv::BackgroundSubtractorKNN::getHistory ( ) const
pure virtual

Returns the number of last frames that affect the background model.

◆ getkNNSamples()

virtual CV_WRAP int cv::BackgroundSubtractorKNN::getkNNSamples ( ) const
pure virtual

Returns the number of neighbours, the k in the kNN.

K is the number of samples that need to be within dist2Threshold in order to decide that that pixel is matching the kNN background model.

◆ getNSamples()

virtual CV_WRAP int cv::BackgroundSubtractorKNN::getNSamples ( ) const
pure virtual

Returns the number of data samples in the background model.

◆ getShadowThreshold()

virtual CV_WRAP double cv::BackgroundSubtractorKNN::getShadowThreshold ( ) const
pure virtual

Returns the shadow threshold.

A shadow is detected if pixel is a darker version of the background. The shadow threshold (Tau in the paper) is a threshold defining how much darker the shadow can be. Tau= 0.5 means that if a pixel is more than twice darker then it is not shadow. See Prati, Mikic, Trivedi and Cucchiara, Detecting Moving Shadows...*, IEEE PAMI,2003.

◆ getShadowValue()

virtual CV_WRAP int cv::BackgroundSubtractorKNN::getShadowValue ( ) const
pure virtual

Returns the shadow value.

Shadow value is the value used to mark shadows in the foreground mask. Default value is 127. Value 0 in the mask always means background, 255 means foreground.

◆ setDetectShadows()

virtual CV_WRAP void cv::BackgroundSubtractorKNN::setDetectShadows ( bool  detectShadows)
pure virtual

Enables or disables shadow detection.

◆ setDist2Threshold()

virtual CV_WRAP void cv::BackgroundSubtractorKNN::setDist2Threshold ( double  _dist2Threshold)
pure virtual

Sets the threshold on the squared distance.

◆ setHistory()

virtual CV_WRAP void cv::BackgroundSubtractorKNN::setHistory ( int  history)
pure virtual

Sets the number of last frames that affect the background model.

◆ setkNNSamples()

virtual CV_WRAP void cv::BackgroundSubtractorKNN::setkNNSamples ( int  _nkNN)
pure virtual

Sets the k in the kNN. How many nearest neighbours need to match.

◆ setNSamples()

virtual CV_WRAP void cv::BackgroundSubtractorKNN::setNSamples ( int  _nN)
pure virtual

Sets the number of data samples in the background model.

The model needs to be reinitalized to reserve memory.

◆ setShadowThreshold()

virtual CV_WRAP void cv::BackgroundSubtractorKNN::setShadowThreshold ( double  threshold)
pure virtual

Sets the shadow threshold.

◆ setShadowValue()

virtual CV_WRAP void cv::BackgroundSubtractorKNN::setShadowValue ( int  value)
pure virtual

Sets the shadow value.


The documentation for this class was generated from the following file: