Hi everyone, I recently started using pyqt with matplotlib (due to quality work) and wanted to know your suggestions on going to one of the two ways for creating a real time plot widget. I am talking about using threads or using multiprocessing module.
Previously, I have used python threads for Tkinter GUIs and that worked well but not the best. as using matplotlib is not thread safe and all I could do is separate plot process in different threads but not speed up the plotting for real time in the case of sampling every 10 ms. Now thatI am using PyQT, I am wondering whether I should use QThreads, Python Threads or multiprocessing module and wanted to know people's opinions about the same. I am sticking with matplotlib due to it's quality work, unlike pyqtgraph, but I am open to change to any other library which would be as good as matplotlib as well as is thread safe. After all, I just need to have 10 or so figures running paralley, with other parts of the GUI, with also communicating changes in data amongst them. Thanks in advance! -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyqtgraph/0a54a4b4-8a89-4818-89f4-49daeee0985fn%40googlegroups.com.
