blob

Models an instance of detected motion or a detected face.

 
Classes
       
Blob

 
class Blob
    Stores the starting (leftX, topY) coordinates, width, and height of
either an area of motion or a face. Also stores the region of interest that
this blob occurred in.
 
leftX: the starting x of the blob.
topY: the starting y of the blob.
width: the width of the blob.
height: the height of the blob.
roi: the region of interest this blob belongs to.
blob_type: the blob_type of event this blob represents (FACE or SHELL)
 
  Methods defined here:
__init__(self, leftX, topY, width, height, roi, blob_type)
__repr__ = __str__(self)
__str__(self)

Data and other attributes defined here:
FACE = 'Face'
SHELL = 'Shell'
blob_type = None
height = None
leftX = None
roi = None
topY = None
width = None