--
You received this message because you are subscribed to the Google Groups "pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyqtgraph+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/4c4d91e6-3339-4b2b-8b65-08af048acf40%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
4. My personal long-term plan is to continue with pyqtgraph and eventually begin incorporating components from vispy to allow pyqtgraph to make use of the GPU. I would love to hear thoughts about which use cases (current or future) are _not_ being met. Collectively, we are the ones who get to decide where (and whether) these projects go in the future.
Hi,
Thank you, John, for asking about the current state and future of PyQtGraph. I was asking myself the same question today and found this thread :)
On Friday, February 27, 2015 at 5:04:11 PM UTC+1, Luke Campagnola wrote:4. My personal long-term plan is to continue with pyqtgraph and eventually begin incorporating components from vispy to allow pyqtgraph to make use of the GPU. I would love to hear thoughts about which use cases (current or future) are _not_ being met. Collectively, we are the ones who get to decide where (and whether) these projects go in the future.I have used PyQtGraph in a university course on interaction techniques last year and plan to do this again this year. We primarily used the flowchart/node feature for building processing pipelines for sensor data: e.g., a WiimoteNode [1] receives accelerometer values from a Wiimote, these are processed in various subsequent nodes (buffering, moving average, FFT - to be implemented by the students) and then fed to a machine learning classifier.I like that the nodes require students to implement modular filters and enable some simple visual programming.However, debugging flowcharts could be significantly improved. It would be great to get warnings about incompatible data types between output and input terminals.
Also, it took me some digging through the source code to find out how to implement nodes that insert data into the flowchart (i.e. have multiple data sources in a flowchart that may also be added on the fly).Luke, would extending the flowchart feature fit within your vision for PyQtGraph or would you prefer to keep it as simple as possible?