Chaco中的2D范围选择框(焓值)



我正试图在图像图上绘制一个2D选择框,并取出所选区域。我找不到合适的工具来做这件事。

我认为RangeSelection2D将适用于此,但它似乎实际上只选择了2个轴中的1个。

我可以修改BetterSelectingZoom,其中框模式与我想要的相似。有人知道最好的方法或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()

不幸的是,Chaco中目前没有任何东西可以满足您的需求。也就是说,有一个开放的pull请求添加了该功能:https://github.com/enthought/chaco/pull/162.

正如PR所表明的那样,一般来说,在添加更多工具之前,需要对Chaco工具进行一些设计讨论。

我希望这会有所帮助,

-Tony

相关内容

  • 没有找到相关文章

最新更新