IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Image differences foreground model. More...
Public Member Functions | |
def | __init__ (self, fgCfg=None, processor=None, fgIm=None) |
Constructor for image differences foreground detector. More... | |
def | adapt (self) |
Update image differencing model based on recent measurement. More... | |
def | correct (self) |
Generate a correction to the model. More... | |
def | detect (self, I, M=None) |
Given a new measurement, apply the detection pipeline. 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 | info (self) |
Provide information about the current class implementation. More... | |
def | measure (self, I, M=None) |
Takes image and compares to existing model for detection. More... | |
def | predict (self) |
Predictive model of measurement. More... | |
def | process (self, I) |
Given a new measurement, apply entire FG modeling pipeline. More... | |
def | set (self) |
![]() | |
def | __init__ (self, appMod, fgIm) |
def | displayForeground_cv (self, ratio=None, window_name="Foreground") |
def | getBackground (self) |
def | getForeGround (self) |
def | getState (self) |
Return current/latest state. More... | |
![]() | |
def | __init__ (self, processor=None) |
![]() | |
def | measure (self, I) |
Generate detection measurements from image input. More... | |
![]() | |
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... | |
def | saveTo (self, fPtr) |
Empty method for saving internal information to HDF5 file. More... | |
Public Attributes | |
config | |
fgCnt | |
fgIm | |
improcessor | |
imsize | |
labelI | |
lastI | |
measI | |
![]() | |
fgIm | |
![]() | |
Ip | |
processor | |
![]() | |
x | |
Detection state. More... | |
Additional Inherited Members | |
![]() | |
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... | |
Image differences foreground model.
Core implementation of image difference-based foreground detection.
For configuration see CfgDifferences.
def __init__ | ( | self, | |
fgCfg = None , |
|||
processor = None , |
|||
fgIm = None |
|||
) |
Constructor for image differences foreground detector.
[in] | fgCfg | Detector configuration node. |
[in] | processor | Image processing to perform prior to/after processing. |
def adapt | ( | self | ) |
Update image differencing model based on recent measurement.
Most basic version just keeps latext image.
Reimplemented from Base.
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.
def detect | ( | self, | |
I, | |||
M = None |
|||
) |
Given a new measurement, apply the detection pipeline.
This only goes so far as to process the image and generate the detection, with correction. There is no adaptation. It should be run separately if desired.
Adaptation is important for differences if the objective is to see what is new in future frames, rather than new relative to first or initialized frame. Do not run this without other adjustments if the comparison image needs to update in time.
def displayState | ( | self | ) |
def displayState | ( | self | ) |
def emptyDebug | ( | self | ) |
Return empty debug state information.
Useful if contents needed beforehand.
Reimplemented from Base.
def emptyState | ( | self | ) |
def get | ( | self | ) |
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.
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.
def measure | ( | self, | |
I, | |||
M = None |
|||
) |
Takes image and compares to existing model for detection.
[in] | I | Image to process. |
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.
def process | ( | self, | |
I | |||
) |
Given a new measurement, apply entire FG modeling pipeline.
[in] | I | New image measurement. |
Reimplemented from Base.
def set | ( | self | ) |
config |
fgCnt |
fgIm |
improcessor |
imsize |
labelI |
lastI |
measI |