Using Message Sinks and piping data to PythonDon't use vector sinksSeriously, that's not what they were made for. Don't use them. How to do it: message sinks and sourcesMessages provide a method to pass data from the Python domain into the flow graph, or C++ domain, and vice versa. This is useful if you have a flow graph that does some heavy lifting signal processing, and have some simple Python-based post-processing. Some of the graphical sinks use this feature; the data is generated in C++ and then passed to Python which in turn runs the display code. This figure illustrates how it works. A message sink is a sink in a flow graph sense. Any data piped into the message sink is then packed into a message. This message can be fetched from outside the flow graph. Conversely, a message source may be used to inject data into a running flow graph, however it is not easily possible to specify the timing.注:Using Message Sinks and piping data to Python(原文出处,翻译整理仅供参考!) |