cv_manager

Connects to the server to receive and parse information about events.

 
Classes
       
CVManager

 
class CVManager
    Sets up a non-blocking connection to the server via sockets. New events can
be retrieved via the getNewEvents() method.
 
  Methods defined here:
__init__(self, host='localhost', port=5204)
destroy(self)
Close the connection to the server.
@return None
getNewEvents(self)
@return a list of CVEventData objects containing information about faces and
    motion (aka shells) detected by the server. The list will be in order the
    events arrived. The list will be empty if there was nothing to detect.
    None will be returned if the server sent no data, or if an error occurred.