我已使用sync block
值在work
函数中实现input_items
。现在的问题是绘图机制对输入流来说不够快(input_items
的值不断变化)。
我尝试尽可能简化代码并添加注释。这是:
....
import matplotlib
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigCanvas
from matplotlib.backends.backend_wx import NavigationToolbar2Wx
from matplotlib.figure import Figure
temp = ''
class xyz(gr.sync_block):
def __init__(self,parent,title,order):
a = []
self.count = 1
gr.sync_block.__init__(self,
name="xyz",
in_sig=[numpy.float32,numpy.float32],
out_sig=None)
self.win = xyzPlot(parent) #I have a Top Block(wxFrame). I am just making it the parent of xyzPlot(wxPanel) here.
def work(self, input_items, output_items):
global temp
if (self.count == 1):
temp = input_items+list()
bool = not(np.allclose(temp,input_items))#bool will be true if the value of `input_items` changes.
.......
#the code that evaluates z1,z2 depending on the value of input_items
.......
if ( bool or self.count == 1 ):
#If bool is true or it is the first time then I am calling plot() which plots the graph.
self.win.plot(tf(self.z1,self.z3),None,True,True,True,True)
self.count = 0
temp = input_items+list()
return len(input_items[0])
class xyzPlot(wx.Panel):
def __init__(self, parent, dB=None, Hz=None, deg=None):
wx.Panel.__init__(self , parent , -1 ,size=(600,475))
self.fig = Figure()
self.axes = self.fig.add_subplot(111)
def plot(self, syslist, omega=None, dB=None, Hz=None, deg=None, Plot=True, *args , **kwargs):
self.axes.clear() #I clear the graph here so that new values can be plotted.
.....
self.axes.semilogx(omega,mag,*args,**kwargs)
self.canvas = FigCanvas(self, -1, self.fig)
self.canvas.draw()
正如你所看到的,我正在使用wxPython,但是每当我更快地更改input_items
的值时面板会冻结(如果我慢慢地改变它,它会工作正常)。有什么建议?我是新手。
答案 0 :(得分:1)
引用another answer我给了:
这很快就会出现多线程问题。要明确:什么 你试图这样做(从块线程调用绘图函数)是 有问题,通常不会工作。
问题在于您在复杂的多线程环境中工作:
你在这里做的是从GNU Radio块线程改变窗口中显示的内容。这是一件坏事,因为它改变了WX Gui线程上下文中的内容。这个可以工作,如果这些变化没有冲突,并且如果WX Gui线程在您更改它时没有访问此类数据(在某些时候,它必须访问它 - 否则,没有人会更新你的窗口。
这是所有类型的更新GUI的常见问题,而不仅仅是GNU Radio!
是否发生这种情况仅仅是一种概率:显示缓慢更新,您的冲突概率很低,但是当您经常更新时,它会接近1.
现有的可视化是用C ++编写的,并且非常注意以正确的方式做事 - 也就是说,让你的Gui工具包(WX在你的情况下,虽然我明确地推荐,并建议,远离那个)知道事情需要更新,然后为WX提供一个函数来更新自己的线程中的显示。