IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
The most basic object or instance detector from image input. More...
Public Member Functions | |
def | __init__ (self, processor=None) |
![]() | |
def | info (self) |
Provide information about the current class implementation. More... | |
def | measure (self, I) |
Generate detection measurements from image input. More... | |
![]() | |
def | __init__ (self) |
Instantiate a detector Base activity class object. More... | |
def | adapt (self) |
Adapt any internal parameters based on activity state, signal, and any other historical information. 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 | process (self, signal) |
Process the new incoming signal on full detection pipeline. 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... | |
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... | |
![]() | |
Ip | |
processor | |
![]() | |
x | |
Detection state. More... | |
The most basic object or instance detector from image input.
Image data is considered to be single modality, which typically means grayscale, color (RGB), or depth only imagery. See bgImageRGBD for color+depth modality imagery. Really this class should be overloaded for most cases, but simple image-based detectors can be created from this class with the right pre/post processor. The trick is to have the improcessor output a binary image for downstream use.
def __init__ | ( | self, | |
processor = None |
|||
) |
Reimplemented from inImage.