实际上这应该是一个非常简单的问题,但我正在经历chaco和特征的相当陡峭的学习曲线......
我目前正在编写一个使用chaco和traits绘制医学图像的应用程序,我只想从图像中选择一个像素位置,并使用此像素位置对图像堆栈进行评估。所以我开始编写自己的Chaco工具,对图像图上的鼠标点击作出反应。 这到目前为止工作正常。当我点击图像图时,我可以在工具中看到鼠标坐标(自定义PixelPickerTool)。但是,由于我想在工具外部使用此坐标值,我的问题是:当事件被触发时,如何将坐标移交给另一个对象或变量OUTSIDE of the Tool。
为了说明我想做什么,我附上了我正在写的两个类的主要结构:
class PixelPickerTool(BaseTool):
'''Pick a Pixel coordinate from an image'''
ImageCoordinates = [0,0]
def normal_left_down(self, event):
print "Mouse:", event.x, event.y,
click_x, click_y = self.component.map_data((event.x, event.y))
img_x = int(click_x)
img_y = int(click_y)
coord = [img_x, img_y]
if ( (img_x > self.ImageSizeX) or (img_x < 0) ):
coord = [0,0]
if ( (img_y > self.ImageSizeY) or (img_y < 0) ):
coord = [0,0]
print coord
# this print gives out the coordinates of the pixel that was clicked - this works fine...
# so inside the picker too I can get the coordinates
# but how can I use the coordinates outside this tool ?
class ImagePlot(HasTraits):
# create simple chaco plot of 2D numpy image array, with a simple interactor (PixelPickerTool)
plot = Instance(Plot)
string = String("hallo")
picker = Instance(PixelPickerTool)
traits_view = View(
Item('plot', editor=ComponentEditor(), show_label=False,width=500, height=500, resizable=False),
Item('string', show_label=False, springy=True, width=300, height=20, resizable=False),
title="")
def __init__(self, numpyImage):
super(ImagePlot, self).__init__()
npImage = np.flipud(np.transpose(numpyImage))
plotdata = ArrayPlotData(imagedata = npImage)
plot = Plot(plotdata)
plot.img_plot("imagedata", colormap=gray)
self.plot = plot
# Bild Nullpunkt ist oben links!
self.plot.default_origin = 'top left'
pixelPicker = PixelPickerTool(plot)
self.picker = pixelPicker
plot.tools.append(pixelPicker)
我想使用此ImagePlot类中某处PixelPickerTool测量的坐标。例如。通过将它们交给另一个对象,如MyImageSeries.setCoordinate(xy_coordinateFromPickerTool) 那么当事件被触发时,如何将PickerTool中的像素坐标移交给此类中的某个成员变量? 也许是这样的:self.PixelCoordinates = picker.getPixelCoordinates()可以工作吗? 但是,当在选择器中执行on_normal_left_down函数时,我怎么知道?
最后,我想将坐标移交给另一个类,该类包含更多图像以处理图像并在ImagePlot中确定的像素位置处进行拟合。 我试图在我的imagePlot类中使用类似“_picker_changed”的东西来检测是否在PickerTool中触发了一个事件,但这并没有检测到事件触发。所以也许我做错了什么......
有人能告诉我如何从这个选择器工具中获取事件和相关变量吗?
干杯,
安德烈
答案 0 :(得分:1)
“但是,如果在选择器中执行了on_normal_left_down函数,我怎么知道?”
有几种方法可以做到这一点,但有一种方法就是简单地按照你的要求进行操作并激活你明确定义的事件。
例如:
from traits.api import Event
class PickerTool(BaseTool):
last_coords = SomeTrait
i_fired = Event
def normal_left_down(self,event):
# do whatever necessary processing
self.last_coords = do_some_stuff(event.some_attribute)
# now notify your parent
self.i_fired = True
然后从您想要显示的地方收听plot.picker.i_fired,并在plot.picker.last_coords中查找已保存的状态。
如果您想对这些坐标做什么非常简单,那么您可以做的另一件事可能更简单,只是将选择器需要与之交互的数据结构传递给初始化(或者通过一系列调用自我来获取它们) .parent)并直接在选择器内完成你的工作。