IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
Public Member Functions | Public Attributes | List of all members
bgmodelGMM Class Reference
Inheritance diagram for bgmodelGMM:
Inheritance graph
[legend]
Collaboration diagram for bgmodelGMM:
Collaboration graph
[legend]

Public Member Functions

def __init__ (self, K, **kwargs)
 
def adapt (self)
 
def compProbs (self)
 
def correct (self, fg)
 
def detectFG (self)
 
def get (self, fname)
 
def getForeground (self)
 
def getProbs (self)
 
def getstate (self)
 
def measure (self, I)
 
def process (self, img)
 Process the new incoming signal on full detection pipeline. More...
 
def set (self, fname, fval)
 
- Public Member Functions inherited from bgImage
def __init__ (self, processor=None)
 
- Public Member Functions inherited from inImage
def info (self)
 Provide information about the current class implementation. More...
 
- Public Member Functions inherited from Base
def __init__ (self)
 Instantiate a detector Base activity class object. More...
 
def correct (self)
 Reconcile prediction and measurement as fitting. More...
 
def detect (self, signal)
 Run detection only processing pipeline (no adaptation). More...
 
def emptyDebug (self)
 Return empty debug state information. More...
 
def emptyState (self)
 Return empty state. More...
 
def getDebug (self)
 Return current/latest debug state information. More...
 
def getState (self)
 Return current/latest state. More...
 
def predict (self)
 Predict next state from current state. More...
 
def save (self, fileName)
 Outer method for saving to a file given as a string. More...
 
def saveTo (self, fPtr)
 Empty method for saving internal information to HDF5 file. More...
 

Public Attributes

 doAdapt
 
 fgI
 
- Public Attributes inherited from inImage
 Ip
 
 processor
 
- Public Attributes inherited from Base
 x
 Detection state. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from Base
def load (fileName, relpath=None)
 Outer method for loading file given as a string (with path). More...
 
def loadFrom (fPtr)
 Empty method for loading internal information from HDF5 file. More...
 

Detailed Description

@ingroup    Detector_BGModel
@brief      Gaussian mixture background model.

Implements a background modeling foreground detector using a Gaussian 
mixture model.  This model involves two parts, one is an estimator,
and the other is a change detector.  The estimator is a static 
prediction observer on the mean and variance with fixed udpate gains.  
The change detector is threshold-based.  Estimate corrections rely
on the change detector.

Inputs:
  mu          - the means of the Gaussian models.
  sigma       - the variance of the Gaussian models.
  weights     - the weights of the Gaussian models.
  parms       - [optional] structure with parameters specified.

Fields of the parms structure:
  sigma       - Initial variance to use if sigma is empty.
  thresh      - Threshold for determining foreground.
  alpha       - Update rate for mean and variance.
  rho         - Update rate for weights.
  cnctd_thrsh - Connected component threshold size for false blob removal.
  se3           - structuring element for morphological operations. 
  improcessor - Image processor interface object for performing
                  pre-, mid-, and post-processing of signal.

@note
    A note on the improcessor.  If the basic version is used, then
    it performs pre-processing. If a triple version is used, then
    the mid-processor will perform operations on the detected part
    rather than the default operations.  The mid-processor can be used
    to test out different options for cleaning up the binary data.

@note Not implemented at all. Translation of ivaMatlib/bgmodelGMM

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  K,
**  kwargs 
)

Member Function Documentation

◆ adapt()

def adapt (   self)
Create new model

Reimplemented from Base.

◆ compProbs()

def compProbs (   self)

◆ correct()

def correct (   self,
  fg 
)
Update the existing model parameters

◆ detectFG()

def detectFG (   self)
Apply post-process to the fg mask?

◆ get()

def get (   self,
  fname 
)

◆ getForeground()

def getForeground (   self)
Get the current foreground estimate

◆ getProbs()

def getProbs (   self)
Get the current probability and the generating model

◆ getstate()

def getstate (   self)

◆ measure()

def measure (   self,
  I 
)
Apply the GMM and get the fgI mask

Reimplemented from inImage.

◆ process()

def process (   self,
  signal 
)

Process the new incoming signal on full detection pipeline.

Running the full detection pipeline includes adaptation.

Reimplemented from Base.

◆ set()

def set (   self,
  fname,
  fval 
)

Member Data Documentation

◆ doAdapt

doAdapt

◆ fgI

fgI

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