|
Marsyas
0.6.0-alpha
|
Collects and outputs N past input samples. More...
#include <Memory.h>
Inherits MarSystem.
Public Member Functions | |
| MarSystem * | clone () const |
| Memory (std::string name) | |
| Memory (const Memory &a) | |
| void | myProcess (realvec &in, realvec &out) |
| Processes data. | |
| ~Memory () | |
Collects and outputs N past input samples.
Memory is essentially a circular buffer that collects and outputs past input samples. It is used to compute "texture" features (or dynamic features) - which are stastics of short-term features (typically around 10-20 milliseconds) over a larger window - typically around 1 second.
Controls:
| Memory | ( | std::string | name | ) |
Definition at line 30 of file Memory.cpp.
Definition at line 41 of file Memory.cpp.
| ~Memory | ( | ) |
Definition at line 37 of file Memory.cpp.
Implements MarSystem.
Definition at line 50 of file Memory.cpp.
Processes data.
| in | Input data to read. |
| out | Output data to write. |
Implement this method in subclass to define specific data processing.
Implements MarSystem.
Definition at line 108 of file Memory.cpp.
1.7.6.1