Roi¶
-
class
glue.core.roi.Roi[source]¶ Bases:
objectA geometrical 2D region of interest.
Glue uses Roi’s to represent user-drawn regions on plots. There are many specific subtypes of Roi, but they all have a
containsmethod to test whether a collection of 2D points lies inside the region.Methods Summary
center()Return the (x,y) coordinates of the ROI center contains(x, y)Return true/false for each x/y pair. copy()Return a clone of the ROI defined()Returns whether or not the subset is properly defined move_to(x, y)Translate the ROI to a center of (x, y) to_polygon()Returns a tuple of x and y points, approximating the ROI as a polygon. Methods Documentation