2

I created a 3D plot using matplotlib as this:

fig = pylab.figure()
ax = Axes3D( fig )
surf = ax.plot_surface( X, Y, Z, cmap=cm.gray_r, linewidth=0, antialiased=True )
fig.canvas.set_window_title( "Distance" )
pylab.show()

It's fantastic: I see the surface in grays-cale and I can interact with it ( turn the surface, move plot, ... )

Now I need to put this plot in a PyQt form. I created a class inherit from QMainWindow doing this:

class ViewerForm(QMainWindow):
   def __init__(self, p_parent=None, p_data=None):
      QMainWindow.__init__( self, parent=p_parent )

      self.main_frame = QWidget( )
      self.figure = pyplot.figure()
      self.axis = Axes3D( self.figure )
      self.canvas = FigureCanvas( self.figure )
      self.canvas.setParent( self.main_frame )
      self.mpl_toolbar = NavigationToolbar( self.canvas, self.main_frame )

      self.X, self.Y = np.meshgrid( p_data[ "axis_x" ], p_data[ "axis_y" ] )
      self.Z = p_data[ "values_z" ]

      self.surface = self.axis.plot_surface( self.X, self.Y, self.Z, cmap=cm.gray, linewidth=0, antialiased=True )

      vbox = QVBoxLayout( )
      vbox.addWidget( self.canvas )
      vbox.addWidget( self.mpl_toolbar )
      self.main_frame.setLayout( vbox )

      self.setCentralWidget( self.main_frame )

When I show this form I can see the surface in gray-scale as the first plot but I can't interact with this: I can't move the surface clicking with mouse. Anyone can say me what I'm doing wrong or what I misunderstood?

4

2 回答 2

1

我认为您需要为鼠标点击注册一个回调函数,就像在这个食谱示例中一样:http ://www.scipy.org/Cookbook/Matplotlib/Interactive_Plotting

于 2011-10-26T15:49:27.973 回答
1

我以前有过这个,这让我很困惑。真雅对鼠标点击是正确的。

默认情况下,当轴被清除/重新绘制时,鼠标对绘图的控制是关闭的。我不知道为什么会这样,但是您需要再次启动鼠标交互:

self.surface = self.axis.plot_surface( self.X, self.Y, self.Z, cmap=cm.gray, linewidth=0, antialiased=True )
self.axis.mouse_init()
于 2011-10-31T10:58:48.713 回答