我正在尝试在图像绘图上绘制2D选择框并离开所选区域。我找不到合适的工具来做到这一点。
我认为RangeSelection2D适用于此,但似乎实际上只选择了2个轴中的1个。
我可以修改BetterSelectingZoom,其中box模式类似于我想要的。有没有人知道最好的方法或chaco工具呢?
import enthought.traits.api as traits
import enthought.chaco.api as chaco
import enthought.chaco.tools.api as ctools
import enthought.traits.ui.api as ui
from enthought.enable.component_editor import ComponentEditor
class ImageViewer(traits.HasTraits):
plot = traits.Instance(chaco.Plot)
view = ui.View(
ui.Item('plot', editor=ComponentEditor(), show_label=False),
width=600, height=600, resizable=True)
def __init__(self, image_array, *args, **kwargs):
super(ImageViewer, self).__init__(*args, **kwargs)
pd = chaco.ArrayPlotData(imagedata=image_array)
self.plot = chaco.Plot(pd, default_origin='top left')
img_plot = self.plot.img_plot("imagedata")[0]
range_select = ctools.RangeSelection2D(component=img_plot)
range_select.left_button_selects = True
img_plot.tools.append(range_select)
range_overlay = ctools.RangeSelectionOverlay(component=img_plot)
img_plot.overlays.append(range_overlay)
if __name__ == "__main__":
import numpy as np
image = np.random.random_integers(0, 255, size=(20, 20))
imageui = ImageViewer(image)
imageui.configure_traits()
答案 0 :(得分:0)
不幸的是,目前Chaco没有任何东西可以满足您的需求。也就是说,有一个打开拉取请求,添加了该功能: https://github.com/enthought/chaco/pull/162
正如PR建议的那样,总的来说,有一些关于Chaco工具的设计讨论需要在添加更多工具之前进行。
我希望有所帮助,
托尼