本文整理汇总了Python中matplotlib.widgets.Cursor方法的典型用法代码示例。如果您正苦于以下问题:Python widgets.Cursor方法的具体用法?Python widgets.Cursor怎么用?Python widgets.Cursor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.widgets
的用法示例。
在下文中一共展示了widgets.Cursor方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _init_ui
# 需要导入模块: from matplotlib import widgets [as 别名]
# 或者: from matplotlib.widgets import Cursor [as 别名]
def _init_ui(self, data, aspect):
self._fig.canvas.mpl_connect('button_release_event', self.on_select_point)
self._fig.canvas.mpl_connect('scroll_event', self.on_zoom)
self._fig.canvas.mpl_connect('button_release_event', self.on_change_intensity)
self._fig.canvas.mpl_connect('motion_notify_event', self.on_change_intensity)
self._axes = self._fig.add_axes([0, 0, 1, 0.9], frameon=True)
self._axes.axis('off')
self.view = self._axes.imshow(
data,
cmap=self._params.cmap,
interpolation=self._params.interp,
vmin=self._params.vmin,
vmax=self._params.vmax,
alpha=self._params.alpha)
self._axes.set_aspect(aspect)
if self._crosshair:
self.cursor = Cursor(self._axes, useblit=True, color='r', linewidth=1)
self.points = self._axes.plot([], [], '.r', markersize=7)[0]
示例2: init_ui
# 需要导入模块: from matplotlib import widgets [as 别名]
# 或者: from matplotlib.widgets import Cursor [as 别名]
def init_ui(self):
plt.close(self.name)
self.fig = plt.figure(self.name)
self.ax = plt.gca()
self.ax.set_xlim([-1.5, 1.5])
self.ax.set_ylim([-1.5, 1.5])
self.ax.set_aspect('equal', 'datalim')
self.ax.grid(True)
self.fig.canvas.draw()
self.bg = self.fig.canvas.copy_from_bbox(self.ax.bbox)
self.cursor = Cursor(self.ax, useblit=True, color='red', linewidth=2)
self.init_artists()
# plt.ion()
plt.show(False)