IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
bgGaussian Class Reference

Implements a single Gaussian background model. More...

Inheritance diagram for bgGaussian:
Inheritance graph
[legend]
Collaboration diagram for bgGaussian:
Collaboration graph
[legend]

Public Member Functions

def __init__ (self, bgCfg=None, processor=None, bgMod=None)
 Constructor for single Gaussian model background detector. More...
 
def adapt (self)
 Update the Gaussian model based on recent measurement. More...
 
def correct (self)
 Generate a correction to the model. More...
 
def displayState (self)
 
def displayState (self)
 
def emptyDebug (self)
 Return empty debug state information. More...
 
def emptyState (self)
 Return empty state. More...
 
def get (self)
 
def getDebug (self)
 Return current/latest debug state information. More...
 
def getState (self)
 Return current/latest state. More...
 
def info (self)
 Provide information about the current class implementation. More...
 
def measure (self, I)
 Takes image and generates the detection result. More...
 
def predict (self)
 Predictive model of measurement. More...
 
def process (self, I)
 Given a new measurement, apply entire BG modeling pipeline. More...
 
def saveCfG (self, outFile)
 Save current instance to a configuration file. More...
 
def saveTo (self, fPtr)
 Save Gaussian model information to given HDF5 pointer. More...
 
def set (self)
 
- Public Member Functions inherited from bgImage
def __init__ (self, processor=None)
 
- Public Member Functions inherited from Base
def __init__ (self)
 Instantiate a detector Base activity class object. More...
 
def detect (self, signal)
 Run detection only processing pipeline (no adaptation). More...
 
def save (self, fileName)
 Outer method for saving to a file given as a string. More...
 

Static Public Member Functions

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

Public Attributes

 bgI
 
 config
 
 errI
 
 improcessor
 
 imsize
 
 maxE
 
 measI
 
 mu
 
 nrmE
 
 sigma
 
 sqeI
 
- Public Attributes inherited from inImage
 Ip
 
 processor
 
- Public Attributes inherited from Base
 x
 Detection state. More...
 

Detailed Description

Implements a single Gaussian background model.

No doubt this implementation exists in some form within the OpenCV or BGS libraries, but getting a clean, simple interface from these libraries is actually not as easy as implementing from existing Matlab code. Plus, it permits some customization that the library implementations may not have (or that we don't understand how to do until better understanding the codebase or creating customized subclasses).

Inputs: mu - the means of the Gaussian models. sigma - the variance of the Gaussian models. weights - the weights of the Gaussian models. parms - [optional] configuration instance 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.

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.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  bgCfg = None,
  processor = None,
  bgMod = None 
)

Constructor for single Gaussian model background detector.

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.

Parameters
[in]bgModThe model or parameters for the detector.
[in]bgCfgThe model or parameters for the detector.

Reimplemented in onWorkspace.

Member Function Documentation

◆ adapt()

def adapt (   self)

Update the Gaussian model based on recent measurement.

In this case, the mean and the variance are updated. Depending on the run-time options, all means/variances will be updated or only those classified as background. The latter avoids adapting to foreground elements while still permitting slow change of the background model.

Usually, during the model estimation phase (assuming an empty scene with background elements only) adaptation of all pixels should occur. During deployment, if adaptation is to be performed, then it is usually best to not apply model updating to foreground elements, which are interpreted as fast change elements of the scene.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ buildAndCalibrateFromConfigRGBD()

def buildAndCalibrateFromConfigRGBD (   theConfig,
  theProcessor,
  theStream,
  incVis = False 
)
static

◆ correct()

def correct (   self)

Generate a correction to the model.

In standard schemes, there are no corrections to the estimates. The classification result is presumed to be correct. Corrections would imply some sort of temporal regularization. Spatial regularization is usually done through image-based mid-processing.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ displayState() [1/2]

def displayState (   self)

Reimplemented in onWorkspace, and onWorkspace.

◆ displayState() [2/2]

def displayState (   self)

Reimplemented in onWorkspace, and onWorkspace.

◆ emptyDebug()

def emptyDebug (   self)

Return empty debug state information.

Useful if contents needed beforehand.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ emptyState()

def emptyState (   self)

Return empty state.

Useful if contents needed beforehand.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ get()

def get (   self)

Reimplemented in onWorkspace.

◆ getDebug()

def getDebug (   self)

Return current/latest debug state information.

Usually the debug state consists of internally computed information that is useful for debugging purposes and can help to isolate problems within the implemented class or with downstream processing that may rely on assumptions built into this implemented class.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ getState()

def getState (   self)

Return current/latest state.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ info()

def info (   self)

Provide information about the current class implementation.

Exists for reproducibility purposes. Usually stores the factory information used to build the current class instance.

Reimplemented from inImage.

Reimplemented in onWorkspace.

◆ load()

def load (   fileName)
static

Reimplemented in onWorkspace.

◆ loadFrom()

def loadFrom (   fPtr)
static

Empty method for loading internal information from HDF5 file.

Load data from given HDF5 pointer. Assumes in root from current file pointer location.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ measure()

def measure (   self,
  I 
)

Takes image and generates the detection result.

Parameters
[in]IImage to process.

Reimplemented from inImage.

Reimplemented in onWorkspace.

◆ predict()

def predict (   self)

Predictive model of measurement.

In standard schemes, the expectation is that the background model is static (a constant state model). Thus, the default prediction is no update.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ process()

def process (   self,
  I 
)

Given a new measurement, apply entire BG modeling pipeline.

Parameters
[in]INew image measurement.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ saveCfG()

def saveCfG (   self,
  outFile 
)

Save current instance to a configuration file.

◆ saveTo()

def saveTo (   self,
  fPtr 
)

Save Gaussian model information to given HDF5 pointer.

Creates a custom group at the pointer root with the Gaussian background model information.

Parameters
[in]fPtrFile pointer.

Reimplemented from Base.

Reimplemented in onWorkspace.

◆ set()

def set (   self)

Reimplemented in onWorkspace.

Member Data Documentation

◆ bgI

bgI

◆ config

config

◆ errI

errI

◆ improcessor

improcessor

◆ imsize

imsize

◆ maxE

maxE

◆ measI

measI

◆ mu

mu

◆ nrmE

nrmE

◆ sigma

sigma

◆ sqeI

sqeI

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