skimage 0.17.2

AttributesParametersBackRef

Attributes

extents : tuple

Rectangle extents: (xmin, xmax, ymin, ymax).

After making the desired selection, press "Enter" to accept the selection and call the on_enter callback function.

Parameters

manager : Viewer or PlotPlugin.

Skimage viewer or plot plugin object.

on_move : function

Function called whenever a control handle is moved. This function must accept the rectangle extents as the only argument.

on_release : function

Function called whenever the control handle is released.

on_enter : function

Function called whenever the "enter" key is pressed.

maxdist : float

Maximum pixel distance allowed when selecting control handle.

rect_props : dict

Properties for matplotlib.patches.Rectangle . This class redefines defaults in matplotlib.widgets.RectangleSelector .

Widget for selecting a rectangular region in a plot.

Examples

This example is valid syntax, but we were not able to check execution
>>> from skimage import data
... from skimage.viewer import ImageViewer
... from skimage.viewer.canvastools import RectangleTool
... from skimage.draw import line
... from skimage.draw import set_color
This example is valid syntax, but we were not able to check execution
>>> viewer = ImageViewer(data.coffee())  # doctest: +SKIP
This example is valid syntax, but we were not able to check execution
>>> def print_the_rect(extents):
...  global viewer
...  im = viewer.image
...  coord = np.int64(extents)
...  [rr1, cc1] = line(coord[2],coord[0],coord[2],coord[1])
...  [rr2, cc2] = line(coord[2],coord[1],coord[3],coord[1])
...  [rr3, cc3] = line(coord[3],coord[1],coord[3],coord[0])
...  [rr4, cc4] = line(coord[3],coord[0],coord[2],coord[0])
...  set_color(im, (rr1, cc1), [255, 255, 0])
...  set_color(im, (rr2, cc2), [0, 255, 255])
...  set_color(im, (rr3, cc3), [255, 0, 255])
...  set_color(im, (rr4, cc4), [0, 0, 0])
...  viewer.image=im
This example is valid syntax, but we were not able to check execution
>>> rect_tool = RectangleTool(viewer, on_enter=print_the_rect) # doctest: +SKIP
... viewer.show() # doctest: +SKIP
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

skimage.viewer.canvastools.recttool.RectangleTool

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /skimage/viewer/canvastools/recttool.py#9
type: <class 'type'>
Commit: