bionet.ted.rt.SignalProcessor

class bionet.ted.rt.SignalProcessor(*args)

Abstract signal processor.

This class describes a signal processor that retrieves blocks of signal data from a source, applies some processing algorithm to it, and saves the processed blocks.

Notes

The process() method must be extended in functional subclasses of this class in order.

Methods

process(get, put) Process data obtained from get() and write it using put().
__init__(*args)

Initialize a signal processor with the specified parameters.

Methods

__init__(*args) Initialize a signal processor with the specified parameters.
process(get, put) Process data obtained in blocks from the function get() and write them out using the function put().