GUI applications in python for fast update of on-screen images

前端 未结 1 546
青春惊慌失措
青春惊慌失措 2021-01-22 17:52

I apologize in advance for my noob-ness; I\'m just getting into programming.

Can you set me down the right path for a GUI framework? Looking at this list of GUI framewor

相关标签:
1条回答
  • 2021-01-22 18:08

    Tkinter GUI for python

    To have a fast idea, how matplotlib may get directly into a Tkinter based GUI, included a fully operational Model-Visual-Controller tripod co-integrated with Tkinter real-time control-loop, kindly go through this recipe: https://stackoverflow.com/a/25769600/3666197 enter image description here Both <<Important>> & <<Secondary>> parameters met.

    Fast updates

    Numpy is a lingua franca, so telling that it is a must is worthless.

    Good Real-Time UI / Event-handling design is cardinal. Poor MVC/control-loop may kill otherwise smart system ( as seen from recent updates of some professionally distributed trading system, where UI-responsiveness fell by far under an acceptable UI-interaction latency and sometimes even freezes UI-interactions for several tens of seconds

    There are techniques to construct matplotlib objects ( having pre-baked data-structures ), that accelerate any real-time updates to get propagated faster onto GUI-Visual-layer RealTime GUI

    0 讨论(0)
提交回复
热议问题