Class instance for extracting background that lies with the corner region of the RGB color cube, or the extremal regions of a color-space based on a planar cut.
More...
|
def | __init__ (self, processor=None, bgMod=None) |
| Constructor for corner color model target FG detector. More...
|
|
def | calc_margin (self, I) |
| Run classifier scoring computation and return value. More...
|
|
def | measure (self, I) |
| Apply the appearance detector to an image. More...
|
|
def | saveTo (self, fPtr) |
| Empty method for saving internal information to HDF5 file. More...
|
|
def | selectMaskRegionFromPoint (self, pt) |
| Select mask region from model class at given point. More...
|
|
def | selectMaskRegionFromPointAndMask (self, pt, mask) |
| Select mask region from model class at given point. More...
|
|
def | set_model (self, pCutModel) |
| Provide the background "classification" model to use for detection. More...
|
|
def | specify_model (self, n, d, tau, isVectorized=True) |
| Specify the model by providing normal, distance, and threshold parameter(s). More...
|
|
def | __init__ (self, processor=None) |
|
def | info (self) |
| Provide information about the current class implementation. 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 | build_model_blackBG (dist, tau, isVectorized=True) |
| Build a black color-based background model. More...
|
|
def | build_model_whiteBG (dist, tau, isVectorized=True) |
| Build a white color-based background model. More...
|
|
def | build_spherical_blackBG (dist, tau, isVectorized=True) |
| Build a black color-based background model. More...
|
|
def | buildFromCfg (theConfig, processor=None) |
| Build an inCorner instance from an algorithm configuration instance. More...
|
|
def | calibrate_from_data (bgI, fgI) |
|
def | calibrate_from_image (I, bgI) |
|
def | load (fileName) |
|
def | loadFrom (fptr) |
| Empty method for loading internal information from HDF5 file. More...
|
|
def | load (fileName, relpath=None) |
| Outer method for loading file given as a string (with path). More...
|
|
Class instance for extracting background that lies with the corner region of the RGB color cube, or the extremal regions of a color-space based on a planar cut.
The idea is similar to the fgmodel approach based on planar cuts but with the presumption that the background is what has the unique color profile. The presumption is that the background lies in a region of color-space that is extremal so that a planar surface separates it from the expected foreground colors.
def build_model_blackBG |
( |
|
dist, |
|
|
|
tau, |
|
|
|
isVectorized = True |
|
) |
| |
|
static |
Build a black color-based background model.
The assumption is that the background colors are in the black corner of the color cube and can be split from the foreground colors. In this case, the planar cut normal is known.
The good news about this kind of model is that it does not matter whether the image is RGB (typical) or BGR (OpenCV type). The corner region containing black is still around (0,0,0).
- Parameters
-
[in] | dist | Locate of separating boundary (should be negative). |
[in] | tau | The threshold / margin to apply. |
def build_model_whiteBG |
( |
|
dist, |
|
|
|
tau, |
|
|
|
isVectorized = True |
|
) |
| |
|
static |
Build a white color-based background model.
This is rare but provided just in case. The sign is flipped to cut off the more extremal white color values.
The good news about this kind of model is that it does not matter whether the image is RGB (typical) or BGR (OpenCV type). The corner region containing black is still around (0,0,0).
- Parameters
-
[in] | dist | Locate of separating boundary (should be positive). |
[in] | tau | The threshold / margin to apply. |
def build_spherical_blackBG |
( |
|
dist, |
|
|
|
tau, |
|
|
|
isVectorized = True |
|
) |
| |
|
static |
Build a black color-based background model.
The assumption is that the background colors are in the black corner of the color cube and can be split from the foreground colors using a spherical cutting surface. The center is set to be the origin.
The good news about this kind of model is that it does not matter whether the image is RGB (typical) or BGR (OpenCV type). The corner region containing black is still around (0,0,0).
- Parameters
-
[in] | dist | Locate of separating boundary. |
[in] | tau | The threshold / margin to apply. |
def specify_model |
( |
|
self, |
|
|
|
n, |
|
|
|
d, |
|
|
|
tau, |
|
|
|
isVectorized = True |
|
) |
| |
Specify the model by providing normal, distance, and threshold parameter(s).
The distance offset and threshold operate additively, this it may be the case the one is set to zero and the other is not. Alternatively, it may be more intuitive to have them be separate since dist defines the location of the seprating plane and tau defines the detection margin/slack associated to the separating plane. It all depends on what is more intuitive to the designer. All options permitted in this case.
- Parameters
-
[in] | n | Normal vector. |
[in] | d | Distance offset. |
[in] | tau | Threshold. |