SeparateSignalStreams¶
Separate the signal streams from the non-signal streams.
An incoming data packet may carry multiple data streams, and for each stream a packet will have one chunk. Some of these chunks may be specifically flagged as 'signal' streams (multi-channel time series) while other may not be (e.g., feature vectors, marker streams, predictions). Some of the filter nodes will only work on signal streams and will not apply cleanly on non-signal streams, so if a packet that has mixed content shall be filtered with such a node, the signal streams must be separated out first. This node has two outputs: one that carries the signal streams, and another one that carries all other streams. After processing, the streams may be merged again using MergeStreams. Version 1.0.0
Ports/Properties¶
data¶
Data to process.
- verbose name: Data
- default value: None
- port type: DataPort
- value type: Packet (can be None)
- data direction: IN
signals¶
Data with only signal streams.
- verbose name: Signals
- default value: None
- port type: DataPort
- value type: Packet (can be None)
- data direction: OUT
nonsignals¶
Data with only non-signal streams.
- verbose name: Nonsignals
- default value: None
- port type: DataPort
- value type: Packet (can be None)
- data direction: OUT
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
- verbose name: Set Breakpoint (Debug Only)
- default value: False
- port type: BoolPort
- value type: bool (can be None)
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.
- verbose name: Metadata
- default value: {}
- port type: DictPort
- value type: dict (can be None)