|
IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
What is FromSketch?? More...


Public Member Functions | |
| def | __init__ (self, processor=None) |
| def | measure (self, I, M=None) |
| Process the passed imagery to get the mask. More... | |
| def | predict (self) |
| Predict next state from current state. More... | |
| def | process (self, I, M=None) |
| Process the passed imagery. More... | |
Public Member Functions inherited from inImage | |
| def | info (self) |
| Provide information about the current class implementation. More... | |
| def | measure (self, I) |
| Generate detection measurements from image input. More... | |
Public Member Functions inherited from Base | |
| 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 | 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... | |
Public Attributes | |
| Ip | |
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... | |
What is FromSketch??
| def __init__ | ( | self, | |
processor = None |
|||
| ) |
Reimplemented from inImage.
| def measure | ( | self, | |
| I, | |||
M = None |
|||
| ) |
Process the passed imagery to get the mask.
Args: I: RGB image. M: Mask image.
| def predict | ( | self | ) |
Predict next state from current state.
If transition model known, generate state prediction. Else it is most likely a static transition model, which does nothing / keeps prior state. The base method employs a static state assumption.
Reimplemented from Base.
| def process | ( | self, | |
| I, | |||
M = None |
|||
| ) |
Process the passed imagery.
Args: I: RGB image. M: Mask image.
| Ip |