Onyx logo

Previous topic

onyx.signalprocessing.cepstrum – Cepstral calculation.

Next topic

onyx.signalprocessing.endpoint – Support for tagging utterance frames as speech/background. Currently

This Page

onyx.signalprocessing.delta – Delta calculations.

class onyx.signalprocessing.delta.Delta(arg)

Bases: onyx.signalprocessing.sigprocbase

Single delta.

>>> type(Delta(None))
<class '__main__.Delta'>
check_serial_version(version)
configure(**kwargs)
get_serial_factory_args()
get_serial_factory_name()
get_serial_module_name()
get_serial_version()
process_one(item)
process_some(items)

Process each of the elements of ‘items’. Return a list of results.

send_many(inputs)
serialize()

Return a serialized version of this object as a tuple of strings. The form of the tuple is: (module_name, factory_name, version, arg0, arg1, ...) where the version and the args will be passed to the factory to construct the object.

class onyx.signalprocessing.delta.DeltaDelta(arg)

Bases: onyx.signalprocessing.sigprocbase

Double delta.

>>> type(DeltaDelta(None))
<class '__main__.DeltaDelta'>
check_serial_version(version)
configure(**kwargs)
get_serial_factory_args()
get_serial_factory_name()
get_serial_module_name()
get_serial_version()
process_one(item)
process_some(items)

Process each of the elements of ‘items’. Return a list of results.

send_many(inputs)
serialize()

Return a serialized version of this object as a tuple of strings. The form of the tuple is: (module_name, factory_name, version, arg0, arg1, ...) where the version and the args will be passed to the factory to construct the object.